Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[0.10.0] - 2022-11-10
❗ BREAKING ❗
Fix implementation of
--header
argument - @EverlastingBugstopper, chore: fix implementation of header option #1369 fixes Introspect documentation is incorrect #1365This change tightens up usage of the
--header
argument used forintrospect
commands by disallowing previously valid (but undocumented) usage like this:--header "Header-1: value" "Header-2: value"
. After this change, you must conform to what we have in the documentation, which indicates separate instances of the--header
argument for each header, like so:--header "Header-1: value" --header "Header-2: value"
.🚀 Features
Provide prebuilt binaries for ARM devices - @EverlastingBugstopper, chore: prebuilt ARM binaries for linux and macos #1356 fixes linux arm64 dist #582
As of this release,
rover.apollo.dev
delivers prebuilt binaries from our GitHub release for ARM devices. Most notably this means that Docker on M1 devices should work out of the box. You should be able to replace any custom builds in your tooling pipeline with a call to the official curl installer.Report downstream check task results - @sachindshinde, feat: report downstream check task results #1385
When running
rover subgraph check
commands, if the proposed schema would cause downstream failures (i.e. with contracts), those failures are now reported in the check response.Faster
rover supergraph compose
- @EverlastingBugstopper, chore: parallelize supergraph.yaml resolution #1392 fixes supergraph compose should call SubgraphFetchQuery only one time, not once for every subgraph #992Rover now resolves all subgraph schemas in parallel when running
rover supergraph compose
on asupergraph.yaml
file. This should improve the speed to compose large supergraphs significantly. This change also drastically improves error handling by reporting all issues with resolving subgraph schemas (and informing you which schema(s) failed to resolve) rather than exiting on the first failed schema resolution.Add
--polling-interval
torover dev
- @patrick91, Add support for polling interval #1377 fixes make introspection polling interval configurable #1221You can now set
--polling-interval
when runningrover dev
to change the frequency of introspection poll requests for subgraphs that don't provide the schema from the file system with the--schema
argument.Adds
--skip-update-check
to skip the once-per-day update check - @Tsing, Add--skip-update-check
for skipping the once-per-day update check #1396 fixes Allow disable version checking #1394Once per day, Rover checks if there is a new version available for update and notifies the user if there is. There is now a flag you can pass to disable this check:
--skip-update-check
.Respect the
NO_COLOR
environment variable - @chnn, feat: respect the NO_COLOR environment variable #1360rover
will not use color in any output when executed with theNO_COLOR
environment variable set totrue
.🛠 Maintenance
Updates from clap v3 to clap v4 - @EverlatingBugstopper, chore: updates to clap v4 #1404 fixes chore: update to clap v4 #1400
This release updated the command line argument parsing library to major version 4. There should be no noticeable compatibility issues with this update, only lighter binaries. The look and feel of the main
rover --help
output has changed to a neutral color palette along with this change.Updates Rust to 1.65.0 - @EverlastingBugstopper, chore: updates rust to 1.65.0 #1399
Updates node.js to v18 - @renovate, chore(deps): update node.js to v18 #1389
Updates node dev-dependencies - @renovate, chore(deps): update all non-major packages >= 1.0 #1204 and zs#1398
Remove dependency on the
saucer
crate - @EverlastingBugstopper, chore: use dependencies directly #1402Updates
introspector-gadget
to 0.2.0 - @EverlastingBugstopper, chore: updates introspector-gadget #1386Only cache dependencies in CI, not whole
/target
- @EverlastingBugstopper, chore: only cache deps, not target #1387Use
engine@main
instead ofengine@current
to fetch the API schema - @EverlastingBugstopper, chore: use main variant of platform API #1368Use
lychee
as a link checker instead of npm - @ptondereau, chore: Use lychee as a link checker. #1328 fixes fix flaky link checker #1306We now use a Rust-based link checker to check the links in the Rover repository instead of a node-based link checker (that was much more flaky).
Describe latest federation versions in
./latest_plugin_versions.json
- @EverlastingBugstopper, chore: describe latest federation versions #1363When you run
rover supergraph compose
, the latest version of composition is automatically downloaded to your machine, these latest version numbers are now stored in./latest_plugin_versions.json
in the Rover repo.Rename
apollo-
headers toapollographql-
headers - @jsegaran, Update to latest client identification headers #1411Update npm to v9 - @renovate, chore(deps): update dependency npm to v9 #1412
📚 Documentation
Update studio algolia key to graphos - @trevorblades, Update studio algolia key to graphos #1384
Fix some broken links - @StephenBarlow, Fix some broken links #1376
Fix a typo in the migration guide instructing the use of
check
instead ofpublish
- @EverlastingBugstopper, docs: migration guide uses check not publish #1364 fixes Typo: Migration guide 'check schema' instructions #1361