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

Merged
merged 1 commit into from
Oct 13, 2024

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
concurrently 9.0.0 -> 9.0.1 age adoption passing confidence devDependencies patch
esbuild ^0.23.0 -> ^0.24.0 age adoption passing confidence devDependencies minor
eslint (source) 9.9.1 -> 9.12.0 age adoption passing confidence devDependencies minor
eslint-plugin-storybook ^0.8.0 -> ^0.9.0 age adoption passing confidence devDependencies minor
futures (source) 0.3.30 -> 0.3.31 age adoption passing confidence dependencies patch
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
lit (source) 3.2.0 -> 3.2.1 age adoption passing confidence dependencies patch
msw (source) 2.4.2 -> 2.4.10 age adoption passing confidence dependencies patch
opentelemetry 0.24.0 -> 0.26.0 age adoption passing confidence dependencies minor
opentelemetry-http 0.13.0 -> 0.26.0 age adoption passing confidence dependencies minor
opentelemetry-otlp (source) 0.17.0 -> 0.26.0 age adoption passing confidence dependencies minor
opentelemetry-semantic-conventions (source) 0.16.0 -> 0.26.0 age adoption passing confidence dependencies minor
opentelemetry_sdk 0.24.0 -> 0.26.0 age adoption passing confidence dependencies minor
proc-macro2 1.0.86 -> 1.0.87 age adoption passing confidence dependencies patch
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.32 age adoption passing confidence dependencies patch
rbdc-mssql (source) 4.5.4 -> 4.5.5 age adoption passing confidence dependencies patch
rbdc-mysql (source) 4.5.8 -> 4.5.12 age adoption passing confidence dependencies patch
rbdc-pg (source) 4.5.12 -> 4.5.16 age adoption passing confidence dependencies patch
rbs (source) 4.5.18 -> 4.5.22 age adoption passing confidence dependencies patch
reqwest 0.12.7 -> 0.12.8 age adoption passing confidence dev-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-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.27.0 age adoption passing confidence dependencies minor
typescript (source) 5.5.4 -> 5.6.3 age adoption passing confidence devDependencies minor
vitepress (source) 1.3.4 -> 1.4.1 age adoption passing confidence devDependencies minor
vue (source) 3.5.2 -> 3.5.12 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)
open-cli-tools/concurrently (concurrently)

v9.0.1

Compare Source

What's Changed

Full Changelog: open-cli-tools/concurrently@v9.0.0...v9.0.1

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

Compare Source

Features

Bug Fixes

Documentation

  • ecbd522 docs: Mention code explorer (#​18978) (Nicholas C. Zakas)
  • 7ea4ecc docs: Clarifying the Use of Meta Objects (#​18697) (Amaresh S M)
  • d3e4b2e docs: Clarify how to exclude .js files (#​18976) (Milos Djermanovic)
  • 57232ff docs: Mention plugin-kit in language docs (#​18973) (Nicholas C. Zakas)
  • b80ed00 docs: Update README (GitHub Actions Bot)
  • cb69ab3 docs: Update README (GitHub Actions Bot)
  • 7fb0d95 docs: Update README (GitHub Actions Bot)
  • 493348a docs: Update README (GitHub Actions Bot)
  • 87a582c docs: fix typo in id-match rule (#​18944) (Jay)

Chores

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

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

typicode/husky (husky)

v9.1.6

Compare Source

lit/lit (lit)

v3.2.1

Compare Source

Patch Changes
  • #​4782 99703a03 - Revert the Terser plugin for Rollup to rollup-plugin-terser from @rollup/plugin-terser
    due to a bug that prevented our minified name prefixing from working.
mswjs/msw (msw)

v2.4.10

Compare Source

v2.4.10 (2024-10-11)

Bug Fixes

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

Compare Source

Released 2024-Sep-30

  • Update opentelemetry dependency version to 0.26
  • Update opentelemetry_sdk dependency version to 0.26
  • Update opentelemetry-http dependency version to 0.26
  • Update opentelemetry-proto dependency version to 0.26
  • Bump MSRV to 1.71.1 2140

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 majo

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 8 times, most recently from c91e2f0 to 914dae3 Compare September 22, 2024 05:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 1122a43 to c886c3d Compare September 24, 2024 21:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 8a8a3ef to 9aa63c9 Compare October 1, 2024 22:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 62850aa to c6afb28 Compare October 9, 2024 11:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 794ae4e to da89d3b Compare October 11, 2024 16:50
@Randoooom Randoooom merged commit fa8ffdf into main Oct 13, 2024
10 checks passed
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