graphile-settings 2.5.2 → 2.5.4
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.
- package/README.md +1 -0
- package/package.json +10 -13
package/README.md
CHANGED
|
@@ -131,6 +131,7 @@ app.listen(settings.port);
|
|
|
131
131
|
### 🧪 Testing
|
|
132
132
|
|
|
133
133
|
* [launchql/pgsql-test](https://github.com/launchql/launchql/tree/main/packages/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
|
|
134
|
+
* [launchql/supabase-test](https://github.com/launchql/launchql/tree/main/packages/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
|
|
134
135
|
* [launchql/graphile-test](https://github.com/launchql/launchql/tree/main/packages/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
|
|
135
136
|
* [launchql/pg-query-context](https://github.com/launchql/launchql/tree/main/packages/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.
|
|
136
137
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-settings",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "graphile settings",
|
|
6
6
|
"main": "index.js",
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
|
|
24
24
|
"clean": "rimraf dist/**",
|
|
25
25
|
"prepare": "npm run build",
|
|
26
|
-
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
|
|
27
|
-
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
|
|
26
|
+
"build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
|
|
27
|
+
"build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
|
|
28
28
|
"lint": "eslint . --fix",
|
|
29
29
|
"test": "jest",
|
|
30
30
|
"test:watch": "jest --watch"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@graphile-contrib/pg-many-to-many": "^1.0.2",
|
|
34
|
-
"@launchql/env": "^2.4.
|
|
35
|
-
"@launchql/s3-streamer": "^2.5.
|
|
36
|
-
"@launchql/types": "^2.6.
|
|
37
|
-
"@launchql/upload-names": "^2.2.
|
|
34
|
+
"@launchql/env": "^2.4.4",
|
|
35
|
+
"@launchql/s3-streamer": "^2.5.4",
|
|
36
|
+
"@launchql/types": "^2.6.3",
|
|
37
|
+
"@launchql/upload-names": "^2.2.2",
|
|
38
38
|
"@pyramation/postgis": "^0.1.1",
|
|
39
39
|
"@pyramation/postgraphile-plugin-fulltext-filter": "^2.0.0",
|
|
40
40
|
"cors": "^2.8.5",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"graphile-build": "^4.14.1",
|
|
43
43
|
"graphile-i18n": "^0.0.3",
|
|
44
44
|
"graphile-meta-schema": "^0.2.5",
|
|
45
|
-
"graphile-query": "^2.3.
|
|
45
|
+
"graphile-query": "^2.3.2",
|
|
46
46
|
"graphile-search-plugin": "^0.1.2",
|
|
47
|
-
"graphile-settings": "
|
|
47
|
+
"graphile-settings": "workspace:^",
|
|
48
48
|
"graphile-simple-inflector": "^0.1.1",
|
|
49
49
|
"graphql-tag": "2.12.6",
|
|
50
50
|
"graphql-upload": "^13.0.0",
|
|
@@ -65,9 +65,6 @@
|
|
|
65
65
|
"nodemon": "^3.1.10",
|
|
66
66
|
"ts-node": "^10.9.2"
|
|
67
67
|
},
|
|
68
|
-
"resolutions": {
|
|
69
|
-
"graphql": "15.10.1"
|
|
70
|
-
},
|
|
71
68
|
"keywords": [
|
|
72
69
|
"graphile",
|
|
73
70
|
"settings",
|
|
@@ -75,5 +72,5 @@
|
|
|
75
72
|
"launchql",
|
|
76
73
|
"graphql"
|
|
77
74
|
],
|
|
78
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "03ef7e72674753bcb7d826d60cc8a78818ca6f6d"
|
|
79
76
|
}
|