@loopback/example-greeting-app 3.0.1
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/.prettierignore +2 -0
- package/.prettierrc +7 -0
- package/.vscode/settings.json +19 -0
- package/.vscode/tasks.json +29 -0
- package/CHANGELOG.md +552 -0
- package/LICENSE +25 -0
- package/README.md +61 -0
- package/dist/__tests__/integration/greeting-service.integration.d.ts +1 -0
- package/dist/__tests__/integration/greeting-service.integration.js +68 -0
- package/dist/__tests__/integration/greeting-service.integration.js.map +1 -0
- package/dist/application.d.ts +98 -0
- package/dist/application.js +29 -0
- package/dist/application.js.map +1 -0
- package/dist/caching-service.d.ts +64 -0
- package/dist/caching-service.js +133 -0
- package/dist/caching-service.js.map +1 -0
- package/dist/controllers/greeting.controller.d.ts +10 -0
- package/dist/controllers/greeting.controller.js +59 -0
- package/dist/controllers/greeting.controller.js.map +1 -0
- package/dist/controllers/index.d.ts +1 -0
- package/dist/controllers/index.js +9 -0
- package/dist/controllers/index.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +37 -0
- package/dist/index.js.map +1 -0
- package/dist/interceptors/caching.interceptor.d.ts +7 -0
- package/dist/interceptors/caching.interceptor.js +49 -0
- package/dist/interceptors/caching.interceptor.js.map +1 -0
- package/dist/interceptors/index.d.ts +1 -0
- package/dist/interceptors/index.js +9 -0
- package/dist/interceptors/index.js.map +1 -0
- package/dist/keys.d.ts +6 -0
- package/dist/keys.js +13 -0
- package/dist/keys.js.map +1 -0
- package/dist/observers/cache.observer.d.ts +19 -0
- package/dist/observers/cache.observer.js +39 -0
- package/dist/observers/cache.observer.js.map +1 -0
- package/dist/observers/index.d.ts +1 -0
- package/dist/observers/index.js +9 -0
- package/dist/observers/index.js.map +1 -0
- package/dist/openapi-spec.d.ts +1 -0
- package/dist/openapi-spec.js +28 -0
- package/dist/openapi-spec.js.map +1 -0
- package/dist/types.d.ts +8 -0
- package/dist/types.js +7 -0
- package/dist/types.js.map +1 -0
- package/greeting-app.png +0 -0
- package/package.json +69 -0
- package/src/__tests__/integration/greeting-service.integration.ts +79 -0
- package/src/application.ts +27 -0
- package/src/caching-service.ts +146 -0
- package/src/controllers/greeting.controller.ts +50 -0
- package/src/controllers/index.ts +6 -0
- package/src/index.ts +33 -0
- package/src/interceptors/caching.interceptor.ts +55 -0
- package/src/interceptors/index.ts +6 -0
- package/src/keys.ts +14 -0
- package/src/observers/cache.observer.ts +34 -0
- package/src/observers/index.ts +6 -0
- package/src/openapi-spec.ts +28 -0
- package/src/types.ts +13 -0
- package/tsconfig.json +30 -0
package/.prettierignore
ADDED
package/.prettierrc
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"editor.rulers": [80],
|
|
3
|
+
"editor.tabCompletion": "on",
|
|
4
|
+
"editor.tabSize": 2,
|
|
5
|
+
"editor.trimAutoWhitespace": true,
|
|
6
|
+
"editor.formatOnSave": true,
|
|
7
|
+
|
|
8
|
+
"files.exclude": {
|
|
9
|
+
"**/.DS_Store": true,
|
|
10
|
+
"**/.git": true,
|
|
11
|
+
"**/.hg": true,
|
|
12
|
+
"**/.svn": true,
|
|
13
|
+
"**/CVS": true,
|
|
14
|
+
"dist": true,
|
|
15
|
+
},
|
|
16
|
+
"files.insertFinalNewline": true,
|
|
17
|
+
"files.trimTrailingWhitespace": true,
|
|
18
|
+
"typescript.tsdk": "./node_modules/typescript/lib"
|
|
19
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
3
|
+
// for the documentation about the tasks.json format
|
|
4
|
+
"version": "2.0.0",
|
|
5
|
+
"tasks": [
|
|
6
|
+
{
|
|
7
|
+
"label": "Watch and Compile Project",
|
|
8
|
+
"type": "shell",
|
|
9
|
+
"command": "npm",
|
|
10
|
+
"args": ["--silent", "run", "build:watch"],
|
|
11
|
+
"group": {
|
|
12
|
+
"kind": "build",
|
|
13
|
+
"isDefault": true
|
|
14
|
+
},
|
|
15
|
+
"problemMatcher": "$tsc-watch"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"label": "Build, Test and Lint",
|
|
19
|
+
"type": "shell",
|
|
20
|
+
"command": "npm",
|
|
21
|
+
"args": ["--silent", "run", "test:dev"],
|
|
22
|
+
"group": {
|
|
23
|
+
"kind": "test",
|
|
24
|
+
"isDefault": true
|
|
25
|
+
},
|
|
26
|
+
"problemMatcher": ["$tsc", "$eslint-stylish", "$eslint-compact"]
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,552 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [3.0.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@3.0.0...@loopback/example-greeting-app@3.0.1) (2021-09-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.0.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.4.1...@loopback/example-greeting-app@3.0.0) (2021-07-15)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **rest:** upgrade to ajv@8.x ([d3b20ed](https://github.com/loopbackio/loopback-next/commit/d3b20edc142d5c014c17ffbfa69f74403793330f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### BREAKING CHANGES
|
|
23
|
+
|
|
24
|
+
* **rest:** We upgrade to ajv@8.x, which contains breaking changes
|
|
25
|
+
for validations. See https://github.com/ajv-validator/ajv/blob/master/docs/v6-to-v8-migration.md.
|
|
26
|
+
|
|
27
|
+
Signed-off-by: Raymond Feng <enjoyjava@gmail.com>
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [2.4.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.4.0...@loopback/example-greeting-app@2.4.1) (2021-06-10)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# [2.4.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.3.1...@loopback/example-greeting-app@2.4.0) (2021-05-03)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Features
|
|
45
|
+
|
|
46
|
+
* support node v16 ([ac99415](https://github.com/loopbackio/loopback-next/commit/ac994154543bde22b4482ba98813351656db1b55))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
## [2.3.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.3.0...@loopback/example-greeting-app@2.3.1) (2021-04-06)
|
|
53
|
+
|
|
54
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
# [2.3.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.15...@loopback/example-greeting-app@2.3.0) (2021-03-18)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
### Features
|
|
64
|
+
|
|
65
|
+
* update package-lock.json to v2 consistently ([dfc3fbd](https://github.com/loopbackio/loopback-next/commit/dfc3fbdae0c9ca9f34c64154a471bef22d5ac6b7))
|
|
66
|
+
* upgrade to TypeScript 4.2.x ([05930bc](https://github.com/loopbackio/loopback-next/commit/05930bc0cece3909dd66f75ad91eeaa2d365a480))
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
## [2.2.15](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.14...@loopback/example-greeting-app@2.2.15) (2021-02-09)
|
|
73
|
+
|
|
74
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
## [2.2.14](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.13...@loopback/example-greeting-app@2.2.14) (2021-01-21)
|
|
81
|
+
|
|
82
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## [2.2.13](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.12...@loopback/example-greeting-app@2.2.13) (2020-12-07)
|
|
89
|
+
|
|
90
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## [2.2.12](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.11...@loopback/example-greeting-app@2.2.12) (2020-11-18)
|
|
97
|
+
|
|
98
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
## [2.2.11](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.10...@loopback/example-greeting-app@2.2.11) (2020-11-05)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
### Bug Fixes
|
|
108
|
+
|
|
109
|
+
* **cli:** update affected example projects ([a4386e9](https://github.com/loopbackio/loopback-next/commit/a4386e921713739417de5d4795950209d2f14e22)), closes [#3259](https://github.com/loopbackio/loopback-next/issues/3259)
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
## [2.2.10](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.9...@loopback/example-greeting-app@2.2.10) (2020-10-07)
|
|
116
|
+
|
|
117
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
## [2.2.9](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.8...@loopback/example-greeting-app@2.2.9) (2020-09-17)
|
|
124
|
+
|
|
125
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
## [2.2.8](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.7...@loopback/example-greeting-app@2.2.8) (2020-09-15)
|
|
132
|
+
|
|
133
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
## [2.2.7](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.6...@loopback/example-greeting-app@2.2.7) (2020-08-27)
|
|
140
|
+
|
|
141
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
## [2.2.6](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.5...@loopback/example-greeting-app@2.2.6) (2020-08-19)
|
|
148
|
+
|
|
149
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
## [2.2.5](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.4...@loopback/example-greeting-app@2.2.5) (2020-08-05)
|
|
156
|
+
|
|
157
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
## [2.2.4](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.3...@loopback/example-greeting-app@2.2.4) (2020-07-20)
|
|
164
|
+
|
|
165
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
## [2.2.3](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.2...@loopback/example-greeting-app@2.2.3) (2020-06-30)
|
|
172
|
+
|
|
173
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
## [2.2.2](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.1...@loopback/example-greeting-app@2.2.2) (2020-06-23)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
### Bug Fixes
|
|
183
|
+
|
|
184
|
+
* set node version to >=10.16 to support events.once ([e39da1c](https://github.com/loopbackio/loopback-next/commit/e39da1ca47728eafaf83c10ce35b09b03b6a4edc))
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
## [2.2.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.2.0...@loopback/example-greeting-app@2.2.1) (2020-06-11)
|
|
191
|
+
|
|
192
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
# [2.2.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.1.1...@loopback/example-greeting-app@2.2.0) (2020-05-28)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
### Features
|
|
202
|
+
|
|
203
|
+
* add `npm run openapi-spec` to export the openapi spec ([dca78e1](https://github.com/loopbackio/loopback-next/commit/dca78e1ba3241ed2a0e7067e00cc1afd001f0335))
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
## [2.1.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.1.0...@loopback/example-greeting-app@2.1.1) (2020-05-20)
|
|
210
|
+
|
|
211
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
# [2.1.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.0.8...@loopback/example-greeting-app@2.1.0) (2020-05-19)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### Features
|
|
221
|
+
|
|
222
|
+
* upgrade to TypeScript 3.9.x ([3300e45](https://github.com/loopbackio/loopback-next/commit/3300e4569ab8410bb1285f7a54d326e9d976476d))
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
## [2.0.8](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.0.7...@loopback/example-greeting-app@2.0.8) (2020-05-07)
|
|
229
|
+
|
|
230
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
## [2.0.7](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.0.6...@loopback/example-greeting-app@2.0.7) (2020-04-29)
|
|
237
|
+
|
|
238
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
## [2.0.6](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.0.5...@loopback/example-greeting-app@2.0.6) (2020-04-23)
|
|
245
|
+
|
|
246
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
## [2.0.5](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.0.4...@loopback/example-greeting-app@2.0.5) (2020-04-22)
|
|
253
|
+
|
|
254
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
## [2.0.4](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.0.3...@loopback/example-greeting-app@2.0.4) (2020-04-11)
|
|
261
|
+
|
|
262
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
## [2.0.3](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.0.2...@loopback/example-greeting-app@2.0.3) (2020-04-08)
|
|
269
|
+
|
|
270
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
## [2.0.2](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.0.1...@loopback/example-greeting-app@2.0.2) (2020-03-24)
|
|
277
|
+
|
|
278
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
## [2.0.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@2.0.0...@loopback/example-greeting-app@2.0.1) (2020-03-17)
|
|
285
|
+
|
|
286
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
# [2.0.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.12...@loopback/example-greeting-app@2.0.0) (2020-03-05)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
### chore
|
|
296
|
+
|
|
297
|
+
* remove support for Node.js v8.x ([4281d9d](https://github.com/loopbackio/loopback-next/commit/4281d9df50f0715d32879e1442a90b643ec8f542))
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
### Features
|
|
301
|
+
|
|
302
|
+
* add `tslib` as dependency ([a6e0b4c](https://github.com/loopbackio/loopback-next/commit/a6e0b4ce7b862764167cefedee14c1115b25e0a4)), closes [#4676](https://github.com/loopbackio/loopback-next/issues/4676)
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
### BREAKING CHANGES
|
|
306
|
+
|
|
307
|
+
* Node.js v8.x is now end of life. Please upgrade to version
|
|
308
|
+
10 and above. See https://nodejs.org/en/about/releases.
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
## [1.2.12](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.11...@loopback/example-greeting-app@1.2.12) (2020-02-06)
|
|
315
|
+
|
|
316
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
## [1.2.11](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.10...@loopback/example-greeting-app@1.2.11) (2020-02-05)
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
### Bug Fixes
|
|
326
|
+
|
|
327
|
+
* update clean script for examples to be compatible with `lb4 example` ([d9f5741](https://github.com/loopbackio/loopback-next/commit/d9f574160f6edbf73a8f728cd3695ca69297148a))
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
## [1.2.10](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.9...@loopback/example-greeting-app@1.2.10) (2020-01-27)
|
|
334
|
+
|
|
335
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
## [1.2.9](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.8...@loopback/example-greeting-app@1.2.9) (2020-01-07)
|
|
342
|
+
|
|
343
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
## [1.2.8](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.7...@loopback/example-greeting-app@1.2.8) (2020-01-07)
|
|
350
|
+
|
|
351
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
## [1.2.7](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.6...@loopback/example-greeting-app@1.2.7) (2019-12-09)
|
|
358
|
+
|
|
359
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
## [1.2.6](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.5...@loopback/example-greeting-app@1.2.6) (2019-11-25)
|
|
366
|
+
|
|
367
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
## [1.2.5](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.4...@loopback/example-greeting-app@1.2.5) (2019-11-12)
|
|
374
|
+
|
|
375
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
## [1.2.4](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.3...@loopback/example-greeting-app@1.2.4) (2019-10-24)
|
|
382
|
+
|
|
383
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
## [1.2.3](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.2...@loopback/example-greeting-app@1.2.3) (2019-10-07)
|
|
390
|
+
|
|
391
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
## [1.2.2](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.1...@loopback/example-greeting-app@1.2.2) (2019-09-28)
|
|
398
|
+
|
|
399
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
## [1.2.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.2.0...@loopback/example-greeting-app@1.2.1) (2019-09-27)
|
|
406
|
+
|
|
407
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
# [1.2.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.13...@loopback/example-greeting-app@1.2.0) (2019-09-17)
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
### Features
|
|
417
|
+
|
|
418
|
+
* **eslint-config:** enable "no-misused-promises" rule ([88d5494](https://github.com/loopbackio/loopback-next/commit/88d5494))
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
## [1.1.13](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.12...@loopback/example-greeting-app@1.1.13) (2019-09-06)
|
|
425
|
+
|
|
426
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
## [1.1.12](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.11...@loopback/example-greeting-app@1.1.12) (2019-09-03)
|
|
433
|
+
|
|
434
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
## [1.1.11](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.10...@loopback/example-greeting-app@1.1.11) (2019-08-19)
|
|
441
|
+
|
|
442
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
## [1.1.10](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.9...@loopback/example-greeting-app@1.1.10) (2019-08-15)
|
|
449
|
+
|
|
450
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
## [1.1.9](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.8...@loopback/example-greeting-app@1.1.9) (2019-08-15)
|
|
457
|
+
|
|
458
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
## [1.1.8](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.7...@loopback/example-greeting-app@1.1.8) (2019-07-31)
|
|
465
|
+
|
|
466
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
## [1.1.7](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.6...@loopback/example-greeting-app@1.1.7) (2019-07-26)
|
|
473
|
+
|
|
474
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
## [1.1.6](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.5...@loopback/example-greeting-app@1.1.6) (2019-07-17)
|
|
481
|
+
|
|
482
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
## [1.1.5](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.4...@loopback/example-greeting-app@1.1.5) (2019-06-28)
|
|
489
|
+
|
|
490
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
## [1.1.4](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.3...@loopback/example-greeting-app@1.1.4) (2019-06-21)
|
|
497
|
+
|
|
498
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
## [1.1.3](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.2...@loopback/example-greeting-app@1.1.3) (2019-06-20)
|
|
505
|
+
|
|
506
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
## [1.1.2](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.1...@loopback/example-greeting-app@1.1.2) (2019-06-17)
|
|
513
|
+
|
|
514
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
## [1.1.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.1.0...@loopback/example-greeting-app@1.1.1) (2019-06-06)
|
|
521
|
+
|
|
522
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
# [1.1.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.0.0-3...@loopback/example-greeting-app@1.1.0) (2019-06-03)
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
### Features
|
|
532
|
+
|
|
533
|
+
* replace tslint with eslint ([44185a7](https://github.com/loopbackio/loopback-next/commit/44185a7))
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
# [1.0.0-3](https://github.com/loopbackio/loopback-next/compare/@loopback/example-greeting-app@1.0.0-2...@loopback/example-greeting-app@1.0.0-3) (2019-05-31)
|
|
540
|
+
|
|
541
|
+
**Note:** Version bump only for package @loopback/example-greeting-app
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
# 1.0.0-2 (2019-05-30)
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
### Features
|
|
551
|
+
|
|
552
|
+
* **example-greeting-app:** add a new example to demonstrate loopback core ([e13bcc7](https://github.com/loopbackio/loopback-next/commit/e13bcc7))
|