bigal 13.2.1 → 14.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 (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ # [14.0.0](https://github.com/bigalorm/bigal/compare/v13.2.1...v14.0.0) (2025-05-12)
2
+
3
+ - feat!: Remove Node.js v18 support ([#113](https://github.com/bigalorm/bigal/issues/113)) ([577e4c3](https://github.com/bigalorm/bigal/commit/577e4c321b7543866ec1c595ac2e812f3b6728d4))
4
+
5
+ ### BREAKING CHANGES
6
+
7
+ - Drop support for Node.js v18. Minimum required version is now Node.js v20.
8
+
9
+ * Updated engines field in package.json
10
+ * Updated CI configuration to test on supported versions only
11
+
1
12
  ## [13.2.1](https://github.com/bigalorm/bigal/compare/v13.2.0...v13.2.1) (2025-05-12)
2
13
 
3
14
  # [13.2.0](https://github.com/bigalorm/bigal/compare/v13.1.1...v13.2.0) (2025-05-08)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigal",
3
- "version": "13.2.1",
3
+ "version": "14.0.0",
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",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "homepage": "https://github.com/bigalorm/bigal#readme",
32
32
  "engines": {
33
- "node": ">=18"
33
+ "node": ">=20.11.0"
34
34
  },
35
35
  "dependencies": {
36
36
  "@types/pg": "8.15.1",