@loopback/example-rpc-server 5.0.9 → 6.0.0
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 +31 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,37 @@
|
|
|
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
|
+
# [6.0.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rpc-server@5.0.10...@loopback/example-rpc-server@6.0.0) (2023-05-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add support for node v20 ([e23cefa](https://github.com/loopbackio/loopback-next/commit/e23cefaf5cce3fb990cb09f4c94239d1979615b1))
|
|
12
|
+
* remove support for node v14 ([5425762](https://github.com/loopbackio/loopback-next/commit/5425762f1353869994acf081bcda4816e6a9c3b0))
|
|
13
|
+
* remove support for node v19 ([e26a2ac](https://github.com/loopbackio/loopback-next/commit/e26a2ac2e43245d09dfc9721ccfa41d830daccb8))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
* End of life of Node v14
|
|
19
|
+
|
|
20
|
+
Signed-off-by: Francisco Buceta <frbuceta@gmail.com>
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [5.0.10](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rpc-server@5.0.9...@loopback/example-rpc-server@5.0.10) (2023-04-13)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* refresh package lock files ([9979eb1](https://github.com/loopbackio/loopback-next/commit/9979eb183b6c6cd5775da7478cdede8a92ce0d5e)), closes [#9351](https://github.com/loopbackio/loopback-next/issues/9351)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
6
37
|
## [5.0.9](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rpc-server@5.0.8...@loopback/example-rpc-server@5.0.9) (2023-03-09)
|
|
7
38
|
|
|
8
39
|
**Note:** Version bump only for package @loopback/example-rpc-server
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/example-rpc-server",
|
|
3
3
|
"description": "An example RPC server and application to demonstrate the creation of your own custom server",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "6.0.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"loopback-application",
|
|
7
7
|
"loopback"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"directory": "examples/rpc-server"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": "
|
|
20
|
+
"node": "16 || 18 || 20"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "lb-tsc",
|
|
@@ -42,18 +42,18 @@
|
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@loopback/core": "^
|
|
45
|
+
"@loopback/core": "^5.0.0",
|
|
46
46
|
"express": "^4.18.2",
|
|
47
47
|
"tslib": "^2.5.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@loopback/build": "^
|
|
51
|
-
"@loopback/eslint-config": "^
|
|
52
|
-
"@loopback/testlab": "^
|
|
50
|
+
"@loopback/build": "^10.0.0",
|
|
51
|
+
"@loopback/eslint-config": "^14.0.0",
|
|
52
|
+
"@loopback/testlab": "^6.0.0",
|
|
53
53
|
"@types/express": "^4.17.17",
|
|
54
|
-
"@types/node": "^14.18.
|
|
55
|
-
"eslint": "^8.
|
|
56
|
-
"typescript": "~4.9.
|
|
54
|
+
"@types/node": "^14.18.47",
|
|
55
|
+
"eslint": "^8.40.0",
|
|
56
|
+
"typescript": "~4.9.5"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "97a26bd5973830a1d5f28aa2f58040f953995c17"
|
|
59
59
|
}
|