@jungvonmatt/contentful-migrations 5.2.2 → 5.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/backend.js +1 -1
  2. package/package.json +1 -1
package/lib/backend.js CHANGED
@@ -294,7 +294,7 @@ const migrateToTagStorage = async (config) => {
294
294
  const getMigrationVersions = async (config) => {
295
295
  const { migrationContentTypeId } = config;
296
296
  const client = await getEnvironment(config);
297
- const { items } = await client.getEntries({ content_type: migrationContentTypeId });
297
+ const { items } = await client.getEntries({ content_type: migrationContentTypeId, limit: 1000 });
298
298
 
299
299
  return (items || []).map((item) => parseInt(item.sys.id, 10));
300
300
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jungvonmatt/contentful-migrations",
3
- "version": "5.2.2",
3
+ "version": "5.2.3",
4
4
  "description": "Helper to handle migrations in contentful",
5
5
  "main": "index.js",
6
6
  "files": [