stream-to-etag 2.1.1 โ†’ 2.1.2

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
@@ -45,6 +45,7 @@ ETags compatible with s3, thanks to the author of [this post](https://stackoverf
45
45
  * [@pgsql/types](https://github.com/launchql/pgsql-parser/tree/main/packages/types): **๐Ÿ“ Type definitions** for PostgreSQL AST nodes in TypeScript.
46
46
  * [@pgsql/utils](https://github.com/launchql/pgsql-parser/tree/main/packages/utils): **๐Ÿ› ๏ธ AST utilities** for constructing and transforming PostgreSQL syntax trees.
47
47
  * [launchql/pg-ast](https://github.com/launchql/launchql/tree/main/packages/pg-ast): **๐Ÿ” Low-level AST tools** and transformations for Postgres query structures.
48
+ * [launchql/pg-proto-parser](https://github.com/launchql/pg-proto-parser): **๐Ÿ“ฆ Protobuf parser** for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
48
49
  * [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.
49
50
 
50
51
  ### ๐Ÿš€ API & Dev Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stream-to-etag",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
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",
@@ -34,7 +34,7 @@
34
34
  "etag"
35
35
  ],
36
36
  "dependencies": {
37
- "etag-hash": "^2.1.1"
37
+ "etag-hash": "^2.1.2"
38
38
  },
39
- "gitHead": "c937db2b157c57e4ef57f448704cbc47030d3afe"
39
+ "gitHead": "213912ee7e39ca3d755029b8cd5e3b548324c13f"
40
40
  }