diff --git a/templates/with-postgres/package.json b/templates/with-postgres/package.json index 7f3e511548f..0ae99bfa98d 100644 --- a/templates/with-postgres/package.json +++ b/templates/with-postgres/package.json @@ -19,15 +19,15 @@ "test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts" }, "dependencies": { - "@payloadcms/db-postgres": "3.49.0", - "@payloadcms/next": "3.49.0", - "@payloadcms/payload-cloud": "3.49.0", - "@payloadcms/richtext-lexical": "3.49.0", - "@payloadcms/ui": "3.49.0", + "@payloadcms/db-postgres": "3.49.1", + "@payloadcms/next": "3.49.1", + "@payloadcms/payload-cloud": "3.49.1", + "@payloadcms/richtext-lexical": "3.49.1", + "@payloadcms/ui": "3.49.1", "cross-env": "^7.0.3", "graphql": "^16.8.1", "next": "15.4.4", - "payload": "3.49.0", + "payload": "3.49.1", "react": "19.1.0", "react-dom": "19.1.0", "sharp": "0.34.2" diff --git a/templates/with-postgres/src/migrations/20250726_113920_initial.json b/templates/with-postgres/src/migrations/20250729_205119_initial.json similarity index 99% rename from templates/with-postgres/src/migrations/20250726_113920_initial.json rename to templates/with-postgres/src/migrations/20250729_205119_initial.json index 97216aac113..79760b586ae 100644 --- a/templates/with-postgres/src/migrations/20250726_113920_initial.json +++ b/templates/with-postgres/src/migrations/20250729_205119_initial.json @@ -1,5 +1,5 @@ { - "id": "a01f43fe-f9ef-41b2-9ef2-ee199fdbf09e", + "id": "092b5786-af29-4f34-9b10-8e8bbe82d9e8", "prevId": "00000000-0000-0000-0000-000000000000", "version": "7", "dialect": "postgresql", diff --git a/templates/with-postgres/src/migrations/20250726_113920_initial.ts b/templates/with-postgres/src/migrations/20250729_205119_initial.ts similarity index 100% rename from templates/with-postgres/src/migrations/20250726_113920_initial.ts rename to templates/with-postgres/src/migrations/20250729_205119_initial.ts diff --git a/templates/with-postgres/src/migrations/index.ts b/templates/with-postgres/src/migrations/index.ts index 88725f28dd1..60b9d4c732e 100644 --- a/templates/with-postgres/src/migrations/index.ts +++ b/templates/with-postgres/src/migrations/index.ts @@ -1,9 +1,9 @@ -import * as migration_20250726_113920_initial from './20250726_113920_initial' +import * as migration_20250729_205119_initial from './20250729_205119_initial' export const migrations = [ { - up: migration_20250726_113920_initial.up, - down: migration_20250726_113920_initial.down, - name: '20250726_113920_initial', + up: migration_20250729_205119_initial.up, + down: migration_20250729_205119_initial.down, + name: '20250729_205119_initial', }, ] diff --git a/templates/with-vercel-mongodb/package.json b/templates/with-vercel-mongodb/package.json index 6b7788acd6d..ea19cd0f7ec 100644 --- a/templates/with-vercel-mongodb/package.json +++ b/templates/with-vercel-mongodb/package.json @@ -18,16 +18,16 @@ "test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts" }, "dependencies": { - "@payloadcms/db-mongodb": "3.49.0", - "@payloadcms/next": "3.49.0", - "@payloadcms/payload-cloud": "3.49.0", - "@payloadcms/richtext-lexical": "3.49.0", - "@payloadcms/storage-vercel-blob": "3.49.0", - "@payloadcms/ui": "3.49.0", + "@payloadcms/db-mongodb": "3.49.1", + "@payloadcms/next": "3.49.1", + "@payloadcms/payload-cloud": "3.49.1", + "@payloadcms/richtext-lexical": "3.49.1", + "@payloadcms/storage-vercel-blob": "3.49.1", + "@payloadcms/ui": "3.49.1", "cross-env": "^7.0.3", "graphql": "^16.8.1", "next": "15.4.4", - "payload": "3.49.0", + "payload": "3.49.1", "react": "19.1.0", "react-dom": "19.1.0" }, diff --git a/templates/with-vercel-postgres/package.json b/templates/with-vercel-postgres/package.json index 83071373bd7..b46aed10b94 100644 --- a/templates/with-vercel-postgres/package.json +++ b/templates/with-vercel-postgres/package.json @@ -19,16 +19,16 @@ "test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts" }, "dependencies": { - "@payloadcms/db-vercel-postgres": "3.49.0", - "@payloadcms/next": "3.49.0", - "@payloadcms/payload-cloud": "3.49.0", - "@payloadcms/richtext-lexical": "3.49.0", - "@payloadcms/storage-vercel-blob": "3.49.0", - "@payloadcms/ui": "3.49.0", + "@payloadcms/db-vercel-postgres": "3.49.1", + "@payloadcms/next": "3.49.1", + "@payloadcms/payload-cloud": "3.49.1", + "@payloadcms/richtext-lexical": "3.49.1", + "@payloadcms/storage-vercel-blob": "3.49.1", + "@payloadcms/ui": "3.49.1", "cross-env": "^7.0.3", "graphql": "^16.8.1", "next": "15.4.4", - "payload": "3.49.0", + "payload": "3.49.1", "react": "19.1.0", "react-dom": "19.1.0" }, diff --git a/templates/with-vercel-postgres/src/migrations/20250726_113907_initial.json b/templates/with-vercel-postgres/src/migrations/20250729_205038_initial.json similarity index 99% rename from templates/with-vercel-postgres/src/migrations/20250726_113907_initial.json rename to templates/with-vercel-postgres/src/migrations/20250729_205038_initial.json index ce0a6c475f4..e5d8c0a7c56 100644 --- a/templates/with-vercel-postgres/src/migrations/20250726_113907_initial.json +++ b/templates/with-vercel-postgres/src/migrations/20250729_205038_initial.json @@ -1,5 +1,5 @@ { - "id": "1da33d28-30b0-4553-8961-ddbbf2a3caa0", + "id": "416cb555-2b57-463a-affb-531aaabe1b67", "prevId": "00000000-0000-0000-0000-000000000000", "version": "7", "dialect": "postgresql", diff --git a/templates/with-vercel-postgres/src/migrations/20250726_113907_initial.ts b/templates/with-vercel-postgres/src/migrations/20250729_205038_initial.ts similarity index 100% rename from templates/with-vercel-postgres/src/migrations/20250726_113907_initial.ts rename to templates/with-vercel-postgres/src/migrations/20250729_205038_initial.ts diff --git a/templates/with-vercel-postgres/src/migrations/index.ts b/templates/with-vercel-postgres/src/migrations/index.ts index 0560cb28fed..c2ddebb6897 100644 --- a/templates/with-vercel-postgres/src/migrations/index.ts +++ b/templates/with-vercel-postgres/src/migrations/index.ts @@ -1,9 +1,9 @@ -import * as migration_20250726_113907_initial from './20250726_113907_initial' +import * as migration_20250729_205038_initial from './20250729_205038_initial' export const migrations = [ { - up: migration_20250726_113907_initial.up, - down: migration_20250726_113907_initial.down, - name: '20250726_113907_initial', + up: migration_20250729_205038_initial.up, + down: migration_20250729_205038_initial.down, + name: '20250729_205038_initial', }, ] diff --git a/templates/with-vercel-website/package.json b/templates/with-vercel-website/package.json index d114ed402df..9a79fe2a546 100644 --- a/templates/with-vercel-website/package.json +++ b/templates/with-vercel-website/package.json @@ -23,19 +23,19 @@ "test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts" }, "dependencies": { - "@payloadcms/admin-bar": "3.49.0", - "@payloadcms/db-vercel-postgres": "3.49.0", - "@payloadcms/live-preview-react": "3.49.0", - "@payloadcms/next": "3.49.0", - "@payloadcms/payload-cloud": "3.49.0", - "@payloadcms/plugin-form-builder": "3.49.0", - "@payloadcms/plugin-nested-docs": "3.49.0", - "@payloadcms/plugin-redirects": "3.49.0", - "@payloadcms/plugin-search": "3.49.0", - "@payloadcms/plugin-seo": "3.49.0", - "@payloadcms/richtext-lexical": "3.49.0", - "@payloadcms/storage-vercel-blob": "3.49.0", - "@payloadcms/ui": "3.49.0", + "@payloadcms/admin-bar": "3.49.1", + "@payloadcms/db-vercel-postgres": "3.49.1", + "@payloadcms/live-preview-react": "3.49.1", + "@payloadcms/next": "3.49.1", + "@payloadcms/payload-cloud": "3.49.1", + "@payloadcms/plugin-form-builder": "3.49.1", + "@payloadcms/plugin-nested-docs": "3.49.1", + "@payloadcms/plugin-redirects": "3.49.1", + "@payloadcms/plugin-search": "3.49.1", + "@payloadcms/plugin-seo": "3.49.1", + "@payloadcms/richtext-lexical": "3.49.1", + "@payloadcms/storage-vercel-blob": "3.49.1", + "@payloadcms/ui": "3.49.1", "@radix-ui/react-checkbox": "^1.0.4", "@radix-ui/react-label": "^2.0.2", "@radix-ui/react-select": "^2.0.0", @@ -49,7 +49,7 @@ "lucide-react": "^0.378.0", "next": "15.4.4", "next-sitemap": "^4.2.3", - "payload": "3.49.0", + "payload": "3.49.1", "prism-react-renderer": "^2.3.1", "react": "19.1.0", "react-dom": "19.1.0", diff --git a/templates/with-vercel-website/src/migrations/20250726_113914_initial.json b/templates/with-vercel-website/src/migrations/20250729_205058_initial.json similarity index 99% rename from templates/with-vercel-website/src/migrations/20250726_113914_initial.json rename to templates/with-vercel-website/src/migrations/20250729_205058_initial.json index 7904f3baede..e6771e3fefd 100644 --- a/templates/with-vercel-website/src/migrations/20250726_113914_initial.json +++ b/templates/with-vercel-website/src/migrations/20250729_205058_initial.json @@ -1,5 +1,5 @@ { - "id": "0cdb510f-c7c6-45da-8202-ffed100b9cbb", + "id": "d187084e-1fb8-4ec9-83ca-81ec376a5d7d", "prevId": "00000000-0000-0000-0000-000000000000", "version": "7", "dialect": "postgresql", diff --git a/templates/with-vercel-website/src/migrations/20250726_113914_initial.ts b/templates/with-vercel-website/src/migrations/20250729_205058_initial.ts similarity index 100% rename from templates/with-vercel-website/src/migrations/20250726_113914_initial.ts rename to templates/with-vercel-website/src/migrations/20250729_205058_initial.ts diff --git a/templates/with-vercel-website/src/migrations/index.ts b/templates/with-vercel-website/src/migrations/index.ts index 114568d745f..7f605b73b6a 100644 --- a/templates/with-vercel-website/src/migrations/index.ts +++ b/templates/with-vercel-website/src/migrations/index.ts @@ -1,9 +1,9 @@ -import * as migration_20250726_113914_initial from './20250726_113914_initial' +import * as migration_20250729_205058_initial from './20250729_205058_initial' export const migrations = [ { - up: migration_20250726_113914_initial.up, - down: migration_20250726_113914_initial.down, - name: '20250726_113914_initial', + up: migration_20250729_205058_initial.up, + down: migration_20250729_205058_initial.down, + name: '20250729_205058_initial', }, ]