forked from wundergraph/cosmo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
402 changed files
with
91,839 additions
and
14,222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,9 @@ jobs: | |
separator: "@" | ||
msg: "${{ github.event.release.tag_name }}" | ||
|
||
- name: Set BUILD_TIME env | ||
run: echo BUILD_TIME=$(date -u +'%Y-%m-%dT%H:%M:%SZ') >> ${GITHUB_ENV} | ||
|
||
- uses: wangyoucao577/go-release-action@v1 | ||
name: Build and attach binaries to GitHub Release | ||
with: | ||
|
@@ -51,7 +54,7 @@ jobs: | |
pre_command: export CGO_ENABLED=0 | ||
build_flags: -trimpath | ||
# -w = omits the DWARF symbol table, effectively removing debugging information. Reduces binary size by ~30%. | ||
ldflags: -w -extldflags -static -X github.com/wundergraph/cosmo/aws-lambda-router/internal.Version=${{ steps.split.outputs._1 }} | ||
ldflags: -w -extldflags -static -X "github.com/wundergraph/cosmo/aws-lambda-router/internal.Version=${{ steps.split.outputs._1 }}" -X "github.com/wundergraph/cosmo/aws-lambda-router/internal.Date=${{ env.BUILD_TIME }}" -X "github.com/wundergraph/cosmo/aws-lambda-router/internal.Commit=${{ github.sha }}" | ||
overwrite: true | ||
extra_files: LICENSE | ||
#release_tag: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Proto CI | ||
on: | ||
pull_request: | ||
paths: | ||
- "connect-go/**/*" | ||
- "proto/**/*" | ||
- ".github/workflows/connect-go-ci.yaml" | ||
|
||
concurrency: | ||
group: ${{github.workflow}}-${{github.head_ref}} | ||
cancel-in-progress: true | ||
|
||
env: | ||
CI: true | ||
|
||
jobs: | ||
build_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/go | ||
|
||
- name: Install tools | ||
run: make setup-build-tools | ||
|
||
- name: Generate code | ||
run: make generate-go | ||
|
||
- name: Check if git is not dirty after generating files | ||
run: git diff --no-ext-diff --exit-code |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,9 @@ jobs: | |
separator: "@" | ||
msg: "${{ github.event.release.tag_name }}" | ||
|
||
- name: Set BUILD_TIME env | ||
run: echo BUILD_TIME=$(date -u +'%Y-%m-%dT%H:%M:%SZ') >> ${GITHUB_ENV} | ||
|
||
- uses: wangyoucao577/go-release-action@v1 | ||
name: Build and attach binaries to GitHub Release | ||
with: | ||
|
@@ -51,7 +54,7 @@ jobs: | |
binary_name: "router" | ||
pre_command: export CGO_ENABLED=0 | ||
build_flags: -trimpath | ||
ldflags: -extldflags -static -X github.com/wundergraph/cosmo/router/core.Version=${{ steps.split.outputs._1 }} | ||
ldflags: -extldflags -static -X "github.com/wundergraph/cosmo/router/core.Version=${{ steps.split.outputs._1 }}" -X "github.com/wundergraph/cosmo/router/core.Date=${{ env.BUILD_TIME }}" -X "github.com/wundergraph/cosmo/router/core.Commit=${{ github.sha }}" | ||
overwrite: true | ||
extra_files: LICENSE | ||
#release_tag: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{ | ||
|
||
"helm/cosmo": "0.11.1", | ||
"helm/cosmo/charts/router": "0.8.0" | ||
"helm/cosmo": "0.12.1", | ||
"helm/cosmo/charts/router": "0.8.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,74 @@ Binaries are attached to the github release otherwise all images can be found [h | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.27.1](https://github.com/wundergraph/cosmo/compare/[email protected]@0.27.1) (2024-10-07) | ||
|
||
**Note:** Version bump only for package aws-lambda-router | ||
|
||
# [0.27.0](https://github.com/wundergraph/cosmo/compare/[email protected]@0.27.0) (2024-10-07) | ||
|
||
### Features | ||
|
||
* allow specified fields in subgraph errors ([#1248](https://github.com/wundergraph/cosmo/issues/1248)) ([72c770d](https://github.com/wundergraph/cosmo/commit/72c770d1d4d795f70586dfaa1a0ffab2943638a4)) (@thisisnithin) | ||
|
||
## [0.26.1](https://github.com/wundergraph/cosmo/compare/[email protected]@0.26.1) (2024-10-03) | ||
|
||
### Bug Fixes | ||
|
||
* apollo compatibility for truncating floats, invalid __typenames ([#1242](https://github.com/wundergraph/cosmo/issues/1242)) ([a773ea5](https://github.com/wundergraph/cosmo/commit/a773ea53d7f9abe48033dad822f4424a31e28af2)) (@devsergiy) | ||
|
||
# [0.26.0](https://github.com/wundergraph/cosmo/compare/[email protected]@0.26.0) (2024-10-03) | ||
|
||
### Features | ||
|
||
* router version command ([#1240](https://github.com/wundergraph/cosmo/issues/1240)) ([39970e5](https://github.com/wundergraph/cosmo/commit/39970e5b1c6d8e2a2958f5ea55bb0d8aa7206d92)) (@StarpTech) | ||
|
||
# [0.25.0](https://github.com/wundergraph/cosmo/compare/[email protected]@0.25.0) (2024-10-02) | ||
|
||
### Features | ||
|
||
* add apollo compatibility flag to truncate floats ([#1236](https://github.com/wundergraph/cosmo/issues/1236)) ([17c80c9](https://github.com/wundergraph/cosmo/commit/17c80c91f4e594cf48dae887840517b588bbe0f8)) (@jensneuse) | ||
|
||
## [0.24.4](https://github.com/wundergraph/cosmo/compare/[email protected]@0.24.4) (2024-09-30) | ||
|
||
### Bug Fixes | ||
|
||
* upgrade engine for ws deadlock, remove pont pool ([#1230](https://github.com/wundergraph/cosmo/issues/1230)) ([3ac50f8](https://github.com/wundergraph/cosmo/commit/3ac50f8b878fb6a5e2460c22aa94412a28c49600)) (@StarpTech) | ||
|
||
## [0.24.3](https://github.com/wundergraph/cosmo/compare/[email protected]@0.24.3) (2024-09-30) | ||
|
||
### Bug Fixes | ||
|
||
* value completion reset, preserve __typename field location ([#1228](https://github.com/wundergraph/cosmo/issues/1228)) ([9d671f0](https://github.com/wundergraph/cosmo/commit/9d671f071af6d6b5789968682b98a9c5b7f9a7ec)) (@devsergiy) | ||
|
||
## [0.24.2](https://github.com/wundergraph/cosmo/compare/[email protected]@0.24.2) (2024-09-30) | ||
|
||
### Bug Fixes | ||
|
||
* planning of consecutive fragments and fragments on union ([#1223](https://github.com/wundergraph/cosmo/issues/1223)) ([3e390cd](https://github.com/wundergraph/cosmo/commit/3e390cd5cf6ca87694c6a25794aecd84d4f0c31e)) (@devsergiy) | ||
|
||
## [0.24.1](https://github.com/wundergraph/cosmo/compare/[email protected]@0.24.1) (2024-09-23) | ||
|
||
**Note:** Version bump only for package aws-lambda-router | ||
|
||
# [0.24.0](https://github.com/wundergraph/cosmo/compare/[email protected]@0.24.0) (2024-09-23) | ||
|
||
### Features | ||
|
||
* add apollo compatibility mode with support for valueCompletion ([#1205](https://github.com/wundergraph/cosmo/issues/1205)) ([18b1ef0](https://github.com/wundergraph/cosmo/commit/18b1ef01b12945d2f3acc80ea9548a17f9effa21)) (@jensneuse) | ||
|
||
# [0.23.0](https://github.com/wundergraph/cosmo/compare/[email protected]@0.23.0) (2024-09-19) | ||
|
||
### Features | ||
|
||
* return error from Router when Subgraph returns invalid value for __typename field ([#1194](https://github.com/wundergraph/cosmo/issues/1194)) ([b99d2fd](https://github.com/wundergraph/cosmo/commit/b99d2fdcd8b311028d11b501addb9d69e61c7df8)) (@jensneuse) | ||
|
||
## [0.22.2](https://github.com/wundergraph/cosmo/compare/[email protected]@0.22.2) (2024-09-17) | ||
|
||
### Bug Fixes | ||
|
||
* ignore empty errors array ([#1181](https://github.com/wundergraph/cosmo/issues/1181)) ([bc5dda3](https://github.com/wundergraph/cosmo/commit/bc5dda393f727d8ee3483ea7e53c89377a0d2722)) (@devsergiy) | ||
|
||
## [0.22.1](https://github.com/wundergraph/cosmo/compare/[email protected]@0.22.1) (2024-09-13) | ||
|
||
**Note:** Version bump only for package aws-lambda-router | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.