supabase-test 0.0.8 → 0.0.10

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 +1 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -515,6 +515,7 @@ const { conn, db, teardown } = await getConnections({
515
515
  ### 🧪 Testing
516
516
 
517
517
  * [launchql/pgsql-test](https://github.com/launchql/launchql/tree/main/packages/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
518
+ * [launchql/supabase-test](https://github.com/launchql/launchql/tree/main/packages/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
518
519
  * [launchql/graphile-test](https://github.com/launchql/launchql/tree/main/packages/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
519
520
  * [launchql/pg-query-context](https://github.com/launchql/launchql/tree/main/packages/pg-query-context): **🔒 Session context injection** to add session-local context (e.g., `SET LOCAL`) into queries—ideal for setting `role`, `jwt.claims`, and other session settings.
520
521
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supabase-test",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "author": "Interweb <developers@interweb.io>",
5
5
  "description": "supabase-test offers isolated, role-aware, and rollback-friendly PostgreSQL environments for integration tests with Supabase defaults baked in",
6
6
  "main": "index.js",
@@ -52,9 +52,9 @@
52
52
  "test:watch": "jest --watch"
53
53
  },
54
54
  "dependencies": {
55
- "@launchql/types": "^2.6.1",
55
+ "@launchql/types": "^2.6.2",
56
56
  "pg-env": "^1.1.0",
57
- "pgsql-test": "^2.11.9"
57
+ "pgsql-test": "^2.11.11"
58
58
  },
59
- "gitHead": "7aeb70c79619545d937597b64af80962803f6901"
59
+ "gitHead": "4f242233161fd1101d4de871ee2f1dbb7c6b9cff"
60
60
  }