Skip to content

Commit a53ba1c

Browse files
committed
Merge branch 'release/0.7'
2 parents 726b74c + 8c0684e commit a53ba1c

File tree

95 files changed

+3805
-480
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+3805
-480
lines changed

.gitignore

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@ nosetests.xml
1818
.DS_Store
1919
.idea/*
2020

21-
test.py
22-
test_models.py
23-
test_threading.py
24-
test_schema.py
21+
/test.py
22+
/test_*.py
2523
app.py
2624
config.py
27-
test_perf.py
28-
test_proxy.py
2925
/migrations
26+
/seeders
27+
development.db
3028

3129
Makefile

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: python
22
python:
33
- "2.7"
44
- "3.4"
5+
- "3.5"
56
install:
67
- pip install -r requirements.txt
78
- pip install -r tests-requirements.txt

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
### 0.7
2+
3+
(November 10th, 2015)
4+
5+
##### Improvements
6+
7+
- [#15](https://github.com/sdispater/orator/issues/9) Execute migrations inside a transaction.
8+
- [#13](https://github.com/sdispater/orator/issues/9) Support database seeding and model factories.
9+
- [#9](https://github.com/sdispater/orator/issues/9) Support for SQLite foreign keys.
10+
- Relationships decorators.
11+
- Morph relationships now using a name (default being the table name) rather than a class name.
12+
13+
##### Fixes
14+
15+
- [#14](https://github.com/sdispater/orator/issues/14) Changing columns with SchemaBuilder does not work with some types.
16+
- [#16](https://github.com/sdispater/orator/issues/16) The last page of LengthAwarePaginator is not calculated properly in Python 2.7.
17+
- Avoid an error when psycopg2 is not installed.
18+
- Fix dynamic properties for eagerloaded relationships.
19+
20+
121
### 0.6.4
222

323
(July 7th, 2015)

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
include README.rst LICENSE
2+
recursive-exclude tests *

docs/_static/orator-logo-white-80.png

5.49 KB
Loading

0 commit comments

Comments
 (0)