knex 3.2.0 → 3.2.2

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 +10 -0
  2. package/package.json +13 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Master (Unreleased)
2
2
 
3
+ # 3.2.1 - 22 March, 2026
4
+
5
+ ### Bug fixes
6
+
7
+ - Fix subpath imports broken by exports field added in 3.2.0. Packages relying on deep imports (e.g. `knex/lib/dialects/sqlite3/index`) were blocked by the restrictive exports map
8
+
9
+ ### Docs
10
+
11
+ - Add VitePress blog with archive and UTC post dates ([#6397](https://github.com/knex/knex/issues/6397))
12
+
3
13
  # 3.2.0 - 22 March, 2026
4
14
 
5
15
  ### New features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knex",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "description": "A batteries-included SQL query & schema builder for PostgresSQL, MySQL, CockroachDB, MSSQL and SQLite3",
5
5
  "main": "knex.js",
6
6
  "types": "types/index.d.ts",
@@ -14,7 +14,16 @@
14
14
  "types": "./types/index.d.ts",
15
15
  "default": "./knex.js"
16
16
  }
17
- }
17
+ },
18
+ "./lib/*": [
19
+ "./lib/*",
20
+ "./lib/*.js",
21
+ "./lib/*/index.js"
22
+ ],
23
+ "./knex": "./knex.js",
24
+ "./knex.js": "./knex.js",
25
+ "./knex.mjs": "./knex.mjs",
26
+ "./package.json": "./package.json"
18
27
  },
19
28
  "engines": {
20
29
  "node": ">=16"
@@ -152,7 +161,9 @@
152
161
  "pg": "^8.20.0",
153
162
  "pg-query-stream": "^4.14.0",
154
163
  "prettier": "2.8.7",
164
+ "resolve.exports": "^2.0.3",
155
165
  "rimraf": "^5.0.5",
166
+ "semver": "^7.7.4",
156
167
  "sinon": "^15.0.1",
157
168
  "sinon-chai": "^3.7.0",
158
169
  "source-map-support": "^0.5.21",