graphile-settings 2.9.1 → 2.9.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 +5 -5
  2. package/package.json +16 -16
package/README.md CHANGED
@@ -180,18 +180,18 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
180
180
 
181
181
  ### 🔁 Streaming & Uploads
182
182
 
183
+ * [etag-hash](https://github.com/constructive-io/constructive/tree/main/packages/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
184
+ * [etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
185
+ * [uuid-hash](https://github.com/constructive-io/constructive/tree/main/packages/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
186
+ * [uuid-stream](https://github.com/constructive-io/constructive/tree/main/packages/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
183
187
  * [launchql/s3-streamer](https://github.com/constructive-io/constructive/tree/main/packages/s3-streamer): **📤 Direct S3 streaming** for large files with support for metadata injection and content validation.
184
- * [launchql/etag-hash](https://github.com/constructive-io/constructive/tree/main/packages/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
185
- * [launchql/etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
186
- * [launchql/uuid-hash](https://github.com/constructive-io/constructive/tree/main/packages/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
187
- * [launchql/uuid-stream](https://github.com/constructive-io/constructive/tree/main/packages/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
188
188
  * [launchql/upload-names](https://github.com/constructive-io/constructive/tree/main/packages/upload-names): **📂 Collision-resistant filenames** utility for structured and unique file names for uploads.
189
189
 
190
190
  ### 🧰 CLI & Codegen
191
191
 
192
192
  * [pgpm](https://github.com/constructive-io/constructive/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
193
193
  * [@launchql/cli](https://github.com/constructive-io/constructive/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing LaunchQL projects—supports database scaffolding, migrations, seeding, code generation, and automation.
194
- * [constructive-io/constructive-gen](https://github.com/constructive-io/constructive/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
194
+ * [launchql-gen](https://github.com/constructive-io/constructive/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
195
195
  * [@launchql/query-builder](https://github.com/constructive-io/constructive/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.
196
196
  * [@launchql/query](https://github.com/constructive-io/constructive/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
197
197
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-settings",
3
- "version": "2.9.1",
3
+ "version": "2.9.2",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "graphile settings",
6
6
  "main": "index.js",
@@ -30,23 +30,23 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@graphile-contrib/pg-many-to-many": "^1.0.2",
33
- "@launchql/env": "^2.8.0",
34
- "@launchql/types": "^2.12.0",
35
- "@pgpmjs/types": "^2.12.0",
33
+ "@launchql/env": "^2.8.1",
34
+ "@launchql/types": "^2.12.1",
35
+ "@pgpmjs/types": "^2.12.1",
36
36
  "cors": "^2.8.5",
37
37
  "express": "^5.1.0",
38
38
  "graphile-build": "^4.14.1",
39
- "graphile-i18n": "^0.2.6",
40
- "graphile-meta-schema": "^0.3.6",
41
- "graphile-pg-type-mappings": "^0.3.6",
42
- "graphile-plugin-connection-filter": "^2.4.6",
43
- "graphile-plugin-connection-filter-postgis": "^1.1.6",
44
- "graphile-plugin-fulltext-filter": "^2.1.6",
45
- "graphile-postgis": "^0.2.6",
46
- "graphile-query": "^2.4.2",
47
- "graphile-search-plugin": "^0.2.6",
48
- "graphile-simple-inflector": "^0.2.6",
49
- "graphile-upload-plugin": "^0.5.1",
39
+ "graphile-i18n": "^0.2.7",
40
+ "graphile-meta-schema": "^0.3.7",
41
+ "graphile-pg-type-mappings": "^0.3.7",
42
+ "graphile-plugin-connection-filter": "^2.4.7",
43
+ "graphile-plugin-connection-filter-postgis": "^1.1.7",
44
+ "graphile-plugin-fulltext-filter": "^2.1.7",
45
+ "graphile-postgis": "^0.2.7",
46
+ "graphile-query": "^2.4.3",
47
+ "graphile-search-plugin": "^0.2.7",
48
+ "graphile-simple-inflector": "^0.2.7",
49
+ "graphile-upload-plugin": "^0.5.2",
50
50
  "graphql": "15.10.1",
51
51
  "graphql-tag": "2.12.6",
52
52
  "graphql-upload": "^13.0.0",
@@ -71,5 +71,5 @@
71
71
  "launchql",
72
72
  "graphql"
73
73
  ],
74
- "gitHead": "0f810b087435df60801bfa63d4f780e95acb6d02"
74
+ "gitHead": "52828c38b144fdc02b6a9a0c8b0ff795d1752d53"
75
75
  }