@loopback/example-lb3-application 8.0.2 → 8.0.4

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 +16 -0
  2. package/README.md +0 -3
  3. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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
+ ## [8.0.4](https://github.com/loopbackio/loopback-next/compare/@loopback/example-lb3-application@8.0.3...@loopback/example-lb3-application@8.0.4) (2025-08-11)
7
+
8
+ **Note:** Version bump only for package @loopback/example-lb3-application
9
+
10
+
11
+
12
+
13
+
14
+ ## [8.0.3](https://github.com/loopbackio/loopback-next/compare/@loopback/example-lb3-application@8.0.2...@loopback/example-lb3-application@8.0.3) (2025-07-15)
15
+
16
+ **Note:** Version bump only for package @loopback/example-lb3-application
17
+
18
+
19
+
20
+
21
+
6
22
  ## [8.0.2](https://github.com/loopbackio/loopback-next/compare/@loopback/example-lb3-application@8.0.1...@loopback/example-lb3-application@8.0.2) (2025-06-12)
7
23
 
8
24
  **Note:** Version bump only for package @loopback/example-lb3-application
package/README.md CHANGED
@@ -55,7 +55,6 @@ applications can use them.
55
55
  dependencies.
56
56
 
57
57
  4. Disable error handling in your LB3 app, leave it for the new LB4 app.
58
-
59
58
  - Remove `lb3app/server/middleware.development.json`
60
59
  - Edit `lb3app/server/middleware.json` and remove the following two entries:
61
60
  - `final` >> `loopback#urlNotFound`
@@ -67,7 +66,6 @@ applications can use them.
67
66
  5. Move your front-end files from `lb3app/client` to `public/` directory and
68
67
  disable static assets in your LB3 app by removing the following entry in
69
68
  `lb3app/server/middleware.json`:
70
-
71
69
  - `files` >> `loopback#static`
72
70
 
73
71
  Also remove `lb3app/server/boot/root.js`, since the main page will be served
@@ -78,7 +76,6 @@ applications can use them.
78
76
 
79
77
  7. Install and configure `@loopback/booter-lb3app` to boot and mount the LB3
80
78
  application:
81
-
82
79
  1. `npm install --save @loopback/booter-lb3app`
83
80
 
84
81
  2. Import the component at the top of your `src/application.ts` file.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loopback/example-lb3-application",
3
3
  "description": "Tutorial example on how to add existing an LB3 application to a LB4 project",
4
- "version": "8.0.2",
4
+ "version": "8.0.4",
5
5
  "keywords": [
6
6
  "loopback",
7
7
  "LoopBack",
@@ -47,13 +47,13 @@
47
47
  "access": "public"
48
48
  },
49
49
  "dependencies": {
50
- "@loopback/boot": "^8.0.2",
51
- "@loopback/booter-lb3app": "^7.0.2",
52
- "@loopback/core": "^7.0.1",
53
- "@loopback/repository": "^8.0.1",
54
- "@loopback/rest": "^15.0.2",
55
- "@loopback/rest-explorer": "^8.0.2",
56
- "compression": "^1.8.0",
50
+ "@loopback/boot": "^8.0.4",
51
+ "@loopback/booter-lb3app": "^7.0.4",
52
+ "@loopback/core": "^7.0.3",
53
+ "@loopback/repository": "^8.0.3",
54
+ "@loopback/rest": "^15.0.4",
55
+ "@loopback/rest-explorer": "^8.0.4",
56
+ "compression": "^1.8.1",
57
57
  "cors": "^2.8.5",
58
58
  "debug": "^4.4.1",
59
59
  "express": "^4.21.2",
@@ -63,15 +63,15 @@
63
63
  "tslib": "^2.8.1"
64
64
  },
65
65
  "devDependencies": {
66
- "@loopback/build": "^12.0.1",
67
- "@loopback/eslint-config": "^16.0.0",
68
- "@loopback/testlab": "^8.0.1",
69
- "@types/lodash": "^4.17.17",
66
+ "@loopback/build": "^12.0.3",
67
+ "@loopback/eslint-config": "^16.0.1",
68
+ "@loopback/testlab": "^8.0.3",
69
+ "@types/lodash": "^4.17.20",
70
70
  "@types/node": "^16.18.126",
71
71
  "eslint": "^8.57.1",
72
72
  "lodash": "^4.17.21",
73
73
  "should": "^13.2.3",
74
74
  "typescript": "~5.2.2"
75
75
  },
76
- "gitHead": "996458bc9c8f2f8ac8958987df00db1842b46223"
76
+ "gitHead": "292b33022f1d9eb85ded26e7b07a3d7a47d3b2e8"
77
77
  }