graphile-search-plugin 0.2.6 → 0.2.8

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 +9 -8
package/README.md CHANGED
@@ -111,18 +111,18 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
111
111
 
112
112
  ### 🔁 Streaming & Uploads
113
113
 
114
+ * [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.
115
+ * [etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
116
+ * [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.
117
+ * [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.
114
118
  * [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.
115
- * [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.
116
- * [launchql/etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
117
- * [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.
118
- * [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.
119
119
  * [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.
120
120
 
121
121
  ### 🧰 CLI & Codegen
122
122
 
123
123
  * [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.
124
124
  * [@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.
125
- * [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.
125
+ * [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.
126
126
  * [@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.
127
127
  * [@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.
128
128
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-search-plugin",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "generate search conditions for your tsvector columns",
5
5
  "author": "Constructive <developers@constructive.io>",
6
6
  "homepage": "https://github.com/constructive-io/constructive",
@@ -29,7 +29,8 @@
29
29
  "keywords": [
30
30
  "postgraphile",
31
31
  "graphile",
32
- "launchql",
32
+ "constructive",
33
+ "pgpm",
33
34
  "plugin",
34
35
  "postgres",
35
36
  "graphql"
@@ -38,16 +39,16 @@
38
39
  "url": "https://github.com/constructive-io/constructive/issues"
39
40
  },
40
41
  "devDependencies": {
41
- "graphile-plugin-connection-filter": "^2.4.6",
42
- "graphile-plugin-fulltext-filter": "^2.1.6",
43
- "graphile-simple-inflector": "^0.2.6",
44
- "graphile-test": "^2.11.1",
42
+ "graphile-plugin-connection-filter": "^2.4.8",
43
+ "graphile-plugin-fulltext-filter": "^2.1.8",
44
+ "graphile-simple-inflector": "^0.2.8",
45
+ "graphile-test": "^2.11.3",
45
46
  "makage": "^0.1.8",
46
- "pgsql-test": "^2.16.2"
47
+ "pgsql-test": "^2.17.0"
47
48
  },
48
49
  "dependencies": {
49
50
  "graphile-build": "^4.14.1",
50
51
  "graphql-tag": "2.12.6"
51
52
  },
52
- "gitHead": "0f810b087435df60801bfa63d4f780e95acb6d02"
53
+ "gitHead": "4326e2092d0c57901e898560974d502d626c42cb"
53
54
  }