uuid-stream 2.2.0 → 2.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/README.md +1 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -51,6 +51,7 @@ Just like [node-uuid](https://github.com/kelektiv/node-uuid) for uuid v5, but re
51
51
  ### 🧪 Testing
52
52
 
53
53
  * [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.
54
+ * [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.
54
55
  * [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.
55
56
  * [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.
56
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uuid-stream",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "A Transform stream that generates RFC-compliant UUID v5.",
6
6
  "main": "index.js",
@@ -37,7 +37,7 @@
37
37
  "uuid"
38
38
  ],
39
39
  "dependencies": {
40
- "uuid-hash": "^2.2.0"
40
+ "uuid-hash": "^2.2.1"
41
41
  },
42
- "gitHead": "cbf678ed3d22055b7d972468ca7f822b2662e7d0"
42
+ "gitHead": "870ab4d6b6b501ac6bdda660d44a0581e2145ad4"
43
43
  }