bigal 13.0.8 → 13.0.9
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 +7 -0
- package/package.json +8 -8
- package/release.config.mjs +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [13.0.9](https://github.com/bigalorm/bigal/compare/v13.0.8...v13.0.9) (2025-04-15)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **deps:** update all dependencies ([#95](https://github.com/bigalorm/bigal/issues/95)) ([2b6cab1](https://github.com/bigalorm/bigal/commit/2b6cab1dadaf1e28106de27406eb05898d7632f9))
|
|
6
|
+
- optional scope for semantic release ([#96](https://github.com/bigalorm/bigal/issues/96)) ([e15f680](https://github.com/bigalorm/bigal/commit/e15f6805ad51480a9e5d0147355faed1b8a3a784))
|
|
7
|
+
|
|
1
8
|
## [13.0.8](https://github.com/bigalorm/bigal/compare/v13.0.7...v13.0.8) (2025-04-07)
|
|
2
9
|
|
|
3
10
|
# 13.0.7 - 2024-03-10
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bigal",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.9",
|
|
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.
|
|
36
|
+
"@types/pg": "8.11.13",
|
|
37
37
|
"lodash": "4.17.21",
|
|
38
38
|
"pg": "8.14.1",
|
|
39
|
-
"postgres-pool": "10.1.
|
|
39
|
+
"postgres-pool": "10.1.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@faker-js/faker": "9.
|
|
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
|
|
52
|
+
"@types/node": ">=22",
|
|
53
53
|
"chai": "5.2.0",
|
|
54
54
|
"eslint": "9.24.0",
|
|
55
|
-
"eslint-config-decent": "2.6.
|
|
55
|
+
"eslint-config-decent": "2.6.6",
|
|
56
56
|
"husky": "9.1.7",
|
|
57
|
-
"lint-staged": "15.5.
|
|
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": "
|
|
79
|
+
"prepublishOnly": "pinst --disable",
|
|
80
80
|
"postpublish": "pinst --enable",
|
|
81
81
|
"prepare": "husky"
|
|
82
82
|
},
|
package/release.config.mjs
CHANGED
|
@@ -13,7 +13,8 @@ export default {
|
|
|
13
13
|
{ type: 'chore', release: 'patch' },
|
|
14
14
|
],
|
|
15
15
|
parserOpts: {
|
|
16
|
-
|
|
16
|
+
// eslint-disable-next-line security/detect-unsafe-regex
|
|
17
|
+
headerPattern: /^(\w+)(?:\([^)]+\))?: (.+)$/,
|
|
17
18
|
headerCorrespondence: ['type', 'subject'],
|
|
18
19
|
},
|
|
19
20
|
},
|