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

chore(deps): update crates #9012

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

chore(deps): update crates #9012

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 14, 2025

This PR contains the following updates:

Package Type Update Change
async-trait workspace.dependencies patch 0.1.84 -> 0.1.85
bitflags workspace.dependencies minor 2.6.0 -> 2.8.0
data-encoding dependencies minor 2.6.0 -> 2.7.0
futures-concurrency dependencies patch 7.6.2 -> 7.6.3
indexmap workspace.dependencies patch 2.7.0 -> 2.7.1
indicatif dependencies patch 0.17.9 -> 0.17.11
opentelemetry dependencies minor 0.26.0 -> 0.27.1
opentelemetry-otlp (source) dependencies minor 0.26.0 -> 0.27.0
opentelemetry_sdk dependencies minor 0.26.0 -> 0.27.1
proc-macro2 workspace.dependencies patch 1.0.92 -> 1.0.93
regress dependencies patch 0.10.1 -> 0.10.3
serde_json workspace.dependencies patch 1.0.134 -> 1.0.138
syn workspace.dependencies patch 2.0.95 -> 2.0.96
tokio (source) workspace.dependencies minor 1.42.0 -> 1.43.0
tracing-opentelemetry dependencies minor 0.27.0 -> 0.28.0
trybuild dev-dependencies patch 1.0.101 -> 1.0.103
url dependencies patch 2.5.0 -> 2.5.4
wasmparser (source) dependencies minor 0.222.0 -> 0.224.0

Release Notes

dtolnay/async-trait (async-trait)

v0.1.85

Compare Source

  • Omit Self: 'async_trait bound in impl when not needed by signature (#​284)
bitflags/bitflags (bitflags)

v2.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.7.0...2.8.0

v2.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.6.0...2.7.0

yoshuawuyts/futures-concurrency (futures-concurrency)

v7.6.3

Compare Source

What's Changed
New Contributors

Full Changelog: yoshuawuyts/futures-concurrency@v7.6.2...v7.6.3

indexmap-rs/indexmap (indexmap)

v2.7.1

Compare Source

  • Added #[track_caller] to functions that may panic.
  • Improved memory reservation for insert_entry.
console-rs/indicatif (indicatif)

v0.17.11

Compare Source

What's Changed

v0.17.10

Compare Source

What's Changed

With some great performance improvements from @​jaheba.

open-telemetry/opentelemetry-rust (opentelemetry)

v0.27.1: patch release

Compare Source

Refer to opentelemetry-sdk CHANGELOG for the changes.

v0.27.0

Compare Source

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

dtolnay/proc-macro2 (proc-macro2)

v1.0.93

Compare Source

ridiculousfish/regress (regress)

v0.10.3

Compare Source

What's changed

  • Fix a panic for certain regular expressions when matching in UTF-16 or UCS-2 mode #​101
  • Fixed incorrect matches in UTF-16 or UCS-2 mode and improved test coverage

v0.10.2

Compare Source

What's Changed

serde-rs/json (serde_json)

v1.0.138

Compare Source

  • Documentation improvements

v1.0.137

Compare Source

  • Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#​1231)

v1.0.136

Compare Source

  • Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#​1230, thanks @​goffrie)

v1.0.135

Compare Source

dtolnay/syn (syn)

v2.0.96

Compare Source

tokio-rs/tokio (tokio)

v1.43.0: Tokio v1.43.0

Compare Source

1.43.0 (Jan 8th, 2025)
Added
  • net: add UdpSocket::peek methods (#​7068)
  • net: add support for Haiku OS (#​7042)
  • process: add Command::into_std() (#​7014)
  • signal: add SignalKind::info on illumos (#​6995)
  • signal: add support for realtime signals on illumos (#​7029)
Fixed
  • io: don't call set_len before initializing vector in Blocking (#​7054)
  • macros: suppress clippy::needless_return in #[tokio::main] (#​6874)
  • runtime: fix thread parking on WebAssembly (#​7041)
Changes
  • chore: use unsync loads for unsync_load (#​7073)
  • io: use Buf::put_bytes in Repeat read impl (#​7055)
  • task: drop the join waker of a task eagerly (#​6986)
Changes to unstable APIs
  • metrics: improve flexibility of H2Histogram Configuration (#​6963)
  • taskdump: add accessor methods for backtrace (#​6975)
Documented
  • io: clarify ReadBuf::uninit allows initialized buffers as well (#​7053)
  • net: fix ambiguity in TcpStream::try_write_vectored docs (#​7067)
  • runtime: fix LocalRuntime doc links (#​7074)
  • sync: extend documentation for watch::Receiver::wait_for (#​7038)
  • sync: fix typos in OnceCell docs (#​7047)
tokio-rs/tracing-opentelemetry (tracing-opentelemetry)

v0.28.0: 0.28.0

Compare Source

What's Changed

dtolnay/trybuild (trybuild)

v1.0.103

Compare Source

  • Fix unindentation of multiline note (#​301)

v1.0.102

Compare Source

  • Detect compilation failure more reliably for filepaths containing .. (#​300)

Configuration

📅 Schedule: Branch creation - "before 8am on wednesday" in timezone Asia/Shanghai, 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.

Copy link

netlify bot commented Jan 14, 2025

Deploy Preview for rspack canceled.

Name Link
🔨 Latest commit 613212a
🔍 Latest deploy log https://app.netlify.com/sites/rspack/deploys/679a92dc3627db000884d8b3

@renovate renovate bot force-pushed the renovate/crates branch 9 times, most recently from d2f5055 to 6495c58 Compare January 22, 2025 02:03
@renovate renovate bot force-pushed the renovate/crates branch 5 times, most recently from cc20a4e to b74a33c Compare January 28, 2025 21:24
@renovate renovate bot force-pushed the renovate/crates branch from b74a33c to 613212a Compare January 29, 2025 20:43
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.

1 participant