@nymphjs/driver-postgresql 1.0.0-beta.109 → 1.0.0-beta.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/PostgreSQLDriver.d.ts +2 -1
- package/dist/PostgreSQLDriver.js +523 -267
- package/dist/PostgreSQLDriver.js.map +1 -1
- package/package.json +5 -5
- package/src/PostgreSQLDriver.ts +623 -270
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.0.0-beta.110](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.109...v1.0.0-beta.110) (2026-02-23)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add tilmeldRemoveOldRows migration to remove old access control rows ([79f5c8c](https://github.com/sciactive/nymphjs/commit/79f5c8c3e6e5aef2a4c7f53199bee3096663254f))
|
|
11
|
+
- export new tilmeld columns when exporting entities ([9579f61](https://github.com/sciactive/nymphjs/commit/9579f61379c3046685eeddbf43f826634acf3dcb))
|
|
12
|
+
- use the new access control columns in queries instead of data rows ([f3a2be2](https://github.com/sciactive/nymphjs/commit/f3a2be2c3ca37fa33499f3353a0862f64f2f32f2))
|
|
13
|
+
|
|
6
14
|
# [1.0.0-beta.109](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.108...v1.0.0-beta.109) (2026-02-15)
|
|
7
15
|
|
|
8
16
|
### Bug Fixes
|
|
@@ -152,7 +152,8 @@ export default class PostgreSQLDriver extends NymphDriver {
|
|
|
152
152
|
setUID(name: string, curUid: number): Promise<boolean>;
|
|
153
153
|
protected internalTransaction(name: string): Promise<PostgreSQLDriverTransaction>;
|
|
154
154
|
startTransaction(name: string): Promise<import("@nymphjs/nymph").Nymph>;
|
|
155
|
+
private removeTilmeldOldRows;
|
|
155
156
|
needsMigration(): Promise<'json' | 'tokens' | 'tilmeldColumns' | false>;
|
|
156
|
-
liveMigration(migrationType: 'tokenTables' | 'tilmeldColumns'): Promise<void>;
|
|
157
|
+
liveMigration(migrationType: 'tokenTables' | 'tilmeldColumns' | 'tilmeldRemoveOldRows'): Promise<void>;
|
|
157
158
|
}
|
|
158
159
|
export {};
|