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.
chore: sync latest from wundergraph/cosmo (#8)
* feat: expose type data and record subgraphs for enums (wundergraph#1495) * chore(release): Publish [skip ci] - [email protected] - [email protected] - @wundergraph/[email protected] - [email protected] - @wundergraph/[email protected] - [email protected] * feat: improve rate limit responses (add code, hide stats) (wundergraph#1497) * chore(release): Publish [skip ci] - [email protected] * fix: provider should be specified in the config.yaml (wundergraph#1397) * fix: update the timeouts for clickhouse and platform service (wundergraph#1500) * chore(release): Publish [skip ci] - [email protected] - [email protected] - [email protected] * fix: add edfs to the demo environment (wundergraph#1505) * docs(CONTRIBUTING): fixup minor mistake in CONTRIBUTING.md under Go workspace (wundergraph#1502) Co-authored-by: Dustin Deus <[email protected]> * fix: full demo broken in main branch (wundergraph#1508) * feat(router): optionally add jitter to config polling interval (wundergraph#1506) Co-authored-by: Dustin Deus <[email protected]> * chore(release): Publish [skip ci] - [email protected] * fix(router): remove wildcard from router graphql path (wundergraph#1509) * fix: use gauge for server.uptime metric (wundergraph#1510) Co-authored-by: Ludwig <[email protected]> * feat: cache warmer (wundergraph#1501) Co-authored-by: Ludwig <[email protected]> Co-authored-by: starptech <[email protected]> * chore(release): Publish [skip ci] - [email protected] - @wundergraph/[email protected] - [email protected] - @wundergraph/[email protected] - [email protected] - [email protected] - [email protected] - @wundergraph/[email protected] - [email protected] * fix(cache warmup): consider only po of the last 7 days (wundergraph#1513) * chore(release): Publish [skip ci] - [email protected] * fix(cache operation): swallow cache errors and other improvements (wundergraph#1515) * chore(release): Publish [skip ci] - [email protected] - [email protected] - [email protected] - [email protected] * feat: add variables remapping support (wundergraph#1516) Co-authored-by: starptech <[email protected]> * chore(release): Publish [skip ci] - [email protected] * fix(router): write proper line endings and header for multipart (wundergraph#1517) * chore(release): Publish [skip ci] - [email protected] * feat(router): optimize playground delivery, add concurrency_limit to config (wundergraph#1519) * fix(router): enable health checks during startup (wundergraph#1529) * feat: improve cache warmer (wundergraph#1530) Co-authored-by: Ludwig <[email protected]> * chore(release): Publish [skip ci] - [email protected] - [email protected] - [email protected] * fix: remove semaphore from ResolveGraphQLSubscription (wundergraph#1532) * chore(release): Publish [skip ci] - [email protected] * feat: add compatibility handshake between router and execution config (wundergraph#1534) * chore(release): Publish [skip ci] - [email protected] - @wundergraph/[email protected] - @wundergraph/[email protected] - [email protected] - [email protected] - @wundergraph/[email protected] - [email protected] * feat: also add handshake for static execution configs (wundergraph#1535) * chore(router): bump demo library to pickup subscription fix (wundergraph#1518) * feat(router): add interface for trace propagation (wundergraph#1526) * chore(release): Publish [skip ci] - [email protected] * fix: adding/removing directive is not picked up by wgc subgraph check (wundergraph#1494) * chore(deps): upgrade ristretto to v2 (wundergraph#1538) * feat: add normalizedQuery to query plan and request info to trace (wundergraph#1536) Co-authored-by: df-wg <[email protected]> * fix: add copy button to subgraph routing url (wundergraph#1543) Co-authored-by: Dustin Deus <[email protected]> * fix: webhooks shot when schema is unchanged (wundergraph#1542) * fix: trim the inputs of group mappers (wundergraph#1541) * fix: subgraphs search functionality (wundergraph#1540) * chore(release): Publish [skip ci] - [email protected] - [email protected] - [email protected] - [email protected] * fix: increase max concurrent resolvers (wundergraph#1544) * refactor(router): redesign JWK authentication logic (wundergraph#1498) * chore(release): Publish [skip ci] - [email protected] * fix: increase the test timeout value to prevent failures on slower machines (wundergraph#1547) * fix: reduce the breaking change retention duration (wundergraph#1550) * fix: change the defaults of breaking-change-retention (wundergraph#1551) * feat(router): enable starting the router without subgraphs (wundergraph#1533) * fix(router): parse accept header per rfc 9110 (wundergraph#1549) * chore(release): Publish [skip ci] - [email protected] - [email protected] - [email protected] * feat(router): enable using redis clusters for rate limiting and apq (wundergraph#1499) * fix: json schema for traffic shaping subgraphs (wundergraph#1552) * chore: Update aws-lambda-router customisation after upstream sync --------- Co-authored-by: Nithin Kumar B <[email protected]> Co-authored-by: hardworker-bot <[email protected]> Co-authored-by: Jens Neuse <[email protected]> Co-authored-by: Alessandro Pagnin <[email protected]> Co-authored-by: Suvij Surya <[email protected]> Co-authored-by: endigma <[email protected]> Co-authored-by: Dustin Deus <[email protected]> Co-authored-by: Ludwig <[email protected]> Co-authored-by: Sergiy 🇺🇦 <[email protected]> Co-authored-by: df-wg <[email protected]> Co-authored-by: Aenimus <[email protected]>
- Loading branch information
1 parent
08cb5a8
commit 5ab91a9
Showing
316 changed files
with
52,618 additions
and
10,833 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,6 +156,16 @@ jobs: | |
with: | ||
cache-dependency-path: | | ||
router-tests/go.sum | ||
- name: Setup Redis Cluster (for Cluster tests) | ||
uses: vishnudxb/[email protected] | ||
with: | ||
master1-port: 7000 | ||
master2-port: 7001 | ||
master3-port: 7002 | ||
slave1-port: 7003 | ||
slave2-port: 7004 | ||
slave3-port: 7005 | ||
sleep-duration: 5 | ||
- uses: nick-fields/retry@v3 | ||
with: | ||
timeout_minutes: 30 | ||
|
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
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
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
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,18 @@ 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.13.0](https://github.com/wundergraph/cosmo/compare/[email protected]@0.13.0) (2025-01-17) | ||
|
||
### Features | ||
|
||
* cache warmer ([#1501](https://github.com/wundergraph/cosmo/issues/1501)) ([948edd2](https://github.com/wundergraph/cosmo/commit/948edd23e6d0ee968c91edd1a9e9943c3405ac2d)) (@JivusAyrus) | ||
|
||
# [0.12.0](https://github.com/wundergraph/cosmo/compare/[email protected]@0.12.0) (2025-01-08) | ||
|
||
### Features | ||
|
||
* expose type data and record subgraphs for enums ([#1495](https://github.com/wundergraph/cosmo/issues/1495)) ([9e13f28](https://github.com/wundergraph/cosmo/commit/9e13f28c0a90b0d2f335c9b31f35e728c4a1799c)) (@thisisnithin) | ||
|
||
## [0.11.2](https://github.com/wundergraph/cosmo/compare/[email protected]@0.11.2) (2024-12-06) | ||
|
||
### Bug Fixes | ||
|
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,12 @@ 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.8.0](https://github.com/wundergraph/cosmo/compare/@wundergraph/[email protected]...@wundergraph/[email protected]) (2025-01-17) | ||
|
||
### Features | ||
|
||
* cache warmer ([#1501](https://github.com/wundergraph/cosmo/issues/1501)) ([948edd2](https://github.com/wundergraph/cosmo/commit/948edd23e6d0ee968c91edd1a9e9943c3405ac2d)) (@JivusAyrus) | ||
|
||
## [0.7.1](https://github.com/wundergraph/cosmo/compare/@wundergraph/[email protected]...@wundergraph/[email protected]) (2024-12-06) | ||
|
||
### Bug Fixes | ||
|
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,6 +1,6 @@ | ||
{ | ||
"name": "@wundergraph/cosmo-cdn", | ||
"version": "0.7.1", | ||
"version": "0.8.0", | ||
"author": { | ||
"name": "WunderGraph Maintainers", | ||
"email": "[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
Oops, something went wrong.