Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 3, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@types/node (source) 20.12.12 -> 20.14.0 age adoption passing confidence devDependencies minor
@types/node (source) 20.12.11 -> 20.14.0 age adoption passing confidence devDependencies minor
@types/react (source) 18.3.2 -> 18.3.3 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) 7.8.0 -> 7.11.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 7.8.0 -> 7.11.0 age adoption passing confidence devDependencies minor
@vitejs/plugin-react (source) 4.2.1 -> 4.3.0 age adoption passing confidence devDependencies minor
async-compression 0.4.10 -> 0.4.11 age adoption passing confidence dependencies patch
async-lock 3.3.0 -> 3.4.0 age adoption passing confidence dependencies minor
async-tungstenite 0.25.1 -> 0.26.0 age adoption passing confidence dependencies minor
async-tungstenite 0.25.1 -> 0.26.0 age adoption passing confidence dev-dependencies minor
backtrace 0.3.71 -> 0.3.72 age adoption passing confidence dependencies patch
bun (source) 1.1.10 -> 1.1.12 age adoption passing confidence devDependencies patch
eslint-plugin-react 7.34.1 -> 7.34.2 age adoption passing confidence dependencies patch
hyper-util (source) 0.1.4 -> 0.1.5 age adoption passing confidence workspace.dependencies patch
openidconnect 4.0.0-alpha.1 -> 4.0.0-alpha.2 age adoption passing confidence workspace.dependencies patch
opentelemetry 0.22 -> 0.23 age adoption passing confidence dependencies minor
opentelemetry-otlp (source) 0.15 -> 0.16 age adoption passing confidence dependencies minor
opentelemetry-stdout (source) 0.3 -> 0.4 age adoption passing confidence dependencies minor
opentelemetry_sdk 0.22.0 -> 0.23.0 age adoption passing confidence dependencies minor
pnpm (source) 9.1.3 -> 9.1.4 age adoption passing confidence packageManager patch
proc-macro2 1.0.84 -> 1.0.85 age adoption passing confidence dependencies patch
rstest 0.19 -> 0.21 age adoption passing confidence dev-dependencies minor
rstest 0.19 -> 0.21 age adoption passing confidence workspace.dependencies minor
rstest_reuse 0.6 -> 0.7 age adoption passing confidence dev-dependencies minor
strum_macros 0.26.2 -> 0.26.3 age adoption passing confidence workspace.dependencies patch
swc_ecma_ast 0.113.4 -> 0.113.5 age adoption passing confidence dependencies patch
tokio (source) 1.37.0 -> 1.38.0 age adoption passing confidence dev-dependencies minor
tokio (source) 1.37.0 -> 1.38.0 age adoption passing confidence dependencies minor
tokio (source) 1.37.0 -> 1.38.0 age adoption passing confidence workspace.dependencies minor
tokio-postgres-rustls 0.11.0 -> 0.12.0 age adoption passing confidence workspace.dependencies minor
tokio-rustls 0.25.0 -> 0.26.0 age adoption passing confidence workspace.dependencies minor
tokio-tungstenite 0.21.0 -> 0.23.0 age adoption passing confidence workspace.dependencies minor
tracing-opentelemetry 0.23 -> 0.24 age adoption passing confidence dependencies minor
ts-jest (source) =29.1.3 -> =29.1.4 age adoption passing confidence devDependencies patch
tsup (source) 8.0.2 -> 8.1.0 age adoption passing confidence devDependencies minor
tungstenite 0.21.0 -> 0.23.0 age adoption passing confidence workspace.dependencies minor
type-fest 4.18.2 -> 4.18.3 age adoption passing confidence dependencies patch
vite (source) 5.2.11 -> 5.2.12 age adoption passing confidence devDependencies patch
zip 2.1.0 -> 2.1.2 age adoption passing confidence dependencies patch

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.11.0

Compare Source

🚀 Features
  • eslint-plugin: deprecate prefer-ts-expect-error in favor of ban-ts-comment
