graphile-plugin-connection-filter-postgis 1.1.34 → 1.1.36

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 -22
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -123,9 +123,14 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
123
123
 
124
124
  ## Related Constructive Tooling
125
125
 
126
+ ### 📦 Package Management
127
+
128
+ * [pgpm](https://github.com/constructive-io/constructive/tree/main/pgpm/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
129
+
126
130
  ### 🧪 Testing
127
131
 
128
132
  * [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.
133
+ * [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.
129
134
  * [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.
130
135
  * [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.
131
136
  * [pg-query-context](https://github.com/constructive-io/constructive/tree/main/postgres/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.
@@ -139,28 +144,6 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
139
144
  * [@pgsql/types](https://www.npmjs.com/package/@pgsql/types): **📝 Type definitions** for PostgreSQL AST nodes in TypeScript.
140
145
  * [@pgsql/utils](https://www.npmjs.com/package/@pgsql/utils): **🛠️ AST utilities** for constructing and transforming PostgreSQL syntax trees.
141
146
 
142
- ### 🚀 API & Dev Tools
143
-
144
- * [@constructive-io/graphql-server](https://github.com/constructive-io/constructive/tree/main/graphql/server): **⚡ Express-based API server** powered by PostGraphile to expose a secure, scalable GraphQL API over your Postgres database.
145
- * [@constructive-io/graphql-explorer](https://github.com/constructive-io/constructive/tree/main/graphql/explorer): **🔎 Visual API explorer** with GraphiQL for browsing across all databases and schemas—useful for debugging, documentation, and API prototyping.
146
-
147
- ### 🔁 Streaming & Uploads
148
-
149
- * [etag-hash](https://github.com/constructive-io/constructive/tree/main/streaming/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
150
- * [etag-stream](https://github.com/constructive-io/constructive/tree/main/streaming/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
151
- * [uuid-hash](https://github.com/constructive-io/constructive/tree/main/streaming/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
152
- * [uuid-stream](https://github.com/constructive-io/constructive/tree/main/streaming/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
153
- * [@constructive-io/s3-streamer](https://github.com/constructive-io/constructive/tree/main/streaming/s3-streamer): **📤 Direct S3 streaming** for large files with support for metadata injection and content validation.
154
- * [@constructive-io/upload-names](https://github.com/constructive-io/constructive/tree/main/streaming/upload-names): **📂 Collision-resistant filenames** utility for structured and unique file names for uploads.
155
-
156
- ### 🧰 CLI & Codegen
157
-
158
- * [pgpm](https://github.com/constructive-io/constructive/tree/main/pgpm/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
159
- * [@constructive-io/cli](https://github.com/constructive-io/constructive/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing Constructive projects—supports database scaffolding, migrations, seeding, code generation, and automation.
160
- * [@constructive-io/graphql-codegen](https://github.com/constructive-io/constructive/tree/main/graphql/codegen): **✨ GraphQL code generation** (types, operations, SDK) from schema/endpoint introspection.
161
- * [@constructive-io/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.
162
- * [@constructive-io/graphql-query](https://github.com/constructive-io/constructive/tree/main/graphql/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
163
-
164
147
  ## Credits
165
148
 
166
149
  **🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-plugin-connection-filter-postgis",
3
- "version": "1.1.34",
3
+ "version": "1.1.36",
4
4
  "description": "PostGIS filtering options in PostGraphile",
5
5
  "author": "Matt Bretl",
6
6
  "homepage": "https://github.com/constructive-io/constructive",
@@ -44,20 +44,20 @@
44
44
  "find-and-require-package-json": "^0.8.2",
45
45
  "graphile-build": "^4.14.1",
46
46
  "graphile-build-pg": "^4.14.1",
47
- "graphile-plugin-connection-filter": "^2.4.33",
48
- "graphile-postgis": "^0.2.34"
47
+ "graphile-plugin-connection-filter": "^2.4.35",
48
+ "graphile-postgis": "^0.2.36"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "postgraphile": "^4.14.1"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/pg": "^8.16.0",
55
- "graphile-test": "^2.11.28",
55
+ "graphile-test": "^2.11.30",
56
56
  "graphql": "15.10.1",
57
57
  "makage": "^0.1.9",
58
58
  "pg": "^8.16.3",
59
- "pgsql-test": "^2.19.0",
59
+ "pgsql-test": "^2.20.0",
60
60
  "postgraphile": "^4.14.1"
61
61
  },
62
- "gitHead": "7ac931c063d48e281349b748ba2eb9c9f47ffb06"
62
+ "gitHead": "09721f934b339bd8c55d2e633abaded6d20b0f65"
63
63
  }