router
router copied to clipboard
fix(deps): update all non-major packages >= 1.0
This PR contains the following updates:
| Package | Type | Update | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|
| anyhow | dependencies | patch | 1.0.58 -> 1.0.61 |
||||
| bytes | dependencies | minor | 1.1.0 -> 1.2.1 |
||||
| clap | dependencies | patch | 3.2.10 -> 3.2.17 |
||||
| insta (source) | dev-dependencies | minor | 1.15.0 -> 1.18.2 |
||||
| miette | dependencies | minor | 5.1.1 -> 5.3.0 |
||||
| paste | dependencies | patch | 1.0.7 -> 1.0.8 |
||||
| serde (source) | dependencies | patch | 1.0.139 -> 1.0.143 |
||||
| serde_json | dependencies | patch | 1.0.82 -> 1.0.83 |
||||
| thiserror | dependencies | patch | 1.0.31 -> 1.0.32 |
||||
| tokio (source) | dev-dependencies | minor | 1.19.2 -> 1.20.1 |
||||
| tokio (source) | dependencies | minor | 1.19.2 -> 1.20.1 |
||||
| typescript (source) | devDependencies | minor | 4.6.4 -> 4.7.4 |
Release Notes
dtolnay/anyhow
v1.0.61
- Work around rust-analyzer builds poisoning all subsequent command-line cargo builds (#β252)
v1.0.60
- Propagate
--targetto rustc invocation when deciding about backtrace support (#β249, thanks @βRalfJung)
v1.0.59
- Update crates.io metadata to include
no-stdcategory
tokio-rs/bytes
v1.2.1
Fixed
- Fix unbounded memory growth when using
reserve(#β560)
v1.2.0
Added
- Add
BytesMut::zeroed(#β517) - Implement
Extend<Bytes>forBytesMut(#β527) - Add conversion from
BytesMuttoVec<u8>(#β543, #β554) - Add conversion from
BytestoVec<u8>(#β547) - Add
UninitSlice::as_uninit_slice_mut()(#β548) - Add const to
Bytes::{len,is_empty}(#β514)
Changed
Fixed
- Make miri happy (#β515, #β523, #β542, #β545, #β553)
- Make tsan happy (#β541)
- Fix
remaining_mut()on chain (#β488) - Fix amortized asymptotics of
BytesMut(#β555)
Documented
clap-rs/clap
v3.2.17
[3.2.17] - 2022-08-12
Fixes
- (derive) Expose
#[clap(id = ...)]attribute to match Arg's latest API
v3.2.16
Fixes
- Ensure required arguments appear in errors when they are also members of a group (#β4004)
v3.2.15
Features
- (derive) New
default_values_tanddefault_values_os_tattributes
v3.2.14
Fixes
- A
multple_valuespositional followed by another positional now works with multiple flags
v3.2.13
Documentation
- Pulled in tutorials, cookbook, and derive reference into rustdoc
v3.2.12
Fixes
- Allow an arg to declare a conflict with a group
v3.2.11
Features
- Added
Arg::get_all_short_aliaesandArg::get_all_aliases
mitsuhiko/insta
v1.18.2
- Avoid the use of
#[allow(unused)]in the macro. (#β271)
v1.18.1
- Fixed a regression in the JSON serialization format with newtypes and tuple variants. (#β270)
v1.18.0
Settings::bindnow can return a result.- Expose the drop guard type of
bind_to_scope. - The
serdedependency is now optional. While still enabled by default users need to opt intoyamlandjsonfeatures explicitly to regain support for it. To avoid the defaultserdedependency the default features just need to be disabled. (#β255) - Deprecated unused
serializationfeatures. - Deprecated unused
backtracefeature. - Removed deprecated
Settings::bind_to_thread.
Breaking Changes / Upgrading: If you are upgrading to serde 1.18.0 you will
receive deprecating warnings if you are using the assert_yaml_snapshot! and
assert_json_snapshot! macros. These macros will continue to function in the
future but they will require explicit opting into the yaml and json features.
To silence the warning add them to your insta dependency. Additionally the
backtrace feature was deprecated. It is no longer needed so just remove it.
v1.17.2
- Remove an accidentaly debug print output.
v1.17.1
- Added support for nextest. (#β242)
- Resolved an issue where inline snapshot tests in doctests refused to work. (#β252)
v1.17.0
- Fixed an issue in
cargo-instawhere sometimes accepting inline snapshots would crash with an out of bounds panic. - Added new
filtersfeature. (#β245) - Disallow unnamed snapshots in doctests. (#β246)
with_settings!macro now inherits the former settings rather than resetting. (#β249)- Added support for
Settings::bind_to_scopeand deprecatedSettings::bind_to_thread. (#β250) - Added support for
minimal-versionsbuilds.
v1.16.0
- Added
--no-quiet/-Qflag tocargo insta testto suppress the quiet flag. This works around limitations with custom test harnesses such as cucumber. - Update RON to 0.7.1.
- Improved ergonomics around
with_settings!. It's now a perfect match to the settings object's setter methods. - Added
descriptionandinfoto snapshots. (#β239) - Added
omit_expressionsetting. (#β239) - Added improved support for running insta from doctests. (#β243)
zkat/miette
v5.3.0
Bug Fixes
Features
v5.2.0
Features
Bug Fixes
- docs: readme was getting cut off during generation (e286c705)
serde-rs/serde
v1.0.143
- Invert build.rs cfgs in serde_test to produce the most modern configuration in the default case (#β2253, thanks @βtaiki-e)
v1.0.142
- Add keywords to crates.io metadata
v1.0.141
- Add
no-stdcategory to crates.io metadata
v1.0.140
- Invert serde_derive cfgs to convenience non-Cargo builds on a modern toolchain (#β2251, thanks @βtaiki-e)
tokio-rs/tokio
v1.20.1
1.20.1 (July 25, 2022)
Fixed
- chore: fix version detection in build script (#β4860)
v1.20.0
1.20.0 (July 12, 2022)
Added
- tokio: add track_caller to public APIs (#β4772, #β4791, #β4793, #β4806, #β4808)
- sync: Add
has_changedmethod towatch::Ref(#β4758)
Changed
- time: remove
src/time/driver/wheel/stack.rs(#β4766) - rt: clean up arguments passed to basic scheduler (#β4767)
- net: be more specific about winapi features (#β4764)
- tokio: use const initialized thread locals where possible (#β4677)
- task: various small improvements to LocalKey (#β4795)
Fixed
Documented
- fs: warn about performance pitfall (#β4762)
- chore: fix spelling (#β4769)
- sync: document spurious failures in oneshot (#β4777)
- sync: add warning for watch in non-Send futures (#β4741)
- chore: fix typo (#β4798)
Unstable
Microsoft/TypeScript
v4.7.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 4.7.0 (Beta).
- fixed issues query for Typescript 4.7.1 (RC).
- fixed issues query for Typescript 4.7.2 (Stable).
- fixed issues query for Typescript 4.7.3 (Stable).
- fixed issues query for Typescript 4.7.4 (Stable).
Downloads are available on:
v4.7.3
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 4.7.0 (Beta).
- fixed issues query for Typescript 4.7.1 (RC).
- fixed issues query for Typescript 4.7.2 (Stable).
- fixed issues query for Typescript 4.7.3 (Stable).
Downloads are available on:
v4.7.2
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 4.7.0 (Beta).
- fixed issues query for Typescript 4.7.1 (RC).
- fixed issues query for Typescript 4.7.2 (Stable).
Downloads are available on:
Configuration
π Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
π¦ Automerge: Disabled due to failing status checks.
β» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
π» Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, click this checkbox.
This PR has been generated by Mend Renovate. View repository job log here.
Deploy Preview for apollo-router-docs ready!
| Name | Link |
|---|---|
| Latest commit | 13a7db5359e4b8f16a35238c94e245347a0cc159 |
| Latest deploy log | https://app.netlify.com/sites/apollo-router-docs/deploys/62be98b039014100081799c7 |
| Deploy Preview | https://deploy-preview-569--apollo-router-docs.netlify.app |
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site settings.
@renovate[bot] your pull request is missing a changelog!
@Geal:
once_cell should not be updated automatically for now
Is this still true? How do we know when this is safe to update it? (I would like to update it!)