graphile-test 2.1.1 โ 2.1.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.
- package/README.md +1 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -96,6 +96,7 @@ Once set, these will be automatically picked up by `graphile-test` when establis
|
|
|
96
96
|
* [@pgsql/types](https://github.com/launchql/pgsql-parser/tree/main/packages/types): **๐ Type definitions** for PostgreSQL AST nodes in TypeScript.
|
|
97
97
|
* [@pgsql/utils](https://github.com/launchql/pgsql-parser/tree/main/packages/utils): **๐ ๏ธ AST utilities** for constructing and transforming PostgreSQL syntax trees.
|
|
98
98
|
* [launchql/pg-ast](https://github.com/launchql/launchql/tree/main/packages/pg-ast): **๐ Low-level AST tools** and transformations for Postgres query structures.
|
|
99
|
+
* [launchql/pg-proto-parser](https://github.com/launchql/pg-proto-parser): **๐ฆ Protobuf parser** for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
|
|
99
100
|
* [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.
|
|
100
101
|
|
|
101
102
|
### ๐ API & Dev Tools
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-test",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostGraphile Testing",
|
|
6
6
|
"main": "index.js",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"graphql-tag": "2.12.6"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@launchql/graphile-settings": "^2.1.
|
|
38
|
-
"@launchql/types": "^2.1.
|
|
37
|
+
"@launchql/graphile-settings": "^2.1.2",
|
|
38
|
+
"@launchql/types": "^2.1.2",
|
|
39
39
|
"graphql": "^15.5.2",
|
|
40
40
|
"mock-req": "^0.2.0",
|
|
41
41
|
"pg": "^8.16.0",
|
|
42
42
|
"postgraphile": "^4.14.1"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "213912ee7e39ca3d755029b8cd5e3b548324c13f"
|
|
45
45
|
}
|