Skip to content

Commit 7c440e3

Browse files
committed
chore(release): publish
- @launchql/cli@4.10.0 - @launchql/core@2.10.0 - @launchql/env@2.3.0 - @launchql/explorer@2.4.0 - gql-ast@2.3.0 - graphile-cache@1.2.0 - graphile-query@2.3.0 - graphile-settings@2.4.0 - graphile-test@2.4.0 - introspectron@2.10.0 - @launchql/codegen@2.13.0 - pg-cache@1.2.0 - pg-codegen@2.10.0 - pgsql-test@2.9.0 - @launchql/query@2.3.0 - @launchql/react@2.10.0 - @launchql/s3-streamer@2.4.0 - @launchql/server-utils@2.3.0 - @launchql/server@2.4.0 - @launchql/types@2.4.0
1 parent 23ee195 commit 7c440e3

40 files changed

Lines changed: 260 additions & 76 deletions

packages/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.10.0](https://github.com/launchql/launchql/compare/@launchql/cli@4.9.0...@launchql/cli@4.10.0) (2025-09-17)
7+
8+
9+
### Features
10+
11+
* add CLI command for creating database changes ([a44b643](https://github.com/launchql/launchql/commit/a44b643dbba2b93f14aab3828d1c0cc95ee34f6c))
12+
13+
14+
15+
16+
617
# [4.9.0](https://github.com/launchql/launchql/compare/@launchql/cli@4.8.0...@launchql/cli@4.9.0) (2025-09-04)
718

819
**Note:** Version bump only for package @launchql/cli

packages/cli/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchql/cli",
3-
"version": "4.9.0",
3+
"version": "4.10.0",
44
"author": "Dan Lynch <pyramation@gmail.com>",
55
"description": "LaunchQL CLI",
66
"main": "index.js",
@@ -41,18 +41,18 @@
4141
"ts-node": "^10.9.2"
4242
},
4343
"dependencies": {
44-
"@launchql/core": "^2.9.0",
45-
"@launchql/env": "^2.2.1",
46-
"@launchql/explorer": "^2.3.1",
47-
"@launchql/server": "^2.3.2",
48-
"@launchql/server-utils": "^2.2.1",
44+
"@launchql/core": "^2.10.0",
45+
"@launchql/env": "^2.3.0",
46+
"@launchql/explorer": "^2.4.0",
47+
"@launchql/server": "^2.4.0",
48+
"@launchql/server-utils": "^2.3.0",
4949
"@launchql/templatizer": "^2.3.0",
50-
"@launchql/types": "^2.3.0",
50+
"@launchql/types": "^2.4.0",
5151
"chalk": "^4.1.0",
5252
"inquirerer": "^2.0.8",
5353
"js-yaml": "^4.1.0",
5454
"minimist": "^1.2.8",
55-
"pg-cache": "^1.1.1",
55+
"pg-cache": "^1.2.0",
5656
"pg-env": "^1.1.0",
5757
"shelljs": "^0.9.2"
5858
},

packages/core/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.10.0](https://github.com/launchql/launchql/compare/@launchql/core@2.9.0...@launchql/core@2.10.0) (2025-09-17)
7+
8+
9+
### Bug Fixes
10+
11+
* add explicit TypeScript type annotations to mock functions in local-tracking-guard test ([874a53f](https://github.com/launchql/launchql/commit/874a53f2d783b86922486ad7b6a0c636b58183da))
12+
* resolve TypeScript compilation errors in local-tracking-guard test ([0e1fa0b](https://github.com/launchql/launchql/commit/0e1fa0b94bf463881f8f1bb3cab249d54b142517))
13+
* use proper mocking patterns instead of real database connections in local-tracking-guard test ([cc7226f](https://github.com/launchql/launchql/commit/cc7226f8d5df1ea21498f01aaa8ef6d3f0be6c1a))
14+
* use proper pg-env patterns with MigrateTestFixture instead of mocking ([7927856](https://github.com/launchql/launchql/commit/792785637462d148a49cb73ecfd19b41824ec7cd))
15+
16+
17+
### Features
18+
19+
* add CLI command for creating database changes ([a44b643](https://github.com/launchql/launchql/commit/a44b643dbba2b93f14aab3828d1c0cc95ee34f6c))
20+
21+
22+
23+
24+
625
# [2.9.0](https://github.com/launchql/launchql/compare/@launchql/core@2.8.0...@launchql/core@2.9.0) (2025-09-04)
726

827
**Note:** Version bump only for package @launchql/core

packages/core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchql/core",
3-
"version": "2.9.0",
3+
"version": "2.10.0",
44
"author": "Dan Lynch <pyramation@gmail.com>",
55
"description": "LaunchQL Package and Migration Tools",
66
"main": "index.js",
@@ -44,17 +44,17 @@
4444
"@types/rimraf": "^4.0.5"
4545
},
4646
"dependencies": {
47-
"@launchql/env": "^2.2.1",
48-
"@launchql/server-utils": "^2.2.1",
47+
"@launchql/env": "^2.3.0",
48+
"@launchql/server-utils": "^2.3.0",
4949
"@launchql/templatizer": "^2.3.0",
50-
"@launchql/types": "^2.3.0",
50+
"@launchql/types": "^2.4.0",
5151
"@pgsql/types": "^17.6.1",
5252
"case": "^1.6.3",
5353
"chalk": "^4.1.0",
5454
"csv-to-pg": "^2.0.10",
5555
"glob": "^11.0.2",
5656
"parse-package-name": "^1.0.0",
57-
"pg-cache": "^1.1.1",
57+
"pg-cache": "^1.2.0",
5858
"pg-env": "^1.1.0",
5959
"pgsql-deparser": "^17.11.1",
6060
"pgsql-parser": "^17.8.2",

packages/env/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.3.0](https://github.com/launchql/launchql/compare/@launchql/env@2.2.1...@launchql/env@2.3.0) (2025-09-17)
7+
8+
**Note:** Version bump only for package @launchql/env
9+
10+
11+
12+
13+
614
## [2.2.1](https://github.com/launchql/launchql/compare/@launchql/env@2.2.0...@launchql/env@2.2.1) (2025-08-08)
715

816
**Note:** Version bump only for package @launchql/env

packages/env/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchql/env",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"author": "Dan Lynch <Dan Lynch>",
55
"description": "LaunchQL environment management",
66
"main": "index.js",
@@ -30,7 +30,7 @@
3030
"test:watch": "jest --watch"
3131
},
3232
"dependencies": {
33-
"@launchql/types": "^2.3.0",
33+
"@launchql/types": "^2.4.0",
3434
"deepmerge": "^4.3.1"
3535
},
3636
"keywords": [

packages/explorer/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.4.0](https://github.com/launchql/launchql/compare/@launchql/explorer@2.3.1...@launchql/explorer@2.4.0) (2025-09-17)
7+
8+
9+
### Bug Fixes
10+
11+
* **server:** pass through env in the run script and update graphql-upload usage ([448c3c0](https://github.com/launchql/launchql/commit/448c3c008de75ed5af4c9c7aee70d62d1e33ed6c))
12+
13+
14+
15+
16+
617
## [2.3.1](https://github.com/launchql/launchql/compare/@launchql/explorer@2.3.0...@launchql/explorer@2.3.1) (2025-08-08)
718

819

packages/explorer/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchql/explorer",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"author": "Dan Lynch <pyramation@gmail.com>",
55
"description": "LaunchQL Explorer",
66
"main": "index.js",
@@ -35,18 +35,18 @@
3535
"test:watch": "jest --watch"
3636
},
3737
"dependencies": {
38-
"@launchql/env": "^2.2.1",
39-
"@launchql/s3-streamer": "^2.3.1",
40-
"@launchql/server-utils": "^2.2.1",
41-
"@launchql/types": "^2.3.0",
38+
"@launchql/env": "^2.3.0",
39+
"@launchql/s3-streamer": "^2.4.0",
40+
"@launchql/server-utils": "^2.3.0",
41+
"@launchql/types": "^2.4.0",
4242
"@launchql/upload-names": "^2.2.0",
4343
"@launchql/url-domains": "^2.2.0",
4444
"express": "^5.1.0",
4545
"graphile-build": "^4.14.1",
46-
"graphile-cache": "^1.1.1",
47-
"graphile-settings": "^2.3.1",
46+
"graphile-cache": "^1.2.0",
47+
"graphile-settings": "^2.4.0",
4848
"graphql-upload": "^13.0.0",
49-
"pg-cache": "^1.1.1",
49+
"pg-cache": "^1.2.0",
5050
"postgraphile": "^4.14.1"
5151
},
5252
"devDependencies": {
@@ -66,4 +66,4 @@
6666
"resolutions": {
6767
"graphql": "15.10.1"
6868
}
69-
}
69+
}

packages/gql-ast/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.3.0](https://github.com/launchql/launchql/compare/gql-ast@2.2.0...gql-ast@2.3.0) (2025-09-17)
7+
8+
**Note:** Version bump only for package gql-ast
9+
10+
11+
12+
13+
614
# [2.2.0](https://github.com/launchql/launchql/compare/gql-ast@2.1.5...gql-ast@2.2.0) (2025-07-31)
715

816
**Note:** Version bump only for package gql-ast

packages/gql-ast/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gql-ast",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"author": "Dan Lynch <pyramation@gmail.com>",
55
"description": "GraphQL ASTs",
66
"main": "index.js",

0 commit comments

Comments
 (0)