@loopback/example-greeting-app 8.0.1 → 8.0.3
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 +16 -0
- package/README.md +0 -2
- package/package.json +8 -8
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.3](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@8.0.2...@loopback/example-greeting-app@8.0.3) (2025-07-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [8.0.2](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@8.0.1...@loopback/example-greeting-app@8.0.2) (2025-06-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [8.0.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@8.0.0...@loopback/example-greeting-app@8.0.1) (2025-06-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @loopback/example-greeting-app
|
package/README.md
CHANGED
|
@@ -6,11 +6,9 @@ This application is built on top of
|
|
|
6
6
|
## Compose the application
|
|
7
7
|
|
|
8
8
|
1. Add REST API
|
|
9
|
-
|
|
10
9
|
- GreetingController - providing endpoints over `GreetingService`
|
|
11
10
|
|
|
12
11
|
2. Add caching
|
|
13
|
-
|
|
14
12
|
- CachingService - implementing cache operations, such as set,get, delete,
|
|
15
13
|
and sweep
|
|
16
14
|
- CachingInterceptor - intercepting http requests to apply caching
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/example-greeting-app",
|
|
3
3
|
"description": "An example greeting application for LoopBack 4",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.3",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"loopback",
|
|
7
7
|
"loopback-application"
|
|
@@ -48,22 +48,22 @@
|
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@loopback/boot": "^8.0.
|
|
52
|
-
"@loopback/core": "^7.0.
|
|
53
|
-
"@loopback/example-greeter-extension": "^8.0.
|
|
54
|
-
"@loopback/rest": "^15.0.
|
|
51
|
+
"@loopback/boot": "^8.0.3",
|
|
52
|
+
"@loopback/core": "^7.0.2",
|
|
53
|
+
"@loopback/example-greeter-extension": "^8.0.2",
|
|
54
|
+
"@loopback/rest": "^15.0.3",
|
|
55
55
|
"chalk": "^4.1.2",
|
|
56
56
|
"debug": "^4.4.1",
|
|
57
57
|
"tslib": "^2.8.1"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@loopback/build": "^12.0.
|
|
60
|
+
"@loopback/build": "^12.0.2",
|
|
61
61
|
"@loopback/eslint-config": "^16.0.0",
|
|
62
|
-
"@loopback/testlab": "^8.0.
|
|
62
|
+
"@loopback/testlab": "^8.0.2",
|
|
63
63
|
"@types/debug": "4.1.12",
|
|
64
64
|
"@types/node": "^16.18.126",
|
|
65
65
|
"eslint": "^8.57.1",
|
|
66
66
|
"typescript": "~5.2.2"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "c2a3c1ada086e3abd6ea195ec8f70ce5a63c924c"
|
|
69
69
|
}
|