fix(deps): update all non-major dependencies #103
+1,791
−1,237
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.
This PR contains the following updates:
0.1.82
->0.1.83
0.8.5
->0.8.6
0.53.0
->0.54.0
9.0.1
->9.1.0
^0.23.0
->^0.24.0
9.12.0
->9.15.0
^0.8.0
->^0.11.0
0.3.30
->0.3.31
0.1.2
->0.1.3
2.4.10
->2.6.5
0.24.0
->0.27.0
0.13.0
->0.27.0
0.17.0
->0.27.0
0.16.0
->0.27.0
0.24.0
->0.27.0
1.0.86
->1.0.89
0.13.1
->0.13.3
0.13.1
->0.13.3
0.13.2
->0.13.3
4.5.29
->4.5.36
4.5.4
->4.5.5
4.5.8
->4.5.12
4.5.12
->4.5.16
4.5.18
->4.5.24
0.12.7
->0.12.9
1.0.209
->1.0.215
1.0.128
->1.0.133
0.8.10
->0.8.11
2.0.76
->2.0.87
1.0.63
->1.0.69
1.40.0
->1.41.1
0.12.1
->0.12.3
0.12.2
->0.12.3
0.12.2
->0.12.3
0.12.2
->0.12.3
0.5.0
->0.5.1
0.5.2
->0.6.0
0.25.0
->0.28.0
2.7.0
->2.8.1
0.18.1
->0.19.0
0.18
->0.19
1.4.1
->1.5.0
3.5.12
->3.5.13
0.2.0
->0.3.0
Release Notes
dtolnay/async-trait (async-trait)
v0.1.83
Compare Source
djc/bb8 (bb8)
v0.8.6
Compare Source
What's Changed
Pool::add
by @tneely in https://github.com/djc/bb8/pull/214Please consider sponsoring ongoing maintenance or contact @djc to discuss commercial support.
jaemk/cached (cached)
v0.54.0
[0.54.0]
open-cli-tools/concurrently (concurrently)
v9.1.0
Compare Source
What's Changed
New Contributors
Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0
evanw/esbuild (esbuild)
v0.24.0
Compare Source
This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of
esbuild
in yourpackage.json
file (recommended) or be using a version range syntax that only accepts patch upgrades such as^0.23.0
or~0.23.0
. See npm's documentation about semver for more information.Drop support for older platforms (#3902)
This release drops support for the following operating system:
This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.
Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:
Fix class field decorators in TypeScript if
useDefineForClassFields
isfalse
(#3913)Setting the
useDefineForClassFields
flag tofalse
intsconfig.json
means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.Avoid incorrect cycle warning with
tsconfig.json
multiple inheritance (#3898)TypeScript 5.0 introduced multiple inheritance for
tsconfig.json
files whereextends
can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release,tsconfig.json
files containing this edge case should work correctly without generating a warning.Handle Yarn Plug'n'Play stack overflow with
tsconfig.json
(#3915)Previously a
tsconfig.json
file thatextends
another file in a package with anexports
map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.Work around more issues with Deno 1.31+ (#3917)
This version of Deno broke the
stdin
andstdout
properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. whenimport.meta.main
istrue
). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.This fix was contributed by @Joshix-1.
eslint/eslint (eslint)
v9.15.0
Compare Source
v9.14.0
Compare Source
v9.13.0
Compare Source
storybookjs/eslint-plugin-storybook (eslint-plugin-storybook)
v0.11.0
Compare Source
🚀 Enhancement
🐛 Bug Fix
Authors: 2
v0.10.2
Compare Source
🐛 Bug Fix
Authors: 1
v0.10.1
Compare Source
🐛 Bug Fix
Authors: 1
v0.10.0
Compare Source
🚀 Enhancement
Authors: 3
v0.9.0
Compare Source
🚀 Enhancement
🐛 Bug Fix
generate-rule
#147 (@yinm)Authors: 3
rust-lang/futures-rs (futures)
v0.3.31
Compare Source
FuturesUnordered
when dropped future panics (#2886)task::waker_ref
(#2830)This is a breaking change but allowed because it is soundness bug fix.
AsyncBufRead::read_line
andAsyncBufReadExt::lines
(#2884)select!
/select_biased!
(#2832)This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
Waker::will_wake
change (#2865)stream::Iter::{get_ref,get_mut,into_inner}
(#2875)future::AlwaysReady
(#2825)io::{BufReader,BufWriter}
(#2848)jbaublitz/getset (getset)
v0.1.3
Compare Source
Update to syn 2
mswjs/msw (msw)
v2.6.5
Compare Source
v2.6.5 (2024-11-16)
Bug Fixes
5bf3e3b
) @kettanaitov2.6.4
Compare Source
v2.6.4 (2024-11-10)
Bug Fixes
sendBeacon()
requests (#2353) (2fa98c3
) @kettanaito2fa98c3
) @kettanaitov2.6.3
Compare Source
v2.6.3 (2024-11-10)
Bug Fixes
transformResponse
option (#2351) (74c4a3a
) @kettanaitov2.6.2
Compare Source
v2.6.2 (2024-11-07)
Bug Fixes
@bundled-es-modules/cookie
to 2.0.1 (#2312) (c134352
) @kettanaitov2.6.1
Compare Source
v2.6.1 (2024-11-06)
Bug Fixes
instanceof
handler check failures between different MSW versions (#2349) (28d26bd
) @kettanaitov2.6.0
Compare Source
v2.6.0 (2024-10-29)
Features
ae786f5
) @kettanaito @DanielleHuismanv2.5.2
Compare Source
v2.5.2 (2024-10-27)
Bug Fixes
e9b0636
) @kettanaitov2.5.1
Compare Source
v2.5.1 (2024-10-24)
Bug Fixes
@inquirer/confirm
requirement to 5.0.0 (#2325) (b65c0a8
) @greysteil @kettanaitov2.5.0
Compare Source
v2.5.0 (2024-10-22)
Features
a1a81ba
) @kettanaitov2.4.13
Compare Source
v2.4.13 (2024-10-22)
Bug Fixes
@inquirer/confirm
to 4.0 (#2300) (0cf9cce
) @greysteil @kettanaitov2.4.12
Compare Source
v2.4.12 (2024-10-21)
Bug Fixes
a58a300
) @paoloricciutiv2.4.11
Compare Source
v2.4.11 (2024-10-14)
Bug Fixes
8f68f0a
) @kettanaitoopen-telemetry/opentelemetry-rust (opentelemetry)
v0.27.0
: 0.27.0 ReleaseCompare Source
See changelog for individual crates to know the exact set of changes. All crates in this repo follows same version (0.27.0 for this release).
This release also upgrades
v0.26.0
: 0.26.0 ReleaseCompare Source
See changelog for individual crates to know the exact set of changes. As informed during previous release, all crates from this repo follows same version (0.26.0 for this release).
This release also upgrades Metric API (part of
opentelemetry
crate) from alpha to beta.v0.25.0
: OpenTelemetry 0.25.0 ReleaseCompare Source
See changelog for individual crates to know the exact set of changes. This release onwards, all crates from this repo follows same version (0.25.0 for today's release).
open-telemetry/opentelemetry-rust (opentelemetry-otlp)
v0.27.0
Compare Source
Released 2024-Nov-11
Update
opentelemetry
dependency version to 0.27Update
opentelemetry_sdk
dependency version to 0.27Update
opentelemetry-http
dependency version to 0.27Update
opentelemetry-proto
dependency version to 0.27BREAKING:
(#2217) Replaced: The
MetricsExporterBuilder
interface is modified fromwith_temporality_selector
towith_temporality
example can be seen below:Previous Signature:
Updated Signature:
(#2221) Replaced:
opentelemetry_otlp::new_pipeline().{trace,logging,metrics}()
interface is now replaced with{TracerProvider,SdkMeterProvider,LoggerProvider}::builder()
.opentelemetry_otlp::new_exporter()
interface is now replaced with{SpanExporter,MetricsExporter,LogExporter}::builder()
.Pull request #2221 has a detailed migration guide in the description. See example below,
and basic-otlp for more details:
Previous Signature:
Updated Signature:
Renamed
MetricsExporter
->MetricExporter
MetricsExporterBuilder
->MetricExporterBuilder
#2263
Support
hyper
client for opentelemetry-otlp. This can be enabled using flaghyper-client
.Refer example: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp/examples/basic-otlp-http
v0.26.0
Compare Source
Released 2024-Sep-30
opentelemetry
dependency version to 0.26opentelemetry_sdk
dependency version to 0.26Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.
This PR was generated by Mend Renovate. View the repository job log.