bigal 13.0.8 → 13.0.10

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
@@ -1,3 +1,16 @@
1
+ ## [13.0.10](https://github.com/bigalorm/bigal/compare/v13.0.9...v13.0.10) (2025-04-22)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **deps:** update all dependencies ([#99](https://github.com/bigalorm/bigal/issues/99)) ([4c26341](https://github.com/bigalorm/bigal/commit/4c2634180240b37fbd717604458778aaff111fe0))
6
+
7
+ ## [13.0.9](https://github.com/bigalorm/bigal/compare/v13.0.8...v13.0.9) (2025-04-15)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **deps:** update all dependencies ([#95](https://github.com/bigalorm/bigal/issues/95)) ([2b6cab1](https://github.com/bigalorm/bigal/commit/2b6cab1dadaf1e28106de27406eb05898d7632f9))
12
+ - optional scope for semantic release ([#96](https://github.com/bigalorm/bigal/issues/96)) ([e15f680](https://github.com/bigalorm/bigal/commit/e15f6805ad51480a9e5d0147355faed1b8a3a784))
13
+
1
14
  ## [13.0.8](https://github.com/bigalorm/bigal/compare/v13.0.7...v13.0.8) (2025-04-07)
2
15
 
3
16
  # 13.0.7 - 2024-03-10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigal",
3
- "version": "13.0.8",
3
+ "version": "13.0.10",
4
4
  "description": "A fast and lightweight orm for postgres and node.js, written in typescript.",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -33,13 +33,13 @@
33
33
  "node": ">=18"
34
34
  },
35
35
  "dependencies": {
36
- "@types/pg": "8.11.11",
36
+ "@types/pg": "8.11.13",
37
37
  "lodash": "4.17.21",
38
- "pg": "8.14.1",
39
- "postgres-pool": "10.1.0"
38
+ "pg": "8.15.1",
39
+ "postgres-pool": "10.1.2"
40
40
  },
41
41
  "devDependencies": {
42
- "@faker-js/faker": "9.6.0",
42
+ "@faker-js/faker": "9.7.0",
43
43
  "@semantic-release/changelog": "6.0.3",
44
44
  "@semantic-release/commit-analyzer": "13.0.1",
45
45
  "@semantic-release/git": "10.0.1",
@@ -49,12 +49,12 @@
49
49
  "@types/chai": "5.2.1",
50
50
  "@types/lodash": "4.17.16",
51
51
  "@types/mocha": "10.0.10",
52
- "@types/node": "22.14.0",
52
+ "@types/node": ">=22",
53
53
  "chai": "5.2.0",
54
- "eslint": "9.24.0",
55
- "eslint-config-decent": "2.6.4",
54
+ "eslint": "9.25.1",
55
+ "eslint-config-decent": "2.6.7",
56
56
  "husky": "9.1.7",
57
- "lint-staged": "15.5.0",
57
+ "lint-staged": "15.5.1",
58
58
  "markdownlint-cli": "0.44.0",
59
59
  "mocha": "11.1.0",
60
60
  "npm-run-all2": "7.0.2",
@@ -76,7 +76,7 @@
76
76
  "lint": "run-p lint:*",
77
77
  "lint-staged": "lint-staged",
78
78
  "beta": "npm publish --tag beta",
79
- "prepublishOnly": "npm run lint && npm run test && npm run build && pinst --disable",
79
+ "prepublishOnly": "pinst --disable",
80
80
  "postpublish": "pinst --enable",
81
81
  "prepare": "husky"
82
82
  },
@@ -13,7 +13,8 @@ export default {
13
13
  { type: 'chore', release: 'patch' },
14
14
  ],
15
15
  parserOpts: {
16
- headerPattern: /^(\w*): (.*)$/,
16
+ // eslint-disable-next-line security/detect-unsafe-regex
17
+ headerPattern: /^(\w+)(?:\([^)]+\))?: (.+)$/,
17
18
  headerCorrespondence: ['type', 'subject'],
18
19
  },
19
20
  },