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 all non-major dependencies #95

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 6, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@chromatic-com/storybook 1.8.0 -> 1.9.0 age adoption passing confidence devDependencies minor
async-trait 0.1.82 -> 0.1.83 age adoption passing confidence dependencies patch
esbuild ^0.23.0 -> ^0.24.0 age adoption passing confidence devDependencies minor
eslint (source) 9.9.1 -> 9.11.1 age adoption passing confidence devDependencies minor
eslint-plugin-storybook ^0.8.0 -> ^0.9.0 age adoption passing confidence devDependencies minor
getset 0.1.2 -> 0.1.3 age adoption passing confidence dependencies patch
husky 9.1.5 -> 9.1.6 age adoption passing confidence devDependencies patch
msw (source) 2.4.2 -> 2.4.9 age adoption passing confidence dependencies patch
opentelemetry 0.24.0 -> 0.25.0 age adoption passing confidence dependencies minor
opentelemetry-http 0.13.0 -> 0.25.0 age adoption passing confidence dependencies minor
opentelemetry-otlp (source) 0.17.0 -> 0.25.0 age adoption passing confidence dependencies minor
opentelemetry-semantic-conventions (source) 0.16.0 -> 0.25.0 age adoption passing confidence dependencies minor
opentelemetry_sdk 0.24.0 -> 0.25.0 age adoption passing confidence dependencies minor
prost 0.13.1 -> 0.13.3 age adoption passing confidence dependencies patch
prost-types 0.13.1 -> 0.13.3 age adoption passing confidence dependencies patch
prost-types 0.13.2 -> 0.13.3 age adoption passing confidence dependencies patch
rbatis (source) 4.5.29 -> 4.5.30 age adoption passing confidence dependencies patch
rbdc-mysql (source) 4.5.8 -> 4.5.11 age adoption passing confidence dependencies patch
rbdc-pg (source) 4.5.12 -> 4.5.14 age adoption passing confidence dependencies patch
rbs (source) 4.5.18 -> 4.5.20 age adoption passing confidence dependencies patch
serde (source) 1.0.209 -> 1.0.210 age adoption passing confidence dependencies patch
skytable 0.8.10 -> 0.8.11 age adoption passing confidence dependencies patch
syn 2.0.76 -> 2.0.79 age adoption passing confidence dependencies patch
thiserror 1.0.63 -> 1.0.64 age adoption passing confidence dependencies patch
tonic 0.12.1 -> 0.12.3 age adoption passing confidence dependencies patch
tonic 0.12.2 -> 0.12.3 age adoption passing confidence dependencies patch
tonic-build 0.12.1 -> 0.12.3 age adoption passing confidence build-dependencies patch
tonic-health 0.12.2 -> 0.12.3 age adoption passing confidence dependencies patch
tonic-reflection 0.12.2 -> 0.12.3 age adoption passing confidence dependencies patch
tonic-web 0.12.2 -> 0.12.3 age adoption passing confidence dependencies patch
tower 0.5.0 -> 0.5.1 age adoption passing confidence dependencies patch
tower-http 0.5.2 -> 0.6.0 age adoption passing confidence dependencies minor
tracing-opentelemetry 0.25.0 -> 0.26.0 age adoption passing confidence dependencies minor
typescript (source) 5.5.4 -> 5.6.2 age adoption passing confidence devDependencies minor
vue (source) 3.5.2 -> 3.5.10 age adoption passing confidence dependencies patch

Release Notes

chromaui/addon-visual-tests (@​chromatic-com/storybook)

v1.9.0

Compare Source

🚀 Enhancement
  • Relay client-side fetch requests to the server using the Storybook channel API #​331 (@​ghengeveld)
Authors: 1

dtolnay/async-trait (async-trait)

v0.1.83

