All Versions
25
Latest Version
Avg Release Cycle
26 days
Latest Release
2418 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.