graphile-settings 2.6.0 → 2.6.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.
Files changed (2) hide show
  1. package/README.md +25 -0
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -126,6 +126,26 @@ app.listen(settings.port);
126
126
  * `graphile-search-plugin`
127
127
  * `./plugins/types` (custom LaunchQL plugin)
128
128
 
129
+ ## Education and Tutorials
130
+
131
+ 1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
132
+ Get started with modular databases in minutes. Install prerequisites and deploy your first module.
133
+
134
+ 2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
135
+ Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
136
+
137
+ 3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
138
+ Master the workflow for adding, organizing, and managing database changes with pgpm.
139
+
140
+ 4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
141
+ Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
142
+
143
+ 5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
144
+ TypeScript-native testing for Supabase with modern workflows.
145
+
146
+ 6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
147
+ Common issues and solutions for pgpm, PostgreSQL, and testing.
148
+
129
149
  ## Related LaunchQL Tooling
130
150
 
131
151
  ### 🧪 Testing
@@ -167,6 +187,11 @@ app.listen(settings.port);
167
187
  * [@launchql/query-builder](https://github.com/launchql/launchql/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.
168
188
  * [@launchql/query](https://github.com/launchql/launchql/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
169
189
 
190
+ ## Credits
191
+
192
+ 🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
193
+
194
+
170
195
  ## Disclaimer
171
196
 
172
197
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-settings",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "graphile settings",
6
6
  "main": "index.js",
@@ -31,10 +31,10 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@graphile-contrib/pg-many-to-many": "^1.0.2",
34
- "@launchql/env": "^2.5.0",
35
- "@launchql/s3-streamer": "^2.6.0",
36
- "@launchql/types": "^2.8.0",
37
- "@launchql/upload-names": "^2.2.4",
34
+ "@launchql/env": "^2.5.1",
35
+ "@launchql/s3-streamer": "^2.6.2",
36
+ "@launchql/types": "^2.8.1",
37
+ "@launchql/upload-names": "^2.2.5",
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,10 @@
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.4",
45
+ "graphile-query": "^2.3.6",
46
46
  "graphile-search-plugin": "^0.1.2",
47
47
  "graphile-simple-inflector": "^0.1.1",
48
+ "graphql": "15.10.1",
48
49
  "graphql-tag": "2.12.6",
49
50
  "graphql-upload": "^13.0.0",
50
51
  "lru-cache": "^11.1.0",
@@ -71,5 +72,5 @@
71
72
  "launchql",
72
73
  "graphql"
73
74
  ],
74
- "gitHead": "810621bb74659b75a5360634c9cf91bf0996ce19"
75
+ "gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
75
76
  }