Skip to content

Commit 4d9e867

Browse files
Merge pull request #3700 from cloudflare/lambros/cfsql-1220-d1-sessions-api-default
Make the D1 Sessions API default allowed for everyone
2 parents c9193c3 + d4ae1f3 commit 4d9e867

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

src/cloudflare/internal/d1-api.ts

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// Licensed under the Apache 2.0 license found in the LICENSE file or at:
33
// https://opensource.org/licenses/Apache-2.0
44

5-
import flags from 'workerd:compatibility-flags';
6-
75
interface Fetcher {
86
fetch: typeof fetch;
97
}
@@ -570,8 +568,5 @@ async function toJson<T = unknown>(response: Response): Promise<T> {
570568
}
571569

572570
export default function makeBinding(env: { fetcher: Fetcher }): D1Database {
573-
if (flags.enableD1WithSessionsAPI) {
574-
return new D1DatabaseWithSessionAPI(env.fetcher);
575-
}
576-
return new D1Database(env.fetcher);
571+
return new D1DatabaseWithSessionAPI(env.fetcher);
577572
}

src/cloudflare/internal/test/d1/d1-api-test-with-sessions.wd-test

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const unitTests :Workerd.Config = (
1212
compatibilityDate = "2023-01-15",
1313

1414
# NOTE: We provide the extra compatibility flag to enable the Sessions API.
15-
compatibilityFlags = ["nodejs_compat", "enable_d1_with_sessions_api"],
15+
compatibilityFlags = ["nodejs_compat"],
1616

1717
bindings = [
1818
(

src/workerd/io/compatibility-date.capnp

+3-4
Original file line numberDiff line numberDiff line change
@@ -605,12 +605,11 @@ struct CompatibilityFlags @0x8f8c1b68151b6cef {
605605
# Enables routing to a replica on the client-side.
606606
# Doesn't mean requests *will* be routed to a replica, only that they can be.
607607

608-
enableD1WithSessionsAPI @61 :Bool
608+
obsolete61 @61 :Bool
609609
$compatEnableFlag("enable_d1_with_sessions_api")
610610
$experimental;
611-
# Enables the withSessions(commitTokenOrConstraint) method that allows users
612-
# to use read-replication for D1.
613-
# Experimental since this is not yet ready and is only meant for internal testing during development.
611+
# Was used to enable the withSession(bookmarkOrConstraint) method that allows users
612+
# to use read-replication Sessions API for D1. This is now enabled for everyone.
614613

615614
handleCrossRequestPromiseResolution @62 :Bool
616615
$compatEnableFlag("handle_cross_request_promise_resolution")

0 commit comments

Comments
 (0)