@loopback/repository 3.5.1 → 3.6.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +26 -26
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
+ # [3.6.0](https://github.com/strongloop/loopback-next/compare/@loopback/repository@3.5.1...@loopback/repository@3.6.0) (2021-05-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * support node v16 ([ac99415](https://github.com/strongloop/loopback-next/commit/ac994154543bde22b4482ba98813351656db1b55))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.5.1](https://github.com/strongloop/loopback-next/compare/@loopback/repository@3.5.0...@loopback/repository@3.5.1) (2021-04-06)
7
18
 
8
19
  **Note:** Version bump only for package @loopback/repository
package/package.json CHANGED
@@ -1,11 +1,19 @@
1
1
  {
2
2
  "name": "@loopback/repository",
3
- "version": "3.5.1",
4
3
  "description": "Define and implement a common set of interfaces for interacting with databases",
4
+ "version": "3.6.0",
5
+ "license": "MIT",
5
6
  "main": "dist/index.js",
6
7
  "types": "dist/index.d.ts",
8
+ "author": "IBM Corp.",
9
+ "copyright.owner": "IBM Corp.",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/strongloop/loopback-next.git",
13
+ "directory": "packages/repository"
14
+ },
7
15
  "engines": {
8
- "node": "^10.16 || 12 || 14 || 15"
16
+ "node": "^10.16 || 12 || 14 || 16"
9
17
  },
10
18
  "scripts": {
11
19
  "acceptance": "lb-mocha \"dist/__tests__/acceptance/**/*.js\"",
@@ -15,44 +23,36 @@
15
23
  "test": "lb-mocha \"dist/__tests__/**/*.js\"",
16
24
  "verify": "npm pack && tar xf loopback-repository*.tgz && tree package && npm run clean"
17
25
  },
18
- "author": "IBM Corp.",
19
- "copyright.owner": "IBM Corp.",
20
- "license": "MIT",
21
26
  "publishConfig": {
22
27
  "access": "public"
23
28
  },
29
+ "files": [
30
+ "README.md",
31
+ "dist",
32
+ "src",
33
+ "!*/__tests__"
34
+ ],
24
35
  "peerDependencies": {
25
- "@loopback/core": "^2.15.1"
36
+ "@loopback/core": "^2.16.0"
26
37
  },
27
38
  "dependencies": {
28
- "@loopback/filter": "^1.4.1",
39
+ "@loopback/filter": "^1.5.0",
29
40
  "@types/debug": "^4.1.5",
30
41
  "debug": "^4.3.1",
31
42
  "lodash": "^4.17.21",
32
43
  "loopback-datasource-juggler": "^4.26.0",
33
- "tslib": "^2.1.0"
44
+ "tslib": "^2.2.0"
34
45
  },
35
46
  "devDependencies": {
36
- "@loopback/build": "^6.3.1",
37
- "@loopback/core": "^2.15.1",
38
- "@loopback/eslint-config": "^10.1.1",
39
- "@loopback/testlab": "^3.3.1",
47
+ "@loopback/build": "^6.4.0",
48
+ "@loopback/core": "^2.16.0",
49
+ "@loopback/eslint-config": "^10.2.0",
50
+ "@loopback/testlab": "^3.4.0",
40
51
  "@types/bson": "^4.0.3",
41
52
  "@types/json-schema": "^7.0.7",
42
53
  "@types/lodash": "^4.14.168",
43
- "@types/node": "^10.17.56",
44
- "bson": "4.2.3"
45
- },
46
- "files": [
47
- "README.md",
48
- "dist",
49
- "src",
50
- "!*/__tests__"
51
- ],
52
- "repository": {
53
- "type": "git",
54
- "url": "https://github.com/strongloop/loopback-next.git",
55
- "directory": "packages/repository"
54
+ "@types/node": "^10.17.59",
55
+ "bson": "4.3.0"
56
56
  },
57
- "gitHead": "156ca0fcf8fa246ca380ab28b44b3708896be2b6"
57
+ "gitHead": "2ca802912d8c7750d0256f3c3d493c4525415201"
58
58
  }