v0.8.0
π Features
-
Add new commands to use asynchronous checks API - @Y-Guo, #1139
If you want to kick off a check without waiting for it to complete you can provide the
--background
flag torover graph check
orrover subgraph check
. This will start the check in Apollo Studio. If your GitHub repo integrates with the Apollo Studio GitHub App, the check status will be updated on your GitHub branch. Using this flag can save you time and money with your CI provider. -
Improved error messages and logs for filesysten read/write - @EverlastingBugstopper, #1183
Start using the
saucer
create for file system read/writes. This will provide better errors than the ones provided bystd::fs
e.g.permission denied os error (2)
by providing context about which file rover is trying to read/write to. Every read/write/other filesystem operation will now be included in the--log info
output.
π Fixes
-
Install rover before run if missing in npm package - @trevor-scheer, #1184 fixes #1178
-
Don't retry
400 Bad Request
errors - @EverlastingBugstopper, #1166
π Maintenance
-
Refactor command line argument parsing - @EverlastingBugstopper, #1155
-
Improve schema downloading for codegen, when building rover - @EverlastingBugstopper, #1166
-
Update rover to clap v3 - @EverlastingBugstopper, #1170 fixes #1165
-
Add Apollo Studio integration tests - @EverlastingBugstopper, #1188
We now run integration tests against Apollo Studio's platform API as part of our release pipeline.
π Documentation
-
Update help message for
rover subgraph introspect
- @EverlastingBugstopper, #1169Previously the help message for
rover subgraph introspect
claimed to introspect from Apollo Studio Registry but it really introspects from a running subgraph endpoint. -
Add Jenkins CI/CD Documentation - @StephenBarlow, #1151
-
Update, restructure, and add missing docs for existing rover commands - @StephenBarlow, #1154, #1157
-
Update rover version in CI/CD docs - @rajington, #1177