@nymphjs/driver-sqlite3 1.0.0-beta.80 → 1.0.0-beta.82

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,20 @@
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.82](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.81...v1.0.0-beta.82) (2024-12-15)
7
+
8
+ ### Bug Fixes
9
+
10
+ - use async generator for data export in postgres to solve out of memory issue ([25abf2a](https://github.com/sciactive/nymphjs/commit/25abf2a30b401a6d5d0fe42e057176ed258e4e29))
11
+
12
+ ### Features
13
+
14
+ - migrate to es modules, upgrade all packages, migrate to Svelte 5 ([3f2b9e5](https://github.com/sciactive/nymphjs/commit/3f2b9e517b39934eddce66601d7fc747fbf3f9e6))
15
+
16
+ # [1.0.0-beta.81](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.80...v1.0.0-beta.81) (2024-09-28)
17
+
18
+ **Note:** Version bump only for package @nymphjs/driver-sqlite3
19
+
6
20
  # [1.0.0-beta.80](https://github.com/sciactive/nymphjs/compare/v1.0.0-beta.79...v1.0.0-beta.80) (2024-09-28)
7
21
 
8
22
  **Note:** Version bump only for package @nymphjs/driver-sqlite3
package/README.md CHANGED
@@ -33,7 +33,7 @@ See the [config declaration file](src/conf/d.ts).
33
33
 
34
34
  # License
35
35
 
36
- Copyright 2021 SciActive Inc
36
+ Copyright 2021-2024 SciActive Inc
37
37
 
38
38
  Licensed under the Apache License, Version 2.0 (the "License");
39
39
  you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  import SQLite3 from 'better-sqlite3';
2
2
  import { NymphDriver, type EntityConstructor, type EntityInterface, type EntityInstanceType, type SerializedEntityData, type FormattedSelector, type Options, type Selector } from '@nymphjs/nymph';
3
- import { SQLite3DriverConfig } from './conf';
3
+ import { SQLite3DriverConfig } from './conf/index.js';
4
4
  declare class InternalStore {
5
5
  link: SQLite3.Database;
6
6
  linkWrite?: SQLite3.Database;
@@ -50,7 +50,7 @@ export default class SQLite3Driver extends NymphDriver {
50
50
  */
51
51
  private createTables;
52
52
  private query;
53
- private queryIter;
53
+ private queryArray;
54
54
  private queryGet;
55
55
  private queryRun;
56
56
  commit(name: string): Promise<boolean>;