knex 3.2.0 → 3.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +9 -3
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.1",
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,12 @@
14
14
  "types": "./types/index.d.ts",
15
15
  "default": "./knex.js"
16
16
  }
17
- }
17
+ },
18
+ "./lib/*": "./lib/*",
19
+ "./knex": "./knex.js",
20
+ "./knex.js": "./knex.js",
21
+ "./knex.mjs": "./knex.mjs",
22
+ "./package.json": "./package.json"
18
23
  },
19
24
  "engines": {
20
25
  "node": ">=16"
@@ -125,6 +130,7 @@
125
130
  "@tsconfig/recommended": "^1.0.1",
126
131
  "@types/minimatch": "^5.1.2",
127
132
  "@types/node": "^20.4.0",
133
+ "JSONStream": "^1.3.5",
128
134
  "better-sqlite3": "^10.1.0",
129
135
  "chai": "^4.3.6",
130
136
  "chai-as-promised": "^7.1.1",
@@ -141,7 +147,6 @@
141
147
  "faucet": "^0.0.4",
142
148
  "husky": "^8.0.1",
143
149
  "jake": "^10.8.5",
144
- "JSONStream": "^1.3.5",
145
150
  "lint-staged": "^16.2.7",
146
151
  "mocha": "^10.0.0",
147
152
  "mock-fs": "^5.1.4",
@@ -153,6 +158,7 @@
153
158
  "pg-query-stream": "^4.14.0",
154
159
  "prettier": "2.8.7",
155
160
  "rimraf": "^5.0.5",
161
+ "semver": "^7.7.4",
156
162
  "sinon": "^15.0.1",
157
163
  "sinon-chai": "^3.7.0",
158
164
  "source-map-support": "^0.5.21",