etag-stream 2.3.4 → 2.3.6

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 +25 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -48,6 +48,26 @@ createReadStream(local).pipe(stream);
48
48
 
49
49
  ETags compatible with s3, thanks to the author of [this post](https://stackoverflow.com/questions/12186993/what-is-the-algorithm-to-compute-the-amazon-s3-etag-for-a-file-larger-than-5gb#answer-19896823) for the breakdown of the algorithm.
50
50
 
51
+ ## Education and Tutorials
52
+
53
+ 1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
54
+ Get started with modular databases in minutes. Install prerequisites and deploy your first module.
55
+
56
+ 2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
57
+ Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
58
+
59
+ 3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
60
+ Master the workflow for adding, organizing, and managing database changes with pgpm.
61
+
62
+ 4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
63
+ Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
64
+
65
+ 5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
66
+ TypeScript-native testing for Supabase with modern workflows.
67
+
68
+ 6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
69
+ Common issues and solutions for pgpm, PostgreSQL, and testing.
70
+
51
71
  ## Related LaunchQL Tooling
52
72
 
53
73
  ### 🧪 Testing
@@ -89,6 +109,11 @@ ETags compatible with s3, thanks to the author of [this post](https://stackoverf
89
109
  * [@launchql/query-builder](https://github.com/launchql/launchql/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
90
110
  * [@launchql/query](https://github.com/launchql/launchql/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
91
111
 
112
+ ## Credits
113
+
114
+ 🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
115
+
116
+
92
117
  ## Disclaimer
93
118
 
94
119
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "etag-stream",
3
- "version": "2.3.4",
3
+ "version": "2.3.6",
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.4"
38
+ "etag-hash": "^2.3.6"
39
39
  },
40
- "gitHead": "a32146b0033c550907a03faa374e7101f8f15b02"
40
+ "gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
41
41
  }