@agentuity/postgres 3.0.0-beta.3 → 3.0.0-beta.5

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @agentuity/postgres
2
2
 
3
- > **⚠️ DEPRECATED** — Use `drizzle-orm` and `@neondatabase/serverless` directly with your `DATABASE_URL`.
3
+ > **⚠️ DEPRECATED** — Use `pg` or `drizzle-orm/node-postgres` directly against your `DATABASE_URL`.
4
4
  >
5
5
  > This package is no longer recommended for new projects.
6
6
 
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @agentuity/postgres - DEPRECATED
3
3
  *
4
- * Use drizzle-orm and @neondatabase/serverless directly with your DATABASE_URL.
4
+ * Use pg or drizzle-orm/node-postgres directly against your DATABASE_URL.
5
5
  * This package is no longer recommended for new projects.
6
6
  *
7
7
  * ~~Resilient PostgreSQL client with automatic reconnection~~
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @agentuity/postgres - DEPRECATED
3
3
  *
4
- * Use drizzle-orm and @neondatabase/serverless directly with your DATABASE_URL.
4
+ * Use pg or drizzle-orm/node-postgres directly against your DATABASE_URL.
5
5
  * This package is no longer recommended for new projects.
6
6
  *
7
7
  * ~~Resilient PostgreSQL client with automatic reconnection~~
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agentuity/postgres",
3
- "deprecated": "Use drizzle-orm and @neondatabase/serverless directly with your DATABASE_URL.",
4
- "version": "3.0.0-beta.3",
3
+ "deprecated": "Use pg or drizzle-orm/node-postgres directly against your DATABASE_URL.",
4
+ "version": "3.0.0-beta.5",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Agentuity employees and contributors",
7
7
  "type": "module",
@@ -32,15 +32,15 @@
32
32
  "prepublishOnly": "bun run clean && bun run build"
33
33
  },
34
34
  "dependencies": {
35
- "@agentuity/core": "3.0.0-beta.3",
35
+ "@agentuity/core": "3.0.0-beta.5",
36
36
  "pg": "^8.13.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@agentuity/test-utils": "3.0.0-beta.3",
39
+ "@agentuity/test-utils": "3.0.0-beta.5",
40
40
  "@types/bun": "latest",
41
41
  "@types/pg": "^8.11.14",
42
42
  "bun-types": "latest",
43
- "kysely": "^0.27.6",
43
+ "kysely": "^0.29.0",
44
44
  "typescript": "^5.9.0"
45
45
  },
46
46
  "publishConfig": {
package/src/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @agentuity/postgres - DEPRECATED
3
3
  *
4
- * Use drizzle-orm and @neondatabase/serverless directly with your DATABASE_URL.
4
+ * Use pg or drizzle-orm/node-postgres directly against your DATABASE_URL.
5
5
  * This package is no longer recommended for new projects.
6
6
  *
7
7
  * ~~Resilient PostgreSQL client with automatic reconnection~~