diff --git a/examples/api-routes/nitro.config.ts b/examples/api-routes/nitro.config.ts index 693fae5376..9d1da18c62 100644 --- a/examples/api-routes/nitro.config.ts +++ b/examples/api-routes/nitro.config.ts @@ -1,3 +1,3 @@ export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", }); diff --git a/examples/auto-imports/nitro.config.ts b/examples/auto-imports/nitro.config.ts index 693fae5376..9d1da18c62 100644 --- a/examples/auto-imports/nitro.config.ts +++ b/examples/auto-imports/nitro.config.ts @@ -1,3 +1,3 @@ export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", }); diff --git a/examples/cached-handler/nitro.config.ts b/examples/cached-handler/nitro.config.ts index 693fae5376..9d1da18c62 100644 --- a/examples/cached-handler/nitro.config.ts +++ b/examples/cached-handler/nitro.config.ts @@ -1,3 +1,3 @@ export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", }); diff --git a/examples/custom-error-handler/nitro.config.ts b/examples/custom-error-handler/nitro.config.ts index a42f717b5c..d056b19a71 100644 --- a/examples/custom-error-handler/nitro.config.ts +++ b/examples/custom-error-handler/nitro.config.ts @@ -1,7 +1,7 @@ import errorHandler from "./error"; export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", errorHandler: "~/error", devErrorHandler: errorHandler, }); diff --git a/examples/database/nitro.config.ts b/examples/database/nitro.config.ts index a857aa19e7..9cbd3b330c 100644 --- a/examples/database/nitro.config.ts +++ b/examples/database/nitro.config.ts @@ -1,5 +1,5 @@ export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", experimental: { database: true, tasks: true, diff --git a/examples/graceful-shutdown/nitro.config.ts b/examples/graceful-shutdown/nitro.config.ts index 35a05d1f45..a0f2ae67e8 100644 --- a/examples/graceful-shutdown/nitro.config.ts +++ b/examples/graceful-shutdown/nitro.config.ts @@ -1,5 +1,5 @@ import { defineNitroConfig } from "nitropack/config"; export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", }); diff --git a/examples/hello-world/nitro.config.ts b/examples/hello-world/nitro.config.ts index bf9754122f..1c67993e7a 100644 --- a/examples/hello-world/nitro.config.ts +++ b/examples/hello-world/nitro.config.ts @@ -1,5 +1,5 @@ // https://nitro.build/config export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", srcDir: "server", }); diff --git a/examples/middleware/nitro.config.ts b/examples/middleware/nitro.config.ts index 693fae5376..9d1da18c62 100644 --- a/examples/middleware/nitro.config.ts +++ b/examples/middleware/nitro.config.ts @@ -1,3 +1,3 @@ export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", }); diff --git a/examples/nano-jsx/nitro.config.ts b/examples/nano-jsx/nitro.config.ts index 693fae5376..9d1da18c62 100644 --- a/examples/nano-jsx/nitro.config.ts +++ b/examples/nano-jsx/nitro.config.ts @@ -1,3 +1,3 @@ export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", }); diff --git a/examples/plugins/nitro.config.ts b/examples/plugins/nitro.config.ts index 7ac7cd5816..5b5fcda971 100644 --- a/examples/plugins/nitro.config.ts +++ b/examples/plugins/nitro.config.ts @@ -1,4 +1,4 @@ export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", plugins: ["~/plugins/test"], }); diff --git a/examples/renderer/nitro.config.ts b/examples/renderer/nitro.config.ts index bc4234ee26..eb0b20a6f7 100644 --- a/examples/renderer/nitro.config.ts +++ b/examples/renderer/nitro.config.ts @@ -1,4 +1,4 @@ export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", renderer: "~/renderer", }); diff --git a/examples/websocket/nitro.config.ts b/examples/websocket/nitro.config.ts index 577c37eb5f..eb95df5fb4 100644 --- a/examples/websocket/nitro.config.ts +++ b/examples/websocket/nitro.config.ts @@ -1,5 +1,5 @@ export default defineNitroConfig({ - compatibilityDate: "2024-09-29", + compatibilityDate: "2025-01-30", experimental: { websocket: true, }, diff --git a/playground/nitro.config.ts b/playground/nitro.config.ts index 2d5eb0abf7..a0f2ae67e8 100644 --- a/playground/nitro.config.ts +++ b/playground/nitro.config.ts @@ -1,5 +1,5 @@ import { defineNitroConfig } from "nitropack/config"; export default defineNitroConfig({ - compatibilityDate: "2024-09-19", + compatibilityDate: "2025-01-30", }); diff --git a/test/fixture/nitro.config.ts b/test/fixture/nitro.config.ts index 12f05bc52d..94c64f63fb 100644 --- a/test/fixture/nitro.config.ts +++ b/test/fixture/nitro.config.ts @@ -4,7 +4,7 @@ import { dirname, resolve } from "node:path"; export default defineNitroConfig({ compressPublicAssets: true, - compatibilityDate: "2024-09-19", + compatibilityDate: "2025-01-30", framework: { name: "nitro", version: "2.x",