You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/changelogs/CHANGELOG_V22.md
+31-2
Original file line number
Diff line number
Diff line change
@@ -329,7 +329,7 @@ Contributed by (Filip Skokan) [#56142](https://github.com/nodejs/node/pull/56142
329
329
330
330
### Notable Changes
331
331
332
-
### require(esm) is now enabled by default
332
+
####require(esm) is now enabled by default
333
333
334
334
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.
335
335
@@ -371,7 +371,36 @@ Certificates added:
371
371
372
372
Contributed by Richard Lau in [#55681](https://github.com/nodejs/node/pull/55681)
373
373
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
+
constsourceDb=newDatabaseSync(':memory:');
381
+
consttargetDb=newDatabaseSync(':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
+
constsession=sourceDb.createSession();
387
+
388
+
constinsert=sourceDb.prepare('INSERT INTO data (key, value) VALUES (?, ?)');
389
+
insert.run(1, 'hello');
390
+
insert.run(2, 'world');
391
+
392
+
constchangeset=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
375
404
376
405
*\[[`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)
0 commit comments