Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #103

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 13, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
async-trait dependencies patch 0.1.82 -> 0.1.83 age adoption passing confidence
bb8 dependencies patch 0.8.5 -> 0.8.6 age adoption passing confidence
cached dependencies minor 0.53.0 -> 0.54.0 age adoption passing confidence
concurrently devDependencies minor 9.0.1 -> 9.1.0 age adoption passing confidence
esbuild devDependencies minor ^0.23.0 -> ^0.24.0 age adoption passing confidence
eslint (source) devDependencies minor 9.12.0 -> 9.15.0 age adoption passing confidence
eslint-plugin-storybook devDependencies minor ^0.8.0 -> ^0.11.0 age adoption passing confidence
futures (source) dependencies patch 0.3.30 -> 0.3.31 age adoption passing confidence
getset dependencies patch 0.1.2 -> 0.1.3 age adoption passing confidence
msw (source) dependencies minor 2.4.10 -> 2.6.5 age adoption passing confidence
opentelemetry dependencies minor 0.24.0 -> 0.27.0 age adoption passing confidence
opentelemetry-http dependencies minor 0.13.0 -> 0.27.0 age adoption passing confidence
opentelemetry-otlp (source) dependencies minor 0.17.0 -> 0.27.0 age adoption passing confidence
opentelemetry-semantic-conventions (source) dependencies minor 0.16.0 -> 0.27.0 age adoption passing confidence
opentelemetry_sdk dependencies minor 0.24.0 -> 0.27.0 age adoption passing confidence
proc-macro2 dependencies patch 1.0.86 -> 1.0.89 age adoption passing confidence
prost dependencies patch 0.13.1 -> 0.13.3 age adoption passing confidence
prost-types dependencies patch 0.13.1 -> 0.13.3 age adoption passing confidence
prost-types dependencies patch 0.13.2 -> 0.13.3 age adoption passing confidence
rbatis (source) dependencies patch 4.5.29 -> 4.5.36 age adoption passing confidence
rbdc-mssql (source) dependencies patch 4.5.4 -> 4.5.5 age adoption passing confidence
rbdc-mysql (source) dependencies patch 4.5.8 -> 4.5.12 age adoption passing confidence
rbdc-pg (source) dependencies patch 4.5.12 -> 4.5.16 age adoption passing confidence
rbs (source) dependencies patch 4.5.18 -> 4.5.24 age adoption passing confidence
reqwest dev-dependencies patch 0.12.7 -> 0.12.9 age adoption passing confidence
serde (source) dependencies patch 1.0.209 -> 1.0.215 age adoption passing confidence
serde_json dependencies patch 1.0.128 -> 1.0.133 age adoption passing confidence
skytable dependencies patch 0.8.10 -> 0.8.11 age adoption passing confidence
syn dependencies patch 2.0.76 -> 2.0.87 age adoption passing confidence
thiserror dependencies patch 1.0.63 -> 1.0.69 age adoption passing confidence
tokio (source) dependencies minor 1.40.0 -> 1.41.1 age adoption passing confidence
tonic-build build-dependencies patch 0.12.1 -> 0.12.3 age adoption passing confidence
tonic-health dependencies patch 0.12.2 -> 0.12.3 age adoption passing confidence
tonic-reflection dependencies patch 0.12.2 -> 0.12.3 age adoption passing confidence
tonic-web dependencies patch 0.12.2 -> 0.12.3 age adoption passing confidence
tower dependencies patch 0.5.0 -> 0.5.1 age adoption passing confidence
tower-http dependencies minor 0.5.2 -> 0.6.0 age adoption passing confidence
tracing-opentelemetry dependencies minor 0.25.0 -> 0.28.0 age adoption passing confidence
tslib (source) devDependencies minor 2.7.0 -> 2.8.1 age adoption passing confidence
validator dependencies minor 0.18.1 -> 0.19.0 age adoption passing confidence
validator dependencies minor 0.18 -> 0.19 age adoption passing confidence
vitepress (source) devDependencies minor 1.4.1 -> 1.5.0 age adoption passing confidence
vue (source) dependencies patch 3.5.12 -> 3.5.13 age adoption passing confidence
wildcard dependencies minor 0.2.0 -> 0.3.0 age adoption passing confidence

Release Notes

dtolnay/async-trait (async-trait)

v0.1.83

