@feathersjs/knex 5.0.24 → 5.0.25

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,12 @@
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
+ ## [5.0.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **knex:** Update commited to boolean type ([#3458](https://github.com/feathersjs/feathers/issues/3458)) ([5fa4dbc](https://github.com/feathersjs/feathers/commit/5fa4dbc06d0126ac18f5643562d0b74f03502caa))
11
+
6
12
  ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13)
7
13
 
8
14
  **Note:** Version bump only for package @feathersjs/knex
@@ -8,7 +8,7 @@ export interface KnexAdapterOptions extends AdapterServiceOptions {
8
8
  export interface KnexAdapterTransaction {
9
9
  starting: boolean;
10
10
  parent?: KnexAdapterTransaction;
11
- committed?: any;
11
+ committed?: Promise<boolean>;
12
12
  resolve?: any;
13
13
  trx?: Knex.Transaction;
14
14
  id?: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/knex",
3
3
  "description": "Feathers SQL service adapter using KnexJS",
4
- "version": "5.0.24",
4
+ "version": "5.0.25",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "keywords": [
@@ -51,25 +51,25 @@
51
51
  "access": "public"
52
52
  },
53
53
  "dependencies": {
54
- "@feathersjs/adapter-commons": "^5.0.24",
55
- "@feathersjs/commons": "^5.0.24",
56
- "@feathersjs/errors": "^5.0.24",
57
- "@feathersjs/feathers": "^5.0.24"
54
+ "@feathersjs/adapter-commons": "^5.0.25",
55
+ "@feathersjs/commons": "^5.0.25",
56
+ "@feathersjs/errors": "^5.0.25",
57
+ "@feathersjs/feathers": "^5.0.25"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "knex": ">=3.1.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@feathersjs/adapter-tests": "^5.0.24",
64
- "@feathersjs/schema": "^5.0.24",
63
+ "@feathersjs/adapter-tests": "^5.0.25",
64
+ "@feathersjs/schema": "^5.0.25",
65
65
  "@types/mocha": "^10.0.6",
66
- "@types/node": "^20.11.26",
66
+ "@types/node": "^20.12.8",
67
67
  "knex": "^3.1.0",
68
- "mocha": "^10.3.0",
69
- "pg": "^8.11.3",
68
+ "mocha": "^10.4.0",
69
+ "pg": "^8.11.5",
70
70
  "shx": "^0.3.4",
71
71
  "sqlite3": "^5.1.7",
72
- "typescript": "^5.4.2"
72
+ "typescript": "^5.4.5"
73
73
  },
74
- "gitHead": "09519fb1c454ea718747a09797bc6dfd3b6a79a3"
74
+ "gitHead": "01bc3339efd27df1b3e8d4f6a82152faf6c5ced3"
75
75
  }
@@ -10,7 +10,7 @@ export interface KnexAdapterOptions extends AdapterServiceOptions {
10
10
  export interface KnexAdapterTransaction {
11
11
  starting: boolean
12
12
  parent?: KnexAdapterTransaction
13
- committed?: any
13
+ committed?: Promise<boolean>
14
14
  resolve?: any
15
15
  trx?: Knex.Transaction
16
16
  id?: number