🩹 Fixes
  • eslint-plugin: [consistent-type-assertions] prevent syntax errors on arrow functions
❤️ Thank You
  • Abraham Guo
  • auvred
  • Dom Armstrong
  • Kirk Waiblinger

You can read about our versioning strategy and releases on our website.

v7.10.0

Compare Source

🚀 Features
  • eslint-plugin: [sort-type-constituents] support case sensitive sorting
🩹 Fixes
  • eslint-plugin: [prefer-regexp-exec] fix heuristic to check whether regex may contain global flag
❤️ Thank You
  • auvred
  • Emanuel Hoogeveen
  • jsfm01
  • Kirk Waiblinger

You can read about our versioning strategy and releases on our website.

v7.9.0

Compare Source

🩹 Fixes
  • eslint-plugin: [explicit-function-return-types] fix false positive on default parameters
❤️ Thank You
  • Kirk Waiblinger
  • Sheetal Nandi
  • Vinccool96

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.11.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.10.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.9.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.0

Compare Source

Fix support for React compiler

Don't set retainLines: true when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:

export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', {}]]
  if (command === 'serve') {
    babelPlugins.push(['@​babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
Support HMR for class components

This is a long overdue and should fix some issues people had with HMR when migrating from CRA.

Nullus157/async-compression (async-compression)

v0.4.11

Compare Source

Other
  • Expose total_in/total_out from underlying flate2 encoder types.
smol-rs/async-lock (async-lock)

v3.4.0

Compare Source

  • Port to event-listener v5.0.0. (#​74)
sdroege/async-tungstenite (async-tungstenite)

v0.26.0

Compare Source

Changed
  • Update to tungstenite 0.23.
  • Don't include default features for various dependencies.
rust-lang/backtrace-rs (backtrace)

v0.3.72

Compare Source

This release removes a lot of dead code. Some feature flags that haven't done anything in a long time are gone. If you depend on those features, Cargo's resolver will not update you to 0.3.72.

If your code runs on Windows, or you want it to run on visionOS, however, you should probably update to this version. It contains a number of fixes for both OS. It also uses the latest version of a number of dependencies.

What's Changed

New Contributors

Full Changelog: rust-lang/backtrace-rs@0.3.71...0.3.72

oven-sh/bun (bun)

v1.1.12: Bun v1.1.12

Compare Source

This release fixes a regression briefly introduced in bun upgrade on Windows that occurred in Bun v1.1.11. There are no release notes, please take a look at the Bun v1.1.11 release notes instead.

To install Bun v1.1.12:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.12:

bun upgrade
Read Bun v1.1.11's release notes on Bun's blog

v1.1.11: Bun v1.1.11

Compare Source

To install Bun v1.1.11:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.11:

bun upgrade
Read Bun v1.1.11's release notes on Bun's blog
Thanks to 16 contributors!
jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.34.2

Compare Source

Fixed
Changed
hyperium/hyper-util (hyper-util)

v0.1.5

Compare Source

  • Add server::graceful::GracefulShutdown helper to coordinate over many connections.
  • Add server::conn::auto::Connection::into_owned() to unlink lifetime from Builder.
  • Allow service module to be available with only service feature enabled.
ramosbugs/openidconnect-rs (openidconnect)

v4.0.0-alpha.2

Compare Source

Bug Fixes

  • Return impl Future instead of Pin<Box<dyn Future>> (#​158)

Full Changelog: ramosbugs/openidconnect-rs@4.0.0-alpha.1...4.0.0-alpha.2

open-telemetry/opentelemetry-rust (opentelemetry)

v0.23.0: 0.23.0

Compare Source

Whats changed?

See individual crate changelogs for details.

New Contributors

@​svix-jplatte made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1568
@​rex4539 made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1587
@​divergentdave made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1584
@​pyohannes made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1578
@​masato-hi made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1621
@​rogercoll made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1624
@​LuisOsta made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1638
@​svrnm made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1664
@​Lev1ty made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1672
@​ThomsonTan made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1675
@​ramgdev made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1585
@​utpilla made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1701
@​ChieloNewctle made their first contribution in https://github.com/open-telemetry/opentelemetry-rust/pull/1746

open-telemetry/opentelemetry-rust (opentelemetry-otlp)

v0.16.0

Compare Source

Fixed
  • URL encoded values in OTEL_EXPORTER_OTLP_HEADERS are now correctly decoded. #​1578
  • OTLP exporter will not change the URL added through ExportConfig #​1706
  • Default grpc endpoint will not have path based on signal(e.g /v1/traces) #​1706
  • Fix feature flags for OTEL_EXPORTER_OTLP_PROTOCOL_DEFAULT #​1746
Added
  • Added DeltaTemporalitySelector (#​1568)
  • Add webkpi-roots features to reqwest and tonic backends
Changed
  • Breaking Remove global provider for Logs #​1691
    • The method OtlpLogPipeline::install_simple() and OtlpLogPipeline::install_batch() now return LoggerProvider instead of
      Logger. Refer to the basic-otlp and basic-otlp-http examples for how to initialize OTLP Log Exporter to use with OpenTelemetryLogBridge and OpenTelemetryTracingBridge respectively.
  • Update opentelemetry dependency version to 0.23
  • Update opentelemetry_sdk dependency version to 0.23
  • Update opentelemetry-http dependency version to 0.12
  • Update opentelemetry-proto dependency version to 0.6
open-telemetry/opentelemetry-rust (opentelemetry-stdout)

v0.4.0

Compare Source

Changed
  • The default feature now includes logs, metrics and trace.
  • Update opentelemetry dependency version to 0.23
  • Update opentelemetry_sdk dependency version to 0.23
  • TraceExporter fixed to print InstrumentationScope's attributes.
pnpm/pnpm (pnpm)

v9.1.4

Compare Source

dtolnay/proc-macro2 (proc-macro2)

v1.0.85

Compare Source

  • Mark some tests as only for 64-bit targets (#​463)
la10736/rstest (rstest)

v0.21.0

Compare Source

Changed
  • Add feature crate-name enabled by default to opt-in crate rename
    support. See #​258

v0.20.0

Compare Source

Add
  • Implemented #[by_ref] attribute to take get a local lifetime for test arguments.
    See #​241 for more details. Thanks to
    @​narpfel for suggesting it and useful discussions.
  • Support for import rstest with another name. See #​221
Fixed
  • Don't remove Lifetimes from test function if any. See #​230
    #​241 for more details.
  • PathBuf does no longer need to be
    in scope when using #[files] (see #​242)
  • #[from(now::accept::also::path::for::fixture)] See #​246
    for more details
Peternator7/strum (strum_macros)

v0.26.3

Compare Source

  • #​344: Hide EnumTable because it's going to be deprecated in the next
    version.
  • #​357: Fixes an incompatiblity with itertools by using the fully
    qualified name rather than the inherent method.
  • #​345: Allows unnamed tuple like variants to use their variants in
    string interpolation. #[strum(to_string = "Field 0: {0}, Field 1: {1})")] will now work for tuple variants
tokio-rs/tokio (tokio)

v1.38.0: Tokio v1.38.0

Compare Source

This release marks the beginning of stabilization for runtime metrics. It
stabilizes RuntimeMetrics::worker_count. Future releases will continue to
stabilize more metrics.

Added
  • fs: add File::create_new ([#​6573])
  • io: add copy_bidirectional_with_sizes ([#​6500])
  • io: implement AsyncBufRead for Join ([#​6449])
  • net: add Apple visionOS support ([#​6465])
  • net: implement Clone for NamedPipeInfo ([#​6586])
  • net: support QNX OS ([#​6421])
  • sync: add Notify::notify_last ([#​6520])
  • sync: add mpsc::Receiver::{capacity,max_capacity} ([#​6511])
  • sync: add split method to the semaphore permit ([#​6472], [#​6478])
  • task: add tokio::task::join_set::Builder::spawn_blocking ([#​6578])
  • wasm: support rt-multi-thread with wasm32-wasi-preview1-threads ([#​6510])
Changed
  • macros: make #[tokio::test] append #[test] at the end of the attribute list ([#​6497])
  • metrics: fix blocking_threads count ([#​6551])
  • metrics: stabilize RuntimeMetrics::worker_count ([#​6556])
  • runtime: move task out of the lifo_slot in block_in_place ([#​6596])
  • runtime: panic if global_queue_interval is zero ([#​6445])
  • sync: always drop message in destructor for oneshot receiver ([#​6558])
  • sync: instrument Semaphore for task dumps ([#​6499])
  • sync: use FIFO ordering when waking batches of wakers ([#​6521])
  • task: make LocalKey::get work with Clone types ([#​6433])
  • tests: update nix and mio-aio dev-dependencies ([#​6552])
  • time: clean up implementation ([#​6517])
  • time: lazily init timers on first poll ([#​6512])
  • time: remove the true_when field in TimerShared ([#​6563])
  • time: use sharding for timer implementation ([#​6534])
Fixed
  • taskdump: allow building taskdump docs on non-unix machines ([#​6564])
  • time: check for overflow in Interval::poll_tick ([#​6487])
  • sync: fix incorrect is_empty on mpsc block boundaries ([#​6603])
Documented
  • fs: rewrite file system docs ([#​6467])
  • io: fix stdin documentation ([#​6581])
  • io: fix obsolete reference in ReadHalf::unsplit() documentation ([#​6498])
  • macros: render more comprehensible documentation for select! ([#​6468])
  • net: add missing types to module docs ([#​6482])
  • net: fix misleading NamedPipeServer example ([#​6590])
  • sync: add examples for SemaphorePermit, OwnedSemaphorePermit ([#​6477])
  • sync: document that Barrier::wait is not cancel safe ([#​6494])
  • sync: explain relation between `wa

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

@renovate
Copy link
Contributor Author

renovate bot commented Jun 3, 2024

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path engine/crates/tracing/Cargo.toml --package [email protected] --precise 0.23.0
    Updating crates.io index
error: failed to select a version for the requirement `opentelemetry = "^0.22"`
candidate versions found which didn't match: 0.23.0
location searched: crates.io index
required by package `opentelemetry-aws v0.10.0`
    ... which satisfies dependency `opentelemetry-aws = "^0.10.0"` (locked to 0.10.0) of package `grafbase-gateway v0.3.1 (/tmp/renovate/repos/github/grafbase/grafbase/gateway/crates/gateway-binary)`
perhaps a crate was updated and forgotten to be re-vendored?

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package [email protected] --precise 0.23.0
    Updating crates.io index
error: failed to select a version for the requirement `tokio-tungstenite = "^0.21"`
candidate versions found which didn't match: 0.23.0
location searched: crates.io index
required by package `axum v0.7.5`
    ... which satisfies dependency `axum = "^0.7.5"` (locked to 0.7.5) of package `federated-server v0.3.1 (/tmp/renovate/repos/github/grafbase/grafbase/gateway/crates/federated-server)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate renovate bot requested review from a team as code owners June 3, 2024 01:03
@renovate renovate bot requested review from jakst and pimeys June 3, 2024 01:03
@renovate renovate bot force-pushed the renovate-dependencies-non-major branch 2 times, most recently from 7621998 to e433bfe Compare June 3, 2024 06:21
@jakubadamw jakubadamw self-assigned this Jun 3, 2024
@jakubadamw jakubadamw force-pushed the renovate-dependencies-non-major branch from e433bfe to f77f22d Compare June 3, 2024 14:36
@jakubadamw jakubadamw force-pushed the renovate-dependencies-non-major branch from f77f22d to e47ea74 Compare June 3, 2024 14:36
@renovate
Copy link
Contributor Author

renovate bot commented Jun 3, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@jakubadamw jakubadamw merged commit 3f37e38 into main Jun 3, 2024
@jakubadamw jakubadamw deleted the renovate-dependencies-non-major branch June 3, 2024 15:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants