All Versions
25
Latest Version
Avg Release Cycle
26 days
Latest Release
3079 days ago

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.
  • 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.