Skip to content

Commit

Permalink
release: v1.55.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abernix authored Sep 24, 2024
2 parents 822d3de + 2ef53bd commit cca0c00
Show file tree
Hide file tree
Showing 357 changed files with 13,543 additions and 5,720 deletions.
8 changes: 8 additions & 0 deletions .changesets/chore_update_router_bridge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
> [!IMPORTANT]
> If you have enabled [Distributed query plan caching](https://www.apollographql.com/docs/router/configuration/distributed-caching/#distributed-query-plan-caching), this release changes the hashing algorithm used for the cache keys. On account of this, you should anticipate additional cache regeneration cost when updating between these versions while the new hashing algorithm comes into service.
### Update to Federation v2.9.1 ([PR #6029](https://github.com/apollographql/router/pull/6029))

This release updates to Federation v2.9.1, which fixes edge cases in subgraph extraction logic when using spec renaming or spec URLs (e.g., `specs.apollo.dev`) that could impact the planner's ability to plan a query.

By [@lrlna](https://github.com/lrlna) in https://github.com/apollographql/router/pull/6027
15 changes: 12 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
version: 2.1

# TODO Remove this line.

# These "CircleCI Orbs" are reusable bits of configuration that can be shared
# across projects. See https://circleci.com/orbs/ for more information.
orbs:
Expand Down Expand Up @@ -47,7 +49,7 @@ executors:
# at https://circleci.com/docs/using-macos#supported-xcode-versions.
# We use the major.minor notation to bring in compatible patches.
xcode: "14.2.0"
resource_class: macos.m1.medium.gen1
resource_class: macos.m1.large.gen1
macos_test: &macos_test_executor
macos:
# See https://circleci.com/docs/xcode-policy along with the support matrix
Expand All @@ -58,7 +60,7 @@ executors:
# once we update to Xcode >= 15.1.0
# See: https://github.com/apollographql/router/pull/5462
xcode: "14.2.0"
resource_class: macos.m1.medium.gen1
resource_class: macos.m1.large.gen1
windows_build: &windows_build_executor
machine:
image: "windows-server-2019-vs2019:2024.02.21"
Expand Down Expand Up @@ -574,6 +576,9 @@ jobs:
parameters:
platform:
type: executor
fuzz:
type: boolean
default: false
executor: << parameters.platform >>
steps:
- checkout
Expand All @@ -582,7 +587,9 @@ jobs:
- xtask_test
- when:
condition:
equal: [ *arm_linux_test_executor, << parameters.platform >> ]
and:
- equal: [ true, << parameters.fuzz >> ]
- equal: [ *arm_linux_test_executor, << parameters.platform >> ]
steps:
- fuzz_build

Expand Down Expand Up @@ -971,6 +978,8 @@ workflows:
platform:
[ amd_linux_test ]
- test:
# this should be changed back to true on dev after release
fuzz: false
requires:
- lint
- check_helm
Expand Down
178 changes: 154 additions & 24 deletions CHANGELOG.md

Large diffs are not rendered by default.

Loading

0 comments on commit cca0c00

Please sign in to comment.