@loopback/example-rpc-server 4.1.2 → 5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +12 -12
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
+ ## [5.0.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rpc-server@4.1.2...@loopback/example-rpc-server@5.0.0) (2022-05-05)
7
+
8
+
9
+ ### ⚠ BREAKING CHANGES
10
+
11
+ * remove node v12 support
12
+
13
+ ### Features
14
+
15
+ * add support for node v18 ([ccb4c61](https://github.com/loopbackio/loopback-next/commit/ccb4c61307d94ab7bb07a19c547dfc4fa7d388a8))
16
+ * remove node v12 support ([5f66e5b](https://github.com/loopbackio/loopback-next/commit/5f66e5bd288ba806b3aa6550fc29c5009de8b60d))
17
+
18
+
19
+
6
20
  ## [4.1.2](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rpc-server@4.1.1...@loopback/example-rpc-server@4.1.2) (2022-03-29)
7
21
 
8
22
  **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.1.2",
4
+ "version": "5.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": "12 || 14 || 16 || 17"
20
+ "node": "14 || 16 || 17 || 18"
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": "^3.1.2",
46
- "express": "^4.17.3",
47
- "tslib": "^2.3.1"
45
+ "@loopback/core": "^4.0.0",
46
+ "express": "^4.18.1",
47
+ "tslib": "^2.4.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@loopback/build": "^8.1.2",
51
- "@loopback/eslint-config": "^12.0.4",
52
- "@loopback/testlab": "^4.1.2",
50
+ "@loopback/build": "^9.0.0",
51
+ "@loopback/eslint-config": "^13.0.0",
52
+ "@loopback/testlab": "^5.0.0",
53
53
  "@types/express": "^4.17.13",
54
- "@types/node": "^12.20.47",
55
- "eslint": "^8.10.0",
56
- "typescript": "~4.6.3"
54
+ "@types/node": "^12.20.50",
55
+ "eslint": "^8.14.0",
56
+ "typescript": "~4.6.4"
57
57
  },
58
- "gitHead": "22d993c73a7b4ccdb36f2e26ea52460dc46fbd11"
58
+ "gitHead": "61453a3d7a16f9f37875a3f2c2a071568eb3e3af"
59
59
  }