neon-testing 2.1.3 → 2.1.4

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/README.md +4 -1
  2. package/package.json +6 -5
package/README.md CHANGED
@@ -290,7 +290,10 @@ Create a free Neon project at [neon.com](https://neon.com/) to test with.
290
290
  To make a new release, run:
291
291
 
292
292
  ```sh
293
- bun run release
293
+ bun run release:patch
294
+ bun run release:minor
295
+ bun run release:major
296
+ bun run release:beta
294
297
  ```
295
298
 
296
299
  The command will abort if there are uncommitted changes in the working tree, or if the `version` in [package.json](package.json) has not been incremented.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neon-testing",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "A Vitest utility for seamless integration tests with Neon Postgres",
5
5
  "keywords": [
6
6
  "neon",
@@ -47,16 +47,17 @@
47
47
  "@neondatabase/api-client": "^2.2.0"
48
48
  },
49
49
  "peerDependencies": {
50
+ "vite": "^7",
50
51
  "vitest": "^3"
51
52
  },
52
53
  "devDependencies": {
53
- "@neondatabase/serverless": "^1.0.1",
54
- "dotenv": "^17.2.2",
55
- "drizzle-orm": "^0.44.5",
54
+ "@neondatabase/serverless": "^1.0.2",
55
+ "dotenv": "^17.2.3",
56
+ "drizzle-orm": "^0.44.6",
56
57
  "pg": "^8.16.3",
57
58
  "postgres": "^3.4.7",
58
59
  "prettier": "^3.6.2",
59
- "typescript": "^5.9.2",
60
+ "typescript": "^5.9.3",
60
61
  "vite-tsconfig-paths": "^5.1.4",
61
62
  "vitest": "^3.2.4"
62
63
  },