@nymphjs/driver-mysql 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/MySQLDriver.d.ts +2 -1
- package/dist/MySQLDriver.js +517 -268
- package/dist/MySQLDriver.js.map +1 -1
- package/package.json +5 -5
- package/src/MySQLDriver.ts +613 -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
|
package/dist/MySQLDriver.d.ts
CHANGED
|
@@ -143,7 +143,8 @@ export default class MySQLDriver extends NymphDriver {
|
|
|
143
143
|
setUID(name: string, curUid: number): Promise<boolean>;
|
|
144
144
|
protected internalTransaction(name: string): Promise<MySQLDriverTransaction>;
|
|
145
145
|
startTransaction(name: string): Promise<import("@nymphjs/nymph").Nymph>;
|
|
146
|
+
private removeTilmeldOldRows;
|
|
146
147
|
needsMigration(): Promise<'json' | 'tokens' | 'tilmeldColumns' | false>;
|
|
147
|
-
liveMigration(migrationType: 'tokenTables' | 'tilmeldColumns'): Promise<void>;
|
|
148
|
+
liveMigration(migrationType: 'tokenTables' | 'tilmeldColumns' | 'tilmeldRemoveOldRows'): Promise<void>;
|
|
148
149
|
}
|
|
149
150
|
export {};
|