@loopback/example-lb3-application 6.1.4 → 7.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,32 @@
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
+ # [7.0.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-lb3-application@6.1.5...@loopback/example-lb3-application@7.0.0) (2024-03-04)
7
+
8
+
9
+ ### chore
10
+
11
+ * drop Node.js 16 support ([b9efcb4](https://github.com/loopbackio/loopback-next/commit/b9efcb477d50507ba3c778ba23ea7acba7692593))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * Drop Node.js 16 support in all LB4 modules and extensions
17
+
18
+ Signed-off-by: dhmlau <dhmlau@ca.ibm.com>
19
+
20
+
21
+
22
+
23
+
24
+ ## [6.1.5](https://github.com/loopbackio/loopback-next/compare/@loopback/example-lb3-application@6.1.4...@loopback/example-lb3-application@6.1.5) (2024-01-11)
25
+
26
+ **Note:** Version bump only for package @loopback/example-lb3-application
27
+
28
+
29
+
30
+
31
+
6
32
  ## [6.1.4](https://github.com/loopbackio/loopback-next/compare/@loopback/example-lb3-application@6.1.3...@loopback/example-lb3-application@6.1.4) (2023-12-12)
7
33
 
8
34
  **Note:** Version bump only for package @loopback/example-lb3-application
@@ -77,18 +77,18 @@ declare const CoffeeShopApplication_base: (new (...args: any[]) => {
77
77
  (eventName: "bind" | "unbind", listener: import("@loopback/core").ContextEventListener): import("@loopback/core").Application;
78
78
  (event: string | symbol, listener: (...args: any[]) => void): import("@loopback/core").Application;
79
79
  };
80
- addListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
81
- removeListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
82
- off: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
80
+ addListener: <K_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
81
+ removeListener: <K_2>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
82
+ off: <K_3>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
83
83
  removeAllListeners: (event?: string | symbol | undefined) => import("@loopback/core").Application;
84
84
  setMaxListeners: (n: number) => import("@loopback/core").Application;
85
85
  getMaxListeners: () => number;
86
- listeners: (eventName: string | symbol) => Function[];
87
- rawListeners: (eventName: string | symbol) => Function[];
88
- emit: (eventName: string | symbol, ...args: any[]) => boolean;
89
- listenerCount: (eventName: string | symbol) => number;
90
- prependListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
91
- prependOnceListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
86
+ listeners: <K_4>(eventName: string | symbol) => Function[];
87
+ rawListeners: <K_5>(eventName: string | symbol) => Function[];
88
+ emit: <K_6>(eventName: string | symbol, ...args: any[]) => boolean;
89
+ listenerCount: <K_7>(eventName: string | symbol, listener?: Function | undefined) => number;
90
+ prependListener: <K_8>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
91
+ prependOnceListener: <K_9>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
92
92
  eventNames: () => (string | symbol)[];
93
93
  }) & (new (...args: any[]) => {
94
94
  repository<R extends import("@loopback/repository").Repository<any>>(repoClass: import("@loopback/repository").Class<R>, nameOrOptions?: string | import("@loopback/core").BindingFromClassOptions | undefined): import("@loopback/boot").Binding<R>;
@@ -167,18 +167,18 @@ declare const CoffeeShopApplication_base: (new (...args: any[]) => {
167
167
  (eventName: "bind" | "unbind", listener: import("@loopback/core").ContextEventListener): import("@loopback/core").Application;
168
168
  (event: string | symbol, listener: (...args: any[]) => void): import("@loopback/core").Application;
169
169
  };
170
- addListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
171
- removeListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
172
- off: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
170
+ addListener: <K_1_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
171
+ removeListener: <K_2_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
172
+ off: <K_3_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
173
173
  removeAllListeners: (event?: string | symbol | undefined) => import("@loopback/core").Application;
174
174
  setMaxListeners: (n: number) => import("@loopback/core").Application;
175
175
  getMaxListeners: () => number;
176
- listeners: (eventName: string | symbol) => Function[];
177
- rawListeners: (eventName: string | symbol) => Function[];
178
- emit: (eventName: string | symbol, ...args: any[]) => boolean;
179
- listenerCount: (eventName: string | symbol) => number;
180
- prependListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
181
- prependOnceListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
176
+ listeners: <K_4_1>(eventName: string | symbol) => Function[];
177
+ rawListeners: <K_5_1>(eventName: string | symbol) => Function[];
178
+ emit: <K_6_1>(eventName: string | symbol, ...args: any[]) => boolean;
179
+ listenerCount: <K_7_1>(eventName: string | symbol, listener?: Function | undefined) => number;
180
+ prependListener: <K_8_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
181
+ prependOnceListener: <K_9_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
182
182
  eventNames: () => (string | symbol)[];
183
183
  }) & typeof RestApplication;
184
184
  export declare class CoffeeShopApplication extends CoffeeShopApplication_base {
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": "6.1.4",
4
+ "version": "7.0.0",
5
5
  "keywords": [
6
6
  "loopback",
7
7
  "LoopBack",
@@ -18,7 +18,7 @@
18
18
  "directory": "examples/lb3-application"
19
19
  },
20
20
  "engines": {
21
- "node": "16 || 18 || 20"
21
+ "node": "18 || 20"
22
22
  },
23
23
  "scripts": {
24
24
  "build": "lb-tsc",
@@ -47,32 +47,31 @@
47
47
  "access": "public"
48
48
  },
49
49
  "dependencies": {
50
- "@loopback/boot": "^6.1.4",
51
- "@loopback/booter-lb3app": "^5.1.4",
52
- "@loopback/core": "^5.1.4",
53
- "@loopback/repository": "^6.1.4",
54
- "@loopback/rest": "^13.1.4",
55
- "@loopback/rest-explorer": "^6.1.4",
50
+ "@loopback/boot": "^7.0.0",
51
+ "@loopback/booter-lb3app": "^6.0.0",
52
+ "@loopback/core": "^6.0.0",
53
+ "@loopback/repository": "^7.0.0",
54
+ "@loopback/rest": "^14.0.0",
55
+ "@loopback/rest-explorer": "^7.0.0",
56
56
  "compression": "^1.7.4",
57
57
  "cors": "^2.8.5",
58
58
  "debug": "^4.3.4",
59
- "express": "^4.18.2",
59
+ "express": "^4.18.3",
60
60
  "helmet": "^4.6.0",
61
61
  "loopback": "^3.28.0",
62
62
  "loopback-boot": "^3.3.1",
63
63
  "tslib": "^2.6.2"
64
64
  },
65
65
  "devDependencies": {
66
- "@loopback/build": "^10.1.4",
67
- "@loopback/eslint-config": "^14.0.5",
68
- "@loopback/rest": "^13.0.0",
69
- "@loopback/testlab": "^6.1.4",
66
+ "@loopback/build": "^11.0.0",
67
+ "@loopback/eslint-config": "^15.0.0",
68
+ "@loopback/testlab": "^7.0.0",
70
69
  "@types/lodash": "^4.14.202",
71
- "@types/node": "^16.18.68",
72
- "eslint": "^8.51.0",
70
+ "@types/node": "^16.18.86",
71
+ "eslint": "^8.57.0",
73
72
  "lodash": "^4.17.21",
74
73
  "should": "^13.2.3",
75
74
  "typescript": "~5.2.2"
76
75
  },
77
- "gitHead": "5326aa3ae03bd01b970917f96d0403dd5102aef1"
76
+ "gitHead": "bb4864f7405492d9c86c7db6e714542a292a8790"
78
77
  }