Compare Source

  • Prevent needless_arbitrary_self_type lint being produced in generated code (#​278)
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.11.1

Compare Source

v9.11.0

Compare Source

Features

  • ec30c73 feat: add "eslint/universal" to export Linter (#​18883) (唯然)
  • c591da6 feat: Add language to types (#​18917) (Nicholas C. Zakas)
  • 492eb8f feat: limit the name given to ImportSpecifier in id-length (#​18861) (Tanuj Kanti)
  • 19c6856 feat: Add no-useless-constructor suggestion (#​18799) (Jordan Thomson)
  • a48f8c2 feat: add type FormatterFunction, update LoadedFormatter (#​18872) (Francesco Trotta)

Bug Fixes

  • 5e5f39b fix: add missing types for no-restricted-exports rule (#​18914) (Kristóf Poduszló)
  • 8f630eb fix: add missing types for no-param-reassign options (#​18906) (Kristóf Poduszló)
  • d715781 fix: add missing types for no-extra-boolean-cast options (#​18902) (Kristóf Poduszló)
  • 2de5742 fix: add missing types for no-misleading-character-class options (#​18905) (Kristóf Poduszló)
  • c153084 fix: add missing types for no-implicit-coercion options (#​18903) (Kristóf Poduszló)
  • fa11b2e fix: add missing types for no-empty-function options (#​18901) (Kristóf Poduszló)
  • a0deed1 fix: add missing types for camelcase options (#​18897) (Kristóf Poduszló)

Documentation

  • e4e5709 docs: correct prefer-object-has-own type definition comment (#​18924) (Nitin Kumar)
  • 91cbd18 docs: add unicode abbreviations in no-irregular-whitespace rule (#​18894) (Alix Royere)
  • 59cfc0f docs: clarify resultsMeta in LoadedFormatter type (#​18881) (Milos Djermanovic)
  • adcc50d docs: Update README (GitHub Actions Bot)
  • 4edac1a docs: Update README (GitHub Actions Bot)

Build Related

  • 959d360 build: Support updates to previous major versions (#​18871) (Milos Djermanovic)

Chores

v9.10.0

Compare Source

storybookjs/eslint-plugin-storybook (eslint-plugin-storybook)

v0.9.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 3

jbaublitz/getset (getset)

v0.1.3

Compare Source

Update to syn 2

typicode/husky (husky)

v9.1.6

Compare Source

mswjs/msw (msw)

v2.4.9

Compare Source

v2.4.9 (2024-09-20)

Bug Fixes

v2.4.8

Compare Source

v2.4.8 (2024-09-17)

Bug Fixes

v2.4.7

Compare Source

v2.4.7 (2024-09-15)

Bug Fixes

v2.4.6

Compare Source

v2.4.6 (2024-09-13)

Bug Fixes

v2.4.5

Compare Source

v2.4.5 (2024-09-11)
Bug Fixes

v2.4.4

Compare Source

v2.4.4 (2024-09-08)

Bug Fixes

v2.4.3

Compare Source

v2.4.3 (2024-09-07)

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

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

Compare Source

  • Update opentelemetry dependency version to 0.25
  • Update opentelemetry_sdk dependency version to 0.25
  • Update opentelemetry-http dependency version to 0.25
  • Update opentelemetry-proto dependency version to 0.25
  • Starting with this version, this crate will align with opentelemetry crate
    on major,minor versions.
  • Breaking
    The logrecord event-name is added as an attribute only if the feature flag
    populate-logs-event-name is enabled. The name of the attribute is changed from
    "name" to "event.name".
    1994,
    2050
open-telemetry/opentelemetry-rust (opentelemetry-semantic-conventions)

v0.25.0

Compare Source

Changed
  • Starting with this version, this crate will align with opentelemetry crate
    on major,minor versions.
  • Update to v1.27.0 of the semantic conventions.
    #​2000
tokio-rs/prost (prost)

v0.13.3

Compare Source

PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.

Features
  • (prost-types) Add normalized functions (#​1158)
Bug Fixes
  • (prost-build) Remove derived(Copy) on boxed fields (#​1157)
Documentation
  • (prost-types) Add description of using Any (#​1141)
  • (prost-build) Use cargo add in example (#​1149)
Styling
  • Use Path::display() when printing a path (#​1150)
  • MessageGraph::new() can't actually fail (#​1151)
  • (generated-code) Use Self in as_str_name (#​1154)
Testing
  • Actually test skip_debug for prost::Oneof (#​1148)
  • (prost-build) Validate error texts (#​1152)
  • (prost-build) Fix error texts (#​1156)
Build
  • Increase MSRV to 1.71.1 (#​1135)
  • (deps) Update pulldown-cmark to 0.12 and pulldown-cmark-to-cmark to 16 (#​1144)
  • (protobuf) Compile and install protoc on Windows (#​1145)
  • (protobuf) Use same protoc from same repo as .proto-files (#​1136)
  • (deps) Update pulldown-cmark-to-cmark from 16 to 17 (#​1155)
  • Unify assert on fixtures (#​1142)

v0.13.2

Compare Source

PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.

Features

  • prost-build: Add protoc executable path to Config (#​1126)
  • prost-build: Extract file descriptor loading from compile_protos() (#​1067)

Bug Fixes

  • prost-types: Fix date-time parsing (#​1096)
  • prost-types: '+' is not a numeric digit (#​1104)
  • prost-types: Converting DateTime to Timestamp is fallible (#​1095)
  • prost-types: Parse timestamp with long second fraction (#​1106)
  • prost-types: Format negative fractional duration (#​1110)
  • prost-types: Allow unknown local time offset (#​1109)

Styling

  • Remove use of legacy numeric constants (#​1089)
  • Move encoding functions into separate modules (#​1111)
  • Remove needless borrow (#​1122)

Testing

  • Add tests for public interface of DecodeError (#​1120)
  • Add parse_date fuzzing target (#​1127)
  • Fix build without std (#​1134)
  • Change some proptest to kani proofs (#​1133)
  • Add parse_duration fuzzing target (#​1129)
  • fuzz: Fix building of fuzzing targets (#​1107)
  • fuzz: Add fuzz targets to workspace (#​1117)

Miscellaneous Tasks

  • Move old protobuf benchmark into prost (#​1100)
  • Remove allow clippy::derive_partial_eq_without_eq (#​1115)
  • Run cargo test without all-targets (#​1118)
  • dependabot: Add github actions (#​1121)
  • Update to cargo clippy version 1.80 (#​1128)

Build

  • Use proc-macro in Cargo.toml (#​1102)
  • Ignore missing features in tests crates (#​1101)
  • Use separated build directory for protobuf (#​1103)
  • protobuf: Don't install unused test proto (#​1116)
  • protobuf: Use crate cmake (#​1137)
  • deps: Update devcontainer to Debian Bookworm release (#​1114)
  • deps: Bump actions/upload-artifact from 3 to 4 (#​1123)
  • deps: Bump baptiste0928/cargo-install from 2 to 3 (#​1124)
  • deps: bump model-checking/kani-github-action from 0.32 to 1.1 (#​1125)
rbatis/rbatis (rbatis)

v4.5.30

Compare Source

what changes?

  • Rewrite the snowflake algorithm and fix duplicate IDs
serde-rs/serde (serde)

v1.0.210

Compare Source

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#​2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#​2818)
skytable/client-rust (skytable)

v0.8.11

Compare Source

Additions
  • Added QList and RList for using dynamic lists
  • Allow using references for custom types in query! macro
dtolnay/syn (syn)

v2.0.79

Compare Source

  • Fix infinite loop on parsing chained ranges (#​1741)
  • Fix panic in parsing use items containing absolute paths (#​1742)

v2.0.78

Compare Source

  • Fix infinite loop on chained comparison (#​1739)

v2.0.77

Compare Source

  • Support parsing Expr::Tuple in non-"full" mode (#​1727)
dtolnay/thiserror (thiserror)

v1.0.64

Compare Source

hyperium/tonic (tonic)

v0.12.3

Compare Source

Features
  • server: Added support for grpc max_connection_age (#​1865)
  • build: Add #[deprecated] to deprecated client methods (#​1879)
  • build: plumb skip_debug through prost Builder and add test (#​1900)
Bug Fixes
  • build: Revert "fix tonic-build cargo build script outputs (#​1821)" which accidentally increases MSRV (#​1898)
  • server: ignore more error kinds in incoming socket stream (#​1885)
  • transport: do not shutdown server on broken connections (#​1948)

v0.12.2

Compare Source

Features
  • Move TimeoutExpired out of transport (#​1826)
  • Move ConnectError type from transport (#​1828)
  • channel: allow setting max_header_list_size (#​1835)
  • router: Add RoutesBuilder constructor (#​1855)
  • tls: Rename tls-roots feature with tls-native-roots (#​1860)
  • router: Rename Routes::into_router with into_axum_router (#​1862)
  • router: Implement from axum::Router for Routes (#​1863)
  • **chann

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 changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Sep 6, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 15 times, most recently from 7c0fb28 to d374228 Compare September 13, 2024 15:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from aece269 to 50370d6 Compare September 16, 2024 11:27
Copy link
Contributor Author

renovate bot commented Sep 16, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact 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 Cargo.toml --package skytable@0.8.10 --precise 0.8.11
    Updating crates.io index
error: failed to select a version for `tokio`.
    ... required by package `opentelemetry-otlp v0.25.0`
    ... which satisfies dependency `opentelemetry-otlp = "^0.25.0"` (locked to 0.25.0) of package `feedback-fusion v0.2.0 (/tmp/renovate/repos/github/OneLiteFeatherNET/feedback-fusion)`
versions that meet the requirements `~1.38.0` are: 1.38.1, 1.38.0

all possible versions conflict with previously selected packages.

  previously selected package `tokio v1.40.0`
    ... which satisfies dependency `tokio = "^1.40.0"` of package `skytable v0.8.11`
    ... which satisfies dependency `skytable = "^0.8.10"` of package `feedback-fusion v0.2.0 (/tmp/renovate/repos/github/OneLiteFeatherNET/feedback-fusion)`

failed to select a version for `tokio` which could resolve this conflict

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from d77e5f7 to c189d2b Compare September 23, 2024 22:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4a97c26 to 3017499 Compare September 27, 2024 16: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.

0 participants