Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-deno/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ runs:
steps:
- uses: denoland/setup-deno@v2
with:
deno-version: 2.6.10 # Keep in sync with mise.toml
deno-version: 2.7.6 # Keep in sync with mise.toml
3 changes: 2 additions & 1 deletion examples/fresh/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"dom.asynciterable",
"dom.iterable",
"deno.ns",
"deno.unstable"
"deno.unstable",
"esnext.temporal"
],
"jsx": "precompile",
"jsxImportSource": "preact",
Expand Down
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tools]
bun = "1.2.22"
deno = "2.6.10"
deno = "2.7.6"
node = "22"
pnpm = "10.28.0"

Expand Down
7 changes: 1 addition & 6 deletions packages/postgres/src/kv.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@ import process from "node:process";
import { test } from "node:test";
import postgres from "postgres";

let Temporal: typeof temporal.Temporal;
if ("Temporal" in globalThis) {
Temporal = globalThis.Temporal;
} else {
Temporal = temporal.Temporal;
}
const Temporal = globalThis.Temporal ?? temporal.Temporal;

const dbUrl = process.env.POSTGRES_URL;

Expand Down
7 changes: 1 addition & 6 deletions packages/postgres/src/mq.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ import process from "node:process";
import { test as nodeTest } from "node:test";
import postgres from "postgres";

let Temporal: typeof temporal.Temporal;
if ("Temporal" in globalThis) {
Temporal = globalThis.Temporal;
} else {
Temporal = temporal.Temporal;
}
const Temporal = globalThis.Temporal ?? temporal.Temporal;

const dbUrl = process.env.POSTGRES_URL;

Expand Down
7 changes: 1 addition & 6 deletions packages/sqlite/src/kv.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@ import { delay } from "@std/async/delay";
import assert from "node:assert/strict";
import { test } from "node:test";

let Temporal: typeof temporal.Temporal;
if ("Temporal" in globalThis) {
Temporal = globalThis.Temporal;
} else {
Temporal = temporal.Temporal;
}
const Temporal = globalThis.Temporal ?? temporal.Temporal;

function getStore(): {
db: PlatformDatabase;
Expand Down
Loading