bigal 15.0.0 → 15.0.1
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 +2 -0
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## [15.0.1](https://github.com/bigalorm/bigal/compare/v15.0.0...v15.0.1) (2026-01-07)
|
|
2
|
+
|
|
1
3
|
# [15.0.0](https://github.com/bigalorm/bigal/compare/v14.1.26...v15.0.0) (2025-12-28)
|
|
2
4
|
|
|
3
5
|
- feat!: support pluggable PostgreSQL drivers ([7638343](https://github.com/bigalorm/bigal/commit/76383432acc8ee1bdf48a8c60a8e5fa10176bd69))
|
package/dist/index.cjs
CHANGED
|
@@ -1959,7 +1959,7 @@ ${stack ?? ""}`;
|
|
|
1959
1959
|
let relatedModelColumn;
|
|
1960
1960
|
for (const populateModelColumn of populateRepository.model.columns) {
|
|
1961
1961
|
const { through } = populateModelColumn;
|
|
1962
|
-
if (through
|
|
1962
|
+
if (through?.toLowerCase() === column.through.toLowerCase()) {
|
|
1963
1963
|
relatedModelColumn = populateModelColumn;
|
|
1964
1964
|
break;
|
|
1965
1965
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -1957,7 +1957,7 @@ ${stack ?? ""}`;
|
|
|
1957
1957
|
let relatedModelColumn;
|
|
1958
1958
|
for (const populateModelColumn of populateRepository.model.columns) {
|
|
1959
1959
|
const { through } = populateModelColumn;
|
|
1960
|
-
if (through
|
|
1960
|
+
if (through?.toLowerCase() === column.through.toLowerCase()) {
|
|
1961
1961
|
relatedModelColumn = populateModelColumn;
|
|
1962
1962
|
break;
|
|
1963
1963
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bigal",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.1",
|
|
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",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@faker-js/faker": "10.
|
|
37
|
+
"@faker-js/faker": "10.2.0",
|
|
38
38
|
"@semantic-release/changelog": "6.0.3",
|
|
39
39
|
"@semantic-release/commit-analyzer": "13.0.1",
|
|
40
40
|
"@semantic-release/git": "10.0.1",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@types/node": ">=20",
|
|
47
47
|
"chai": "6.2.2",
|
|
48
48
|
"eslint": "9.39.2",
|
|
49
|
-
"eslint-config-decent": "3.1.
|
|
49
|
+
"eslint-config-decent": "3.1.89",
|
|
50
50
|
"husky": "9.1.7",
|
|
51
51
|
"lint-staged": "16.2.7",
|
|
52
52
|
"markdownlint-cli": "0.47.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"prettier": "3.7.4",
|
|
57
57
|
"semantic-release": "25.0.2",
|
|
58
58
|
"strict-event-emitter-types": "2.0.0",
|
|
59
|
-
"postgres-pool": "
|
|
59
|
+
"postgres-pool": "11.0.1",
|
|
60
60
|
"ts-mockito": "2.6.1",
|
|
61
61
|
"ts-node": "10.9.2",
|
|
62
62
|
"typescript": "5.9.3",
|