stream-to-etag 2.24.0 → 2.26.0

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
@@ -64,6 +64,7 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
64
64
  ### 🧪 Testing
65
65
 
66
66
  * [pgsql-test](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
67
+ * [pglite-test](https://github.com/constructive-io/constructive/tree/main/postgres/pglite-test): **🪶 Drop-in pgsql-test replacement backed by PGlite** — in-process Postgres, no server required, instance-per-suite isolation.
67
68
  * [pgsql-seed](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-seed): **🌱 PostgreSQL seeding utilities** for CSV, JSON, SQL data loading, and pgpm deployment.
68
69
  * [supabase-test](https://github.com/constructive-io/constructive/tree/main/postgres/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
69
70
  * [graphile-test](https://github.com/constructive-io/constructive/tree/main/graphile/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stream-to-etag",
3
- "version": "2.24.0",
3
+ "version": "2.26.0",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Calculates Etag/S3 MD5 sum given a readable stream. Uses the same algorithm that S3 uses to calculate the ETag.",
6
6
  "main": "index.js",
@@ -35,11 +35,11 @@
35
35
  "etag"
36
36
  ],
37
37
  "dependencies": {
38
- "etag-hash": "^2.24.0"
38
+ "etag-hash": "^2.26.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "glob": "^13.0.6",
42
42
  "makage": "^0.3.0"
43
43
  },
44
- "gitHead": "73f55ad24d9a92e7ef1e268526b31bfb7bb12b28"
44
+ "gitHead": "3ba26a9dfa342feff5a2216aafea962132d51621"
45
45
  }