etag-stream 2.3.0 → 2.3.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
@@ -53,6 +53,7 @@ ETags compatible with s3, thanks to the author of [this post](https://stackoverf
53
53
  ### 🧪 Testing
54
54
 
55
55
  * [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.
56
+ * [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.
56
57
  * [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.
57
58
  * [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.
58
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "etag-stream",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "A Transform stream that calculates Etag/S3 MD5 sum. Uses the same algorithm that S3 uses to calculate the ETag.",
6
6
  "main": "index.js",
@@ -35,7 +35,7 @@
35
35
  "stream"
36
36
  ],
37
37
  "dependencies": {
38
- "etag-hash": "^2.3.0"
38
+ "etag-hash": "^2.3.1"
39
39
  },
40
- "gitHead": "cbf678ed3d22055b7d972468ca7f822b2662e7d0"
40
+ "gitHead": "870ab4d6b6b501ac6bdda660d44a0581e2145ad4"
41
41
  }