diff --git a/.changeset/eleven-knives-learn.md b/.changeset/eleven-knives-learn.md deleted file mode 100644 index a7110c7..0000000 --- a/.changeset/eleven-knives-learn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': patch ---- - -Handle migration history entries without file extensions for migration files with periods in their names that are not part of the file extension. Previously Emigrate would attempt to re-run these migrations, but now it will correctly ignore them. E.g. the migration history contains an entry for "migration.file.name" and the migration file is named "migration.file.name.js" it will not be re-run. diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 600112d..ea9622a 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @emigrate/cli +## 0.16.2 + +### Patch Changes + +- b56b6da: Handle migration history entries without file extensions for migration files with periods in their names that are not part of the file extension. Previously Emigrate would attempt to re-run these migrations, but now it will correctly ignore them. E.g. the migration history contains an entry for "migration.file.name" and the migration file is named "migration.file.name.js" it will not be re-run. + ## 0.16.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 4591ed7..dbc092e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@emigrate/cli", - "version": "0.16.1", + "version": "0.16.2", "publishConfig": { "access": "public" },