diff --git a/.changeset/strong-timers-push.md b/.changeset/strong-timers-push.md deleted file mode 100644 index 032afa2..0000000 --- a/.changeset/strong-timers-push.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@mondomob/gae-js-datastore": minor ---- - -Add reindexInBatches function that performs reindex operation in an efficient manner (using batch sizes of 200 by default) for large datasets. Also FIXES an issue where there was an unbounded Promise.all() in the existing reindex() function that would have caused issues. This now limits to a maximum of 20 promises at any one time. diff --git a/packages/gae-js-datastore-backups/package.json b/packages/gae-js-datastore-backups/package.json index ee032ea..18fb030 100644 --- a/packages/gae-js-datastore-backups/package.json +++ b/packages/gae-js-datastore-backups/package.json @@ -40,7 +40,7 @@ "@google-cloud/tasks": "3.1.2", "@mondomob/gae-js-bigquery": "2.0.0", "@mondomob/gae-js-core": "7.0.3", - "@mondomob/gae-js-datastore": "10.0.1", + "@mondomob/gae-js-datastore": "10.1.0", "@mondomob/gae-js-storage": "9.0.1", "@mondomob/gae-js-tasks": "11.1.0", "@types/luxon": "3.3.0", diff --git a/packages/gae-js-datastore/CHANGELOG.md b/packages/gae-js-datastore/CHANGELOG.md index adffb68..f6a757f 100644 --- a/packages/gae-js-datastore/CHANGELOG.md +++ b/packages/gae-js-datastore/CHANGELOG.md @@ -1,5 +1,11 @@ # @mondomob/gae-js-datastore +## 10.1.0 + +### Minor Changes + +- 400a0f7: Add reindexInBatches function that performs reindex operation in an efficient manner (using batch sizes of 200 by default) for large datasets. Also FIXES an issue where there was an unbounded Promise.all() in the existing reindex() function that would have caused issues. This now limits to a maximum of 20 promises at any one time. + ## 10.0.1 ### Patch Changes diff --git a/packages/gae-js-datastore/package.json b/packages/gae-js-datastore/package.json index a7c866d..a9ac186 100644 --- a/packages/gae-js-datastore/package.json +++ b/packages/gae-js-datastore/package.json @@ -1,6 +1,6 @@ { "name": "@mondomob/gae-js-datastore", - "version": "10.0.1", + "version": "10.1.0", "description": "", "main": "dist/index.js", "typings": "dist/index.d.ts",