graphile-settings 4.23.1 → 4.24.0
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.
|
@@ -17,7 +17,7 @@ import type { GraphileConfig } from 'graphile-config';
|
|
|
17
17
|
* - PostGIS support (geometry/geography types, GeoJSON scalar — auto-detects PostGIS extension)
|
|
18
18
|
* - PostGIS connection filter operators (spatial filtering on geometry/geography columns)
|
|
19
19
|
* - Upload plugin (file upload to S3/MinIO for image, upload, attachment domain columns)
|
|
20
|
-
* - Presigned URL plugin (requestUploadUrl
|
|
20
|
+
* - Presigned URL plugin (requestUploadUrl mutation + downloadUrl computed field)
|
|
21
21
|
* - Bucket provisioner plugin (auto-provisions S3 buckets on @storageBuckets table mutations,
|
|
22
22
|
* CORS management, provisionBucket mutation for manual/retry)
|
|
23
23
|
* - SQL expression validator (validates @sqlExpression columns in mutations)
|
|
@@ -27,7 +27,7 @@ import { getBucketProvisionerConnection } from '../bucket-provisioner-resolver';
|
|
|
27
27
|
* - PostGIS support (geometry/geography types, GeoJSON scalar — auto-detects PostGIS extension)
|
|
28
28
|
* - PostGIS connection filter operators (spatial filtering on geometry/geography columns)
|
|
29
29
|
* - Upload plugin (file upload to S3/MinIO for image, upload, attachment domain columns)
|
|
30
|
-
* - Presigned URL plugin (requestUploadUrl
|
|
30
|
+
* - Presigned URL plugin (requestUploadUrl mutation + downloadUrl computed field)
|
|
31
31
|
* - Bucket provisioner plugin (auto-provisions S3 buckets on @storageBuckets table mutations,
|
|
32
32
|
* CORS management, provisionBucket mutation for manual/retry)
|
|
33
33
|
* - SQL expression validator (validates @sqlExpression columns in mutations)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-settings",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.24.0",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "graphile settings",
|
|
6
6
|
"main": "index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@aws-sdk/client-s3": "^3.1009.0",
|
|
33
|
-
"@constructive-io/bucket-provisioner": "^0.
|
|
33
|
+
"@constructive-io/bucket-provisioner": "^0.6.0",
|
|
34
34
|
"@constructive-io/graphql-env": "^3.6.1",
|
|
35
35
|
"@constructive-io/graphql-types": "^3.5.1",
|
|
36
36
|
"@constructive-io/s3-streamer": "^2.19.1",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"express": "^5.2.1",
|
|
47
47
|
"grafast": "1.0.0",
|
|
48
48
|
"grafserv": "1.0.0",
|
|
49
|
-
"graphile-bucket-provisioner-plugin": "0.
|
|
49
|
+
"graphile-bucket-provisioner-plugin": "0.6.0",
|
|
50
50
|
"graphile-build": "5.0.0",
|
|
51
51
|
"graphile-build-pg": "5.0.0",
|
|
52
52
|
"graphile-config": "1.0.0",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"constructive",
|
|
85
85
|
"graphql"
|
|
86
86
|
],
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "f1ee6fb500250f07d9aa2d6ab1e0bef1da8076bc"
|
|
88
88
|
}
|
|
@@ -17,7 +17,7 @@ import type { GraphileConfig } from 'graphile-config';
|
|
|
17
17
|
* - PostGIS support (geometry/geography types, GeoJSON scalar — auto-detects PostGIS extension)
|
|
18
18
|
* - PostGIS connection filter operators (spatial filtering on geometry/geography columns)
|
|
19
19
|
* - Upload plugin (file upload to S3/MinIO for image, upload, attachment domain columns)
|
|
20
|
-
* - Presigned URL plugin (requestUploadUrl
|
|
20
|
+
* - Presigned URL plugin (requestUploadUrl mutation + downloadUrl computed field)
|
|
21
21
|
* - Bucket provisioner plugin (auto-provisions S3 buckets on @storageBuckets table mutations,
|
|
22
22
|
* CORS management, provisionBucket mutation for manual/retry)
|
|
23
23
|
* - SQL expression validator (validates @sqlExpression columns in mutations)
|
|
@@ -30,7 +30,7 @@ const bucket_provisioner_resolver_1 = require("../bucket-provisioner-resolver");
|
|
|
30
30
|
* - PostGIS support (geometry/geography types, GeoJSON scalar — auto-detects PostGIS extension)
|
|
31
31
|
* - PostGIS connection filter operators (spatial filtering on geometry/geography columns)
|
|
32
32
|
* - Upload plugin (file upload to S3/MinIO for image, upload, attachment domain columns)
|
|
33
|
-
* - Presigned URL plugin (requestUploadUrl
|
|
33
|
+
* - Presigned URL plugin (requestUploadUrl mutation + downloadUrl computed field)
|
|
34
34
|
* - Bucket provisioner plugin (auto-provisions S3 buckets on @storageBuckets table mutations,
|
|
35
35
|
* CORS management, provisionBucket mutation for manual/retry)
|
|
36
36
|
* - SQL expression validator (validates @sqlExpression columns in mutations)
|