bigal 10.4.2 → 11.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +2 -2
  3. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Change Log
2
2
 
3
+ ## 11.0.0 - 2023-02-07
4
+
5
+ ### BREAKING CHANGES
6
+
7
+ - Drop support for Node.js 14
8
+
9
+ ### MAINTENANCE
10
+
11
+ - Update npms
12
+
3
13
  ## 10.4.2 - 2023-01-03
4
14
 
5
15
  - Update npms
package/README.md CHANGED
@@ -14,8 +14,8 @@ This ORM does not:
14
14
 
15
15
  ## Compatibility
16
16
 
17
- - Node.js v14 or above
18
- - [PostgreSQL](http://www.postgresql.org/) 12 or above. Lower versions _should_ work.
17
+ - Node.js v16 or above
18
+ - [PostgreSQL](http://www.postgresql.org/) 14 or above. Lower versions _should_ work.
19
19
 
20
20
  ## Install
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigal",
3
- "version": "10.4.2",
3
+ "version": "11.0.0",
4
4
  "description": "A fast and lightweight orm for postgres and node.js, written in typescript.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -16,45 +16,45 @@
16
16
  },
17
17
  "homepage": "https://github.com/bigalorm/bigal#readme",
18
18
  "engines": {
19
- "node": ">=14"
19
+ "node": ">=16"
20
20
  },
21
21
  "dependencies": {
22
22
  "@types/lodash": "^4.14.191",
23
- "@types/node": ">=14",
23
+ "@types/node": ">=16",
24
24
  "@types/pg": "^8.6.6",
25
25
  "lodash": "^4.17.21",
26
- "pg": "^8.8.0",
27
- "postgres-pool": "^6.0.8"
26
+ "pg": "^8.9.0",
27
+ "postgres-pool": "^7.0.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@faker-js/faker": "^7.6.0",
31
31
  "@types/chai": "^4.3.4",
32
32
  "@types/mocha": "10.0.1",
33
- "@typescript-eslint/eslint-plugin": "^5.48.0",
34
- "@typescript-eslint/parser": "^5.48.0",
33
+ "@typescript-eslint/eslint-plugin": "^5.51.0",
34
+ "@typescript-eslint/parser": "^5.51.0",
35
35
  "chai": "^4.3.7",
36
- "eslint": "^8.31.0",
36
+ "eslint": "^8.33.0",
37
37
  "eslint-config-airbnb-base": "^15.0.0",
38
38
  "eslint-config-airbnb-typescript": "^17.0.0",
39
39
  "eslint-config-prettier": "^8.6.0",
40
- "eslint-plugin-import": "^2.26.0",
41
- "eslint-plugin-jsdoc": "^39.6.4",
40
+ "eslint-plugin-import": "^2.27.5",
41
+ "eslint-plugin-jsdoc": "^39.8.0",
42
42
  "eslint-plugin-mocha": "10.1.0",
43
43
  "eslint-plugin-prettier": "^4.2.1",
44
44
  "eslint-plugin-promise": "^6.1.1",
45
- "eslint-plugin-security": "^1.5.0",
45
+ "eslint-plugin-security": "^1.7.1",
46
46
  "husky": "^8.0.3",
47
- "lint-staged": "^13.1.0",
48
- "markdownlint-cli": "^0.32.2",
47
+ "lint-staged": "^13.1.1",
48
+ "markdownlint-cli": "^0.33.0",
49
49
  "mocha": "^10.2.0",
50
50
  "npm-run-all": "^4.1.5",
51
51
  "pinst": "^3.0.0",
52
- "prettier": "^2.8.1",
53
- "rimraf": "^3.0.2",
52
+ "prettier": "^2.8.3",
53
+ "rimraf": "^4.1.2",
54
54
  "strict-event-emitter-types": "^2.0.0",
55
55
  "ts-mockito": "^2.6.1",
56
56
  "ts-node": "^10.9.1",
57
- "typescript": "^4.9.4"
57
+ "typescript": "^4.9.5"
58
58
  },
59
59
  "scripts": {
60
60
  "check:types": "tsc -p tsconfig.lint.json --noEmit",