@loopback/example-rest-crud 4.0.1 → 4.0.2

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 +11 -0
  2. package/README.md +1 -1
  3. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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
+ ## [4.0.2](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rest-crud@4.0.1...@loopback/example-rest-crud@4.0.2) (2022-07-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **docs:** documentation update for rest crud document ([f8270cc](https://github.com/loopbackio/loopback-next/commit/f8270cc265f8cd4091e7e80c40b3d906a1a93073))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [4.0.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rest-crud@4.0.0...@loopback/example-rest-crud@4.0.1) (2022-06-13)
7
18
 
8
19
  **Note:** Version bump only for package @loopback/example-rest-crud
package/README.md CHANGED
@@ -38,7 +38,7 @@ Add the following import to `src/application.ts`:
38
38
  import {CrudRestComponent} from '@loopback/rest-crud';
39
39
  ```
40
40
 
41
- And the folowing component to the application constructor:
41
+ And the following component to the application constructor:
42
42
 
43
43
  ```ts
44
44
  this.component(CrudRestComponent);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loopback/example-rest-crud",
3
3
  "description": "An example showing how to use @loopback/rest-crud to define default repository and controller classes",
4
- "version": "4.0.1",
4
+ "version": "4.0.2",
5
5
  "keywords": [
6
6
  "loopback",
7
7
  "LoopBack",
@@ -50,25 +50,25 @@
50
50
  "access": "public"
51
51
  },
52
52
  "dependencies": {
53
- "@loopback/boot": "^5.0.1",
54
- "@loopback/core": "^4.0.1",
55
- "@loopback/repository": "^5.0.1",
56
- "@loopback/rest": "^12.0.1",
57
- "@loopback/rest-crud": "^0.15.0",
58
- "@loopback/rest-explorer": "^5.0.1",
53
+ "@loopback/boot": "^5.0.2",
54
+ "@loopback/core": "^4.0.2",
55
+ "@loopback/repository": "^5.0.2",
56
+ "@loopback/rest": "^12.0.2",
57
+ "@loopback/rest-crud": "^0.15.1",
58
+ "@loopback/rest-explorer": "^5.0.2",
59
59
  "loopback-connector-rest": "^4.0.1",
60
60
  "tslib": "^2.4.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@loopback/build": "^9.0.1",
64
- "@loopback/eslint-config": "^13.0.1",
65
- "@loopback/http-caching-proxy": "^4.0.1",
66
- "@loopback/testlab": "^5.0.1",
63
+ "@loopback/build": "^9.0.2",
64
+ "@loopback/eslint-config": "^13.0.2",
65
+ "@loopback/http-caching-proxy": "^4.0.2",
66
+ "@loopback/testlab": "^5.0.2",
67
67
  "@types/lodash": "^4.14.182",
68
68
  "@types/node": "^14.18.21",
69
- "eslint": "^8.17.0",
69
+ "eslint": "^8.19.0",
70
70
  "lodash": "^4.17.21",
71
- "typescript": "~4.7.3"
71
+ "typescript": "~4.7.4"
72
72
  },
73
- "gitHead": "ccf7863d0639de966d6c6129b4aa94ba1dce2c33"
73
+ "gitHead": "d2eddfc1319810f4c0126e613c24499b5685f7e4"
74
74
  }