Releases: sensedeep/onetable-migrate
Releases · sensedeep/onetable-migrate
v1.2.2
v1.2.1
v1.2.0
Major Feature Release
This release supports named migrations that are non-versioned migrations for maintenance and other routine tasks.
It also adds support to dynamically index new migration files. Using the dir
params property is now the preferred way to reference a directory of migrations (versioned and named). These will be automatically indexed.
Features
- Add named migration support
- Add the date to the DynamoDB item sort key -- permits full history in migration table
- Generalized the apply() function for named functions
- Added dynamic indexing of migration files
Fixes
- Fixed down migration sequencing
See
v1.1.6
v1.1.5
v1.1.3
v1.1.2
v1.1.1
v1.1.0
Major Feature Release
Features
- Persist current Schema to the table.
- Add getOutstandingMigrations() API
- Enforce migrations to have a schema and version properties.
- Read schema to get Table params to support multi-table migrations.
- Remove creating Migration model as now created by OneTable directly.
Schema Persistence
- The Schema will be saved as a single item using the
_Schema
model using the_schema:
primary hash key value.
Fixes
- none