@feathersjs/knex 5.0.0-pre.28 → 5.0.0-pre.30
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 +11 -20
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -3,48 +3,39 @@
|
|
|
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.0-pre.
|
|
6
|
+
# [5.0.0-pre.30](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.29...v5.0.0-pre.30) (2022-10-07)
|
|
7
7
|
|
|
8
|
+
### Features
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
- **core:** Allow to unregister services at runtime ([#2756](https://github.com/feathersjs/feathers/issues/2756)) ([d16601f](https://github.com/feathersjs/feathers/commit/d16601f2277dca5357866ffdefba2a611f6dc7fa))
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
* **knex:** Fix PostgreSQL integration issues and run CI tests against pg ([#2698](https://github.com/feathersjs/feathers/issues/2698)) ([1f71d78](https://github.com/feathersjs/feathers/commit/1f71d7884656c1494004931f4979ad59d23e4ee6))
|
|
12
|
+
# [5.0.0-pre.29](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.28...v5.0.0-pre.29) (2022-09-16)
|
|
13
13
|
|
|
14
|
+
**Note:** Version bump only for package @feathersjs/knex
|
|
14
15
|
|
|
16
|
+
# [5.0.0-pre.28](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.27...v5.0.0-pre.28) (2022-08-03)
|
|
15
17
|
|
|
18
|
+
### Bug Fixes
|
|
16
19
|
|
|
20
|
+
- **cli:** Improve generated application and client ([#2701](https://github.com/feathersjs/feathers/issues/2701)) ([bd55ffb](https://github.com/feathersjs/feathers/commit/bd55ffb812e89bf215f4515e7f137656ea888c3f))
|
|
21
|
+
- **knex:** Fix PostgreSQL integration issues and run CI tests against pg ([#2698](https://github.com/feathersjs/feathers/issues/2698)) ([1f71d78](https://github.com/feathersjs/feathers/commit/1f71d7884656c1494004931f4979ad59d23e4ee6))
|
|
17
22
|
|
|
18
23
|
# [5.0.0-pre.27](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.26...v5.0.0-pre.27) (2022-07-13)
|
|
19
24
|
|
|
20
25
|
**Note:** Version bump only for package @feathersjs/knex
|
|
21
26
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
27
|
# [5.0.0-pre.26](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.25...v5.0.0-pre.26) (2022-06-22)
|
|
27
28
|
|
|
28
29
|
**Note:** Version bump only for package @feathersjs/knex
|
|
29
30
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
31
|
# [5.0.0-pre.25](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.24...v5.0.0-pre.25) (2022-06-22)
|
|
35
32
|
|
|
36
|
-
|
|
37
33
|
### Bug Fixes
|
|
38
34
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
35
|
+
- **cli:** Generator fixes to work with the new guide ([#2674](https://github.com/feathersjs/feathers/issues/2674)) ([b773fa5](https://github.com/feathersjs/feathers/commit/b773fa5dbd7ff450cfb2f7b93e64882592262712))
|
|
44
36
|
|
|
45
37
|
# [5.0.0-pre.24](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.23...v5.0.0-pre.24) (2022-06-21)
|
|
46
38
|
|
|
47
|
-
|
|
48
39
|
### Features
|
|
49
40
|
|
|
50
|
-
|
|
41
|
+
- **knex:** Add KnexJS SQL database adapter to core ([#2671](https://github.com/feathersjs/feathers/issues/2671)) ([9380fff](https://github.com/feathersjs/feathers/commit/9380fff58596e8bb90b8bb098d2795b7eadfec20))
|
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.0-pre.
|
|
4
|
+
"version": "5.0.0-pre.30",
|
|
5
5
|
"homepage": "https://feathersjs.com",
|
|
6
6
|
"main": "lib/",
|
|
7
7
|
"keywords": [
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"scripts": {
|
|
42
42
|
"prepublish": "npm run compile",
|
|
43
|
-
"pack": "npm pack --pack-destination ../cli/test",
|
|
43
|
+
"pack": "npm pack --pack-destination ../cli/test/build",
|
|
44
44
|
"compile": "shx rm -rf lib/ && tsc && npm run pack",
|
|
45
45
|
"test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
|
|
46
46
|
},
|
|
@@ -51,24 +51,24 @@
|
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@feathersjs/adapter-commons": "^5.0.0-pre.
|
|
55
|
-
"@feathersjs/commons": "^5.0.0-pre.
|
|
56
|
-
"@feathersjs/errors": "^5.0.0-pre.
|
|
57
|
-
"@feathersjs/feathers": "^5.0.0-pre.
|
|
54
|
+
"@feathersjs/adapter-commons": "^5.0.0-pre.30",
|
|
55
|
+
"@feathersjs/commons": "^5.0.0-pre.30",
|
|
56
|
+
"@feathersjs/errors": "^5.0.0-pre.30",
|
|
57
|
+
"@feathersjs/feathers": "^5.0.0-pre.30"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"knex": "^2.
|
|
60
|
+
"knex": "^2.3.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@feathersjs/adapter-tests": "^5.0.0-pre.
|
|
64
|
-
"@types/mocha": "^
|
|
65
|
-
"@types/node": "^18.
|
|
66
|
-
"knex": "^2.
|
|
63
|
+
"@feathersjs/adapter-tests": "^5.0.0-pre.30",
|
|
64
|
+
"@types/mocha": "^10.0.0",
|
|
65
|
+
"@types/node": "^18.8.2",
|
|
66
|
+
"knex": "^2.3.0",
|
|
67
67
|
"mocha": "^10.0.0",
|
|
68
|
-
"pg": "^8.
|
|
68
|
+
"pg": "^8.8.0",
|
|
69
69
|
"shx": "^0.3.4",
|
|
70
|
-
"sqlite3": "^5.
|
|
71
|
-
"typescript": "^4.
|
|
70
|
+
"sqlite3": "^5.1.2",
|
|
71
|
+
"typescript": "^4.8.4"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "b535c91197f4b997520e0a0e608793eeba791931"
|
|
74
74
|
}
|