@loopback/example-access-control-migration 5.0.10 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/Dockerfile +1 -1
  3. package/package.json +19 -19
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
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-access-control-migration@5.0.10...@loopback/example-access-control-migration@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
+
6
26
  ## [5.0.10](https://github.com/loopbackio/loopback-next/compare/@loopback/example-access-control-migration@5.0.9...@loopback/example-access-control-migration@5.0.10) (2023-04-13)
7
27
 
8
28
 
package/Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
1
  # Check out https://hub.docker.com/_/node to select a new base image
2
- FROM node:16-slim
2
+ FROM node:18-slim
3
3
 
4
4
  # Set to a non-root built-in user `node`
5
5
  USER node
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loopback/example-access-control-migration",
3
3
  "description": "Tutorial example on how to migrate the access control example with LoopBack 4.",
4
- "version": "5.0.10",
4
+ "version": "6.0.0",
5
5
  "keywords": [
6
6
  "loopback",
7
7
  "LoopBack",
@@ -22,7 +22,7 @@
22
22
  "directory": "examples/access-control-migration"
23
23
  },
24
24
  "engines": {
25
- "node": "14 || 16 || 18 || 19"
25
+ "node": "16 || 18 || 20"
26
26
  },
27
27
  "scripts": {
28
28
  "build": "lb-tsc",
@@ -51,15 +51,15 @@
51
51
  "access": "public"
52
52
  },
53
53
  "dependencies": {
54
- "@loopback/authentication": "^9.0.10",
55
- "@loopback/authorization": "^0.12.10",
56
- "@loopback/boot": "^5.0.10",
57
- "@loopback/core": "^4.0.10",
58
- "@loopback/repository": "^5.1.5",
59
- "@loopback/rest": "^12.0.10",
60
- "@loopback/rest-explorer": "^5.0.10",
61
- "@loopback/security": "^0.8.10",
62
- "@loopback/service-proxy": "^5.0.10",
54
+ "@loopback/authentication": "^10.0.0",
55
+ "@loopback/authorization": "^0.13.0",
56
+ "@loopback/boot": "^6.0.0",
57
+ "@loopback/core": "^5.0.0",
58
+ "@loopback/repository": "^6.0.0",
59
+ "@loopback/rest": "^13.0.0",
60
+ "@loopback/rest-explorer": "^6.0.0",
61
+ "@loopback/security": "^0.9.0",
62
+ "@loopback/service-proxy": "^6.0.0",
63
63
  "@types/bcryptjs": "2.4.2",
64
64
  "bcryptjs": "^2.4.3",
65
65
  "casbin": "^5.26.1",
@@ -67,15 +67,15 @@
67
67
  "loopback-connector-rest": "^4.0.3"
68
68
  },
69
69
  "devDependencies": {
70
- "@loopback/build": "^9.0.10",
71
- "@loopback/eslint-config": "^13.0.10",
72
- "@loopback/http-caching-proxy": "^4.0.10",
73
- "@loopback/testlab": "^5.0.10",
74
- "@types/lodash": "^4.14.192",
75
- "@types/node": "^14.18.42",
76
- "eslint": "^8.38.0",
70
+ "@loopback/build": "^10.0.0",
71
+ "@loopback/eslint-config": "^14.0.0",
72
+ "@loopback/http-caching-proxy": "^5.0.0",
73
+ "@loopback/testlab": "^6.0.0",
74
+ "@types/lodash": "^4.14.194",
75
+ "@types/node": "^14.18.47",
76
+ "eslint": "^8.40.0",
77
77
  "lodash": "^4.17.21",
78
78
  "typescript": "~4.9.5"
79
79
  },
80
- "gitHead": "3a98ded2622420d0f09dbc3c0fe961c0234b097f"
80
+ "gitHead": "97a26bd5973830a1d5f28aa2f58040f953995c17"
81
81
  }