All Versions
25
Latest Version
Avg Release Cycle
26 days
Latest Release
3079 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v3.0.1 Changes
- Increase MySQL 5.7 compatibility.
- ๐ Fixed Metadata Mixin Schema timestamp column definition.
- ๐ Fixed Reivision Mixin Schema timestamp column definition.
- 0๏ธโฃ Be sure to put timestamp column with default current_timestamp to the last.
-
v3.0 Changes
- โ Added
--backup
option to migration command. - โ Added mysql backup support tool.
- โ Added predefined uuid primary key column.
- โ Added
-
v2.2.3 Changes
- ๐ Fixed loadOrCreate / updateOrCreate method checking.
-
v2.2.1 Changes
- ๐ Fixed #115: Added tests for auto-generated accessor method.
- ๐ Fixed #116: required method should set notNull = true
- Fixed #116: use get_object_vars to export all column properties
-
v2.2.0 Changes
- ๐ Fixed boolean insertion and selection
- ๐ Changed data source config to the structure below (backward compatible change):
data_source: default: master nodes: master: driver: ... host: ... port: ... user: ... pass: ... slave1: driver: ... host: ... port: ... salve2: driver: ... host: ... port: ...
- โ Added DSN parser.
- โ Added
db create
command. - โ Added
db drop
command. - โ Added
db recreate
command. - โ Removed dbutil from dependency
- โ Removed create-db command
-
v2.1.6 Changes
๐ Merged PR:
- ๐ Commit 9b19a46: Merge pull request #100 from azole/master
Fixes #99 - pass host to dbutil
-
v2.1.5 Changes
- โฌ๏ธ Upgrade cliframework to ~2.6
-
v2.1.4 Changes
- ๐ new migration tools
- ๐ lazy migrate -U option is removed. use
lazy migrate automatic
instead.
๐ Bug Fixes:
- โฌ๏ธ Upgraded cliframework to 2.5.3
- ๐ Support actionkit options.
๐ Merged PRs:
- ๐ Commit 6cfac73: Merge pull request #96 from
Ronmi/add_impl
Let generated models and collections can implement some interfaces
- ๐ Commit 7de10b3: Merge pull request #95 from
Ronmi/master
Change the string matching process to fit sqlite way.
-
v1.14 Changes
- โ Added Collection Filter (define filter types, valid values in backend and apply filters from HTTP Request)
-
v1.10 Changes
- โ Added index support, you can now add index attribute on your column.
- โ Added foreign key (references) generator for the
build-sql
command. - โฌ๏ธ Upgraded SQLBuilder to use the index builder.
- โ Added option parameters to mixin schema, now you can call mixin with options to customize your mixin schema.
- ๐ Support mixin schema methods to BaseModel object, you can now define your mixin methods for the mixed models.