Compare Source

  • Prevent needless_arbitrary_self_type lint being produced in generated code (#​278)
djc/bb8 (bb8)

v0.8.6

Compare Source

What's Changed

Please 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 your package.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:

    • macOS 10.15 Catalina

    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:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#​3913)

    Setting the useDefineForClassFields flag to false in tsconfig.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 where extends 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 that extends another file in a package with an exports 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 and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). 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
Authors: 3

rust-lang/futures-rs (futures)

v0.3.31

Compare Source

  • Fix use after free of task in FuturesUnordered when dropped future panics (#​2886)
  • Fix soundness bug in task::waker_ref (#​2830)
    This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#​2884)
  • Fix parsing issue in 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.
  • Work around issue due to upstream Waker::will_wake change (#​2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#​2875)
  • Add future::AlwaysReady (#​2825)
  • Relax trait bound on non-constructor methods of 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

v2.6.4

Compare Source

v2.6.4 (2024-11-10)

Bug Fixes

v2.6.3

Compare Source

v2.6.3 (2024-11-10)

Bug Fixes

v2.6.2

Compare Source

v2.6.2 (2024-11-07)
Bug Fixes

v2.6.1

Compare Source

v2.6.1 (2024-11-06)
Bug Fixes

v2.6.0

Compare Source

v2.6.0 (2024-10-29)

Features

v2.5.2

Compare Source

v2.5.2 (2024-10-27)

Bug Fixes

v2.5.1

Compare Source

v2.5.1 (2024-10-24)

Bug Fixes

v2.5.0

Compare Source

v2.5.0 (2024-10-22)

Features

v2.4.13

Compare Source

v2.4.13 (2024-10-22)

Bug Fixes

v2.4.12

Compare Source

v2.4.12 (2024-10-21)

Bug Fixes

v2.4.11

Compare Source

v2.4.11 (2024-10-14)

Bug Fixes
open-telemetry/opentelemetry-rust (opentelemetry)

v0.27.0: 0.27.0 Release

Compare 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

  • Logs API to RC
  • Metrics API to RC
  • Metrics SDK to Beta
  • Metrics OTLP Exporter to Beta.

v0.26.0: 0.26.0 Release

Compare 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 Release

Compare 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.27

  • Update opentelemetry_sdk dependency version to 0.27

  • Update opentelemetry-http dependency version to 0.27

  • Update opentelemetry-proto dependency version to 0.27

  • BREAKING:

    • (#​2217) Replaced: The MetricsExporterBuilder interface is modified from with_temporality_selector to with_temporality example can be seen below:
      Previous Signature:

      MetricsExporterBuilder::default().with_temporality_selector(DeltaTemporalitySelector::new())

      Updated Signature:

      MetricsExporterBuilder::default().with_temporality(opentelemetry_sdk::metrics::Temporality::Delta)
    • (#​2221) Replaced:

      • The opentelemetry_otlp::new_pipeline().{trace,logging,metrics}() interface is now replaced with {TracerProvider,SdkMeterProvider,LoggerProvider}::builder().
      • The 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:

      let logger_provider: LoggerProvider = opentelemetry_otlp::new_pipeline()
        .logging()
        .with_resource(RESOURCE.clone())
        .with_exporter(
            opentelemetry_otlp::new_exporter()
                .tonic()
                .with_endpoint("http://localhost:4317")
        )
        .install_batch(runtime::Tokio)?;

      Updated Signature:

      let exporter = LogExporter::builder()
          .with_tonic()
          .with_endpoint("http://localhost:4317")
          .build()?;
      
      Ok(LoggerProvider::builder()
          .with_resource(RESOURCE.clone())
          .with_batch_exporter(exporter, runtime::Tokio)
          .build())
    • Renamed

      • (#​2255): de-pluralize Metric types.
        • MetricsExporter -> MetricExporter
        • MetricsExporterBuilder -> MetricExporterBuilder
    • #​2263
      Support hyper client for opentelemetry-otlp. This can be enabled using flag hyper-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

  • Update opentelemetry dependency version to 0.26
  • Update opentelemetry_sdk dependency version to 0.26
  • Update

Configuration

📅 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from c197ba6 to 2eeabef Compare October 20, 2024 18:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 15 times, most recently from 8905600 to e3503bd Compare October 27, 2024 12:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ed6efa2 to de1e11e Compare October 29, 2024 14:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from ccb2dd1 to dd6cc28 Compare November 4, 2024 17:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 2e8f717 to c4c7e7a Compare November 13, 2024 03:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4e4ac86 to 77eed4b Compare November 16, 2024 03:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants