@nymphjs/driver-sqlite3 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 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
  **Note:** Version bump only for package @nymphjs/driver-sqlite3
@@ -141,7 +141,8 @@ export default class SQLite3Driver extends NymphDriver {
141
141
  setUID(name: string, curUid: number): Promise<boolean>;
142
142
  internalTransaction(name: string): Promise<void>;
143
143
  startTransaction(name: string): Promise<import("@nymphjs/nymph").Nymph>;
144
+ private removeTilmeldOldRows;
144
145
  needsMigration(): Promise<'json' | 'tokens' | 'tilmeldColumns' | false>;
145
- liveMigration(migrationType: 'tokenTables' | 'tilmeldColumns'): Promise<void>;
146
+ liveMigration(migrationType: 'tokenTables' | 'tilmeldColumns' | 'tilmeldRemoveOldRows'): Promise<void>;
146
147
  }
147
148
  export {};