Skip to content

Commit

Permalink
chore: update compatibilityDate
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jan 30, 2025
1 parent 9ce9733 commit 547410d
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/api-routes/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
});
2 changes: 1 addition & 1 deletion examples/auto-imports/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
});
2 changes: 1 addition & 1 deletion examples/cached-handler/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
});
2 changes: 1 addition & 1 deletion examples/custom-error-handler/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import errorHandler from "./error";

export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
errorHandler: "~/error",
devErrorHandler: errorHandler,
});
2 changes: 1 addition & 1 deletion examples/database/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
experimental: {
database: true,
tasks: true,
Expand Down
2 changes: 1 addition & 1 deletion examples/graceful-shutdown/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineNitroConfig } from "nitropack/config";

export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
});
2 changes: 1 addition & 1 deletion examples/hello-world/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://nitro.build/config
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
srcDir: "server",
});
2 changes: 1 addition & 1 deletion examples/middleware/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
});
2 changes: 1 addition & 1 deletion examples/nano-jsx/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
});
2 changes: 1 addition & 1 deletion examples/plugins/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
plugins: ["~/plugins/test"],
});
2 changes: 1 addition & 1 deletion examples/renderer/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
renderer: "~/renderer",
});
2 changes: 1 addition & 1 deletion examples/websocket/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default defineNitroConfig({
compatibilityDate: "2024-09-29",
compatibilityDate: "2025-01-30",
experimental: {
websocket: true,
},
Expand Down
2 changes: 1 addition & 1 deletion playground/nitro.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineNitroConfig } from "nitropack/config";

export default defineNitroConfig({
compatibilityDate: "2024-09-19",
compatibilityDate: "2025-01-30",
});
2 changes: 1 addition & 1 deletion test/fixture/nitro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 547410d

Please sign in to comment.