Skip to content

Commit efbba18

Browse files
louwersaduh95
authored andcommitted
doc: add entry to changelog about SQLite Session Extension
PR-URL: #56318 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Akhil Marsonya <[email protected]> Reviewed-By: Ulises Gascón <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 63c1859 commit efbba18

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

doc/changelogs/CHANGELOG_V22.md

+31-2
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ Contributed by (Filip Skokan) [#56142](https://github.com/nodejs/node/pull/56142
329329

330330
### Notable Changes
331331

332-
### require(esm) is now enabled by default
332+
#### require(esm) is now enabled by default
333333

334334
Support for loading native ES modules using require() had been available on v20.x and v22.x under the command line flag --experimental-require-module, and available by default on v23.x. In this release, it is now no longer behind a flag on v22.x.
335335

@@ -371,7 +371,36 @@ Certificates added:
371371

372372
Contributed by Richard Lau in [#55681](https://github.com/nodejs/node/pull/55681)
373373

374-
### Other Notable Changes
374+
#### SQLite Session Extension
375+
376+
Basic support for the [SQLite Session Extension](https://www.sqlite.org/sessionintro.html)
377+
got added to the experimental `node:sqlite` module.
378+
379+
```js
380+
const sourceDb = new DatabaseSync(':memory:');
381+
const targetDb = new DatabaseSync(':memory:');
382+
383+
sourceDb.exec('CREATE TABLE data(key INTEGER PRIMARY KEY, value TEXT)');
384+
targetDb.exec('CREATE TABLE data(key INTEGER PRIMARY KEY, value TEXT)');
385+
386+
const session = sourceDb.createSession();
387+
388+
const insert = sourceDb.prepare('INSERT INTO data (key, value) VALUES (?, ?)');
389+
insert.run(1, 'hello');
390+
insert.run(2, 'world');
391+
392+
const changeset = session.changeset();
393+
targetDb.applyChangeset(changeset);
394+
// Now that the changeset has been applied, targetDb contains the same data as sourceDb.
395+
```
396+
397+
Of note to distributors when dynamically linking with SQLite (using the `--shared-sqlite`
398+
flag): compiling SQLite with `SQLITE_ENABLE_SESSION` and `SQLITE_ENABLE_PREUPDATE_HOOK`
399+
defines is now required.
400+
401+
Contributed by Bart Louwers in [#54181](https://github.com/nodejs/node/pull/54181).
402+
403+
#### Other Notable Changes
375404

376405
* \[[`4920869935`](https://github.com/nodejs/node/commit/4920869935)] - **(SEMVER-MINOR)** **assert**: make assertion\_error use Myers diff algorithm (Giovanni Bucci) [#54862](https://github.com/nodejs/node/pull/54862)
377406
* \[[`ccffd3b819`](https://github.com/nodejs/node/commit/ccffd3b819)] - **doc**: enforce strict policy to semver-major releases (Rafael Gonzaga) [#55732](https://github.com/nodejs/node/pull/55732)

0 commit comments

Comments
 (0)