etag-stream 2.2.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.
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/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import { Transform } from 'stream';
2
1
  import { createHash } from 'etag-hash';
2
+ import { Transform } from 'stream';
3
3
  class ETagStream extends Transform {
4
4
  mode;
5
5
  hash;
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const stream_1 = require("stream");
4
3
  const etag_hash_1 = require("etag-hash");
4
+ const stream_1 = require("stream");
5
5
  class ETagStream extends stream_1.Transform {
6
6
  mode;
7
7
  hash;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "etag-stream",
3
- "version": "2.2.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.2.0"
38
+ "etag-hash": "^2.3.1"
39
39
  },
40
- "gitHead": "d3f4befdbf70969bef95d742dbdbe131a064919c"
40
+ "gitHead": "870ab4d6b6b501ac6bdda660d44a0581e2145ad4"
41
41
  }