Skip to content

Commit c641598

Browse files
committed
chore(release): publish v5.0.0-pre.35
1 parent 0328d22 commit c641598

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+11580
-29668
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.0.0-pre.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
7+
8+
### Bug Fixes
9+
10+
- **cli:** Add unhandledRejection handler to generated index file ([#2932](https://github.com/feathersjs/feathers/issues/2932)) ([e3cedc8](https://github.com/feathersjs/feathers/commit/e3cedc8e00f52d892f21fd6a3eb4ca4fe40a903c))
11+
- **cli:** Minor generated app improvements ([#2936](https://github.com/feathersjs/feathers/issues/2936)) ([ba1a550](https://github.com/feathersjs/feathers/commit/ba1a5500a8a5ea4ab44da44ac509e48c723d7efd))
12+
- **cli:** Properly log validation errors in log-error hook ([54c883c](https://github.com/feathersjs/feathers/commit/54c883c2bb5c35c02b1a2081b2f17554550aa1d4))
13+
- **cli:** Use correct package manager when installing an app ([#2973](https://github.com/feathersjs/feathers/issues/2973)) ([99c2a70](https://github.com/feathersjs/feathers/commit/99c2a70b77f0b68698a66180b69a56cb20c2ca0d))
14+
- **databases:** Make sure adapter method signatures are exported properly ([#2943](https://github.com/feathersjs/feathers/issues/2943)) ([458d668](https://github.com/feathersjs/feathers/commit/458d66859e256c5854e7590f0b4a11b233fe0374))
15+
- **knex:** Ensure custom ids are returned on create ([#2934](https://github.com/feathersjs/feathers/issues/2934)) ([c4fa3cf](https://github.com/feathersjs/feathers/commit/c4fa3cf812d59e6e8e3831ab098bb8768c92e8f4))
16+
17+
### Features
18+
19+
- **generators:** Move core code generators to shared generators package ([#2982](https://github.com/feathersjs/feathers/issues/2982)) ([0328d22](https://github.com/feathersjs/feathers/commit/0328d2292153870bc43958f73d2c6f288a8cec17))
20+
- **schema:** Allow to add additional operators to the query syntax ([#2941](https://github.com/feathersjs/feathers/issues/2941)) ([f324940](https://github.com/feathersjs/feathers/commit/f324940d5795b41e8c6fc113defb0beb7ab03a0a))
21+
622
# [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
723

824
### Bug Fixes

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"ci": false,
33
"packages": ["packages/*"],
4-
"version": "5.0.0-pre.34",
4+
"version": "5.0.0-pre.35",
55
"command": {
66
"bootstrap": {
77
"hoist": true

package-lock.json

Lines changed: 11223 additions & 29499 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/adapter-commons/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.0.0-pre.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
7+
8+
### Features
9+
10+
- **generators:** Move core code generators to shared generators package ([#2982](https://github.com/feathersjs/feathers/issues/2982)) ([0328d22](https://github.com/feathersjs/feathers/commit/0328d2292153870bc43958f73d2c6f288a8cec17))
11+
612
# [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
713

814
### Bug Fixes

packages/adapter-commons/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@feathersjs/adapter-commons",
3-
"version": "5.0.0-pre.34",
3+
"version": "5.0.0-pre.35",
44
"description": "Shared database adapter utility functions",
55
"homepage": "https://feathersjs.com",
66
"keywords": [
@@ -50,9 +50,9 @@
5050
"access": "public"
5151
},
5252
"dependencies": {
53-
"@feathersjs/commons": "^5.0.0-pre.34",
54-
"@feathersjs/errors": "^5.0.0-pre.34",
55-
"@feathersjs/feathers": "^5.0.0-pre.34"
53+
"@feathersjs/commons": "^5.0.0-pre.35",
54+
"@feathersjs/errors": "^5.0.0-pre.35",
55+
"@feathersjs/feathers": "^5.0.0-pre.35"
5656
},
5757
"devDependencies": {
5858
"@types/mocha": "^10.0.1",

packages/adapter-tests/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.0.0-pre.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
7+
8+
### Features
9+
10+
- **generators:** Move core code generators to shared generators package ([#2982](https://github.com/feathersjs/feathers/issues/2982)) ([0328d22](https://github.com/feathersjs/feathers/commit/0328d2292153870bc43958f73d2c6f288a8cec17))
11+
612
# [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
713

814
### Features

packages/adapter-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@feathersjs/adapter-tests",
3-
"version": "5.0.0-pre.34",
3+
"version": "5.0.0-pre.35",
44
"description": "Feathers shared database adapter test suite",
55
"homepage": "https://feathersjs.com",
66
"keywords": [

packages/authentication-client/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.0.0-pre.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
7+
8+
### Features
9+
10+
- **generators:** Move core code generators to shared generators package ([#2982](https://github.com/feathersjs/feathers/issues/2982)) ([0328d22](https://github.com/feathersjs/feathers/commit/0328d2292153870bc43958f73d2c6f288a8cec17))
11+
612
# [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
713

814
### Bug Fixes

packages/authentication-client/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@feathersjs/authentication-client",
33
"description": "The authentication plugin for feathers-client",
4-
"version": "5.0.0-pre.34",
4+
"version": "5.0.0-pre.35",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -53,18 +53,18 @@
5353
"access": "public"
5454
},
5555
"dependencies": {
56-
"@feathersjs/authentication": "^5.0.0-pre.34",
57-
"@feathersjs/commons": "^5.0.0-pre.34",
58-
"@feathersjs/errors": "^5.0.0-pre.34",
59-
"@feathersjs/feathers": "^5.0.0-pre.34"
56+
"@feathersjs/authentication": "^5.0.0-pre.35",
57+
"@feathersjs/commons": "^5.0.0-pre.35",
58+
"@feathersjs/errors": "^5.0.0-pre.35",
59+
"@feathersjs/feathers": "^5.0.0-pre.35"
6060
},
6161
"devDependencies": {
62-
"@feathersjs/authentication-local": "^5.0.0-pre.34",
63-
"@feathersjs/express": "^5.0.0-pre.34",
64-
"@feathersjs/memory": "^5.0.0-pre.34",
65-
"@feathersjs/rest-client": "^5.0.0-pre.34",
66-
"@feathersjs/socketio": "^5.0.0-pre.34",
67-
"@feathersjs/socketio-client": "^5.0.0-pre.34",
62+
"@feathersjs/authentication-local": "^5.0.0-pre.35",
63+
"@feathersjs/express": "^5.0.0-pre.35",
64+
"@feathersjs/memory": "^5.0.0-pre.35",
65+
"@feathersjs/rest-client": "^5.0.0-pre.35",
66+
"@feathersjs/socketio": "^5.0.0-pre.35",
67+
"@feathersjs/socketio-client": "^5.0.0-pre.35",
6868
"@types/mocha": "^10.0.1",
6969
"@types/node": "^18.11.18",
7070
"axios": "^1.2.2",

packages/authentication-local/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.0.0-pre.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
7+
8+
### Features
9+
10+
- **generators:** Move core code generators to shared generators package ([#2982](https://github.com/feathersjs/feathers/issues/2982)) ([0328d22](https://github.com/feathersjs/feathers/commit/0328d2292153870bc43958f73d2c6f288a8cec17))
11+
612
# [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
713

814
**Note:** Version bump only for package @feathersjs/authentication-local

0 commit comments

Comments
 (0)