From 84f205845a8c94d5c54f6643db939a66b98081df Mon Sep 17 00:00:00 2001 From: Thomas Hii Date: Wed, 7 Aug 2024 17:30:19 +0800 Subject: [PATCH] Publish angel3_migration --- packages/orm/angel_migration/CHANGELOG.md | 4 ++++ packages/orm/angel_migration/pubspec.yaml | 2 +- packages/orm/angel_migration_runner/CHANGELOG.md | 4 ++++ packages/orm/angel_migration_runner/pubspec.yaml | 6 +++--- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/packages/orm/angel_migration/CHANGELOG.md b/packages/orm/angel_migration/CHANGELOG.md index 44977d14..0cddb6f7 100755 --- a/packages/orm/angel_migration/CHANGELOG.md +++ b/packages/orm/angel_migration/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 8.3.0 + +* Added `addIndex`, `dropIndex` and `dropPrimaryIndex` + ## 8.2.1 * Updated README diff --git a/packages/orm/angel_migration/pubspec.yaml b/packages/orm/angel_migration/pubspec.yaml index 73c9ee85..e60f8692 100755 --- a/packages/orm/angel_migration/pubspec.yaml +++ b/packages/orm/angel_migration/pubspec.yaml @@ -1,5 +1,5 @@ name: angel3_migration -version: 8.2.1 +version: 8.3.0 description: The abstract classes for implementing database migration in Angel3 framework. Designed to work with Angel3 ORM. homepage: https://angel3-framework.web.app/ repository: https://github.com/dart-backend/angel/tree/master/packages/orm/angel_migration diff --git a/packages/orm/angel_migration_runner/CHANGELOG.md b/packages/orm/angel_migration_runner/CHANGELOG.md index 96883a10..88bf5001 100755 --- a/packages/orm/angel_migration_runner/CHANGELOG.md +++ b/packages/orm/angel_migration_runner/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 8.3.0 + +* Added `addIndex`, `dropIndex` and `dropPrimaryIndex` + ## 8.2.2 Fixed `MariaDbMigrationRunner` migration issues diff --git a/packages/orm/angel_migration_runner/pubspec.yaml b/packages/orm/angel_migration_runner/pubspec.yaml index a2112a23..c14b048e 100755 --- a/packages/orm/angel_migration_runner/pubspec.yaml +++ b/packages/orm/angel_migration_runner/pubspec.yaml @@ -1,13 +1,13 @@ name: angel3_migration_runner -version: 8.2.2 +version: 8.3.0 description: The implementation of database migration for Angel3 framework. Designed to work with Angel3 ORM. homepage: https://angel3-framework.web.app/ repository: https://github.com/dart-backend/angel/tree/master/packages/orm/angel_migration_runner environment: sdk: '>=3.3.0 <4.0.0' dependencies: - angel3_migration: ^8.0.0 - angel3_orm: ^8.0.0 + angel3_migration: ^8.3.0 + angel3_orm: ^8.2.0 args: ^2.4.0 charcode: ^1.3.0 postgres: ^3.0.0