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 depedencies #19

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 27, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@livekit/components-react (source) 1.5.1 -> 1.5.3 age adoption passing confidence dependencies patch
@livekit/components-styles (source) 1.0.8 -> 1.0.9 age adoption passing confidence dependencies patch
@taplo/cli (source) ^0.5.2 -> ^0.7.0 age adoption passing confidence devDependencies minor
@types/node (source) 20.10.8 -> 20.11.16 age adoption passing confidence devDependencies minor
@types/react (source) 18.2.47 -> 18.2.54 age adoption passing confidence devDependencies patch 18.2.55
actix-web (source) 4.4.0 -> 4.5.1 age adoption passing confidence dependencies minor
anyhow 1.0.75 -> 1.0.79 age adoption passing confidence dependencies patch
async-channel 2.1.0 -> 2.1.1 age adoption passing confidence dependencies patch
async-openai 0.18.0 -> 0.18.3 age adoption passing confidence dependencies patch
async-trait 0.1.74 -> 0.1.77 age adoption passing confidence dependencies patch
autoprefixer 10.4.16 -> 10.4.17 age adoption passing confidence devDependencies patch
base64 0.21.5 -> 0.21.7 age adoption passing confidence dependencies patch
bevy (source) 0.12.0 -> 0.12.1 age adoption passing confidence dependencies patch
bevy_panorbit_camera 0.10.0 -> 0.11.1 age adoption passing confidence dependencies minor
bevy_transform_gizmo 0.9.0 -> 0.10.0 age adoption passing confidence dependencies minor
chrono 0.4.31 -> 0.4.33 age adoption passing confidence dependencies patch
crossbeam 0.8.2 -> 0.8.4 age adoption passing confidence dependencies patch
crossbeam-channel (source) 0.5.10 -> 0.5.11 age adoption passing confidence dependencies patch
dotenv 16.3.1 -> 16.4.1 age adoption passing confidence devDependencies minor
eslint-config-next (source) 14.0.4 -> 14.1.0 age adoption passing confidence devDependencies minor
ezsockets 0.6.1 -> 0.6.2 age adoption passing confidence dependencies patch
futures (source) 0.3.29 -> 0.3.30 age adoption passing confidence dependencies patch
image 0.24.7 -> 0.24.8 age adoption passing confidence dependencies patch
lint-staged 15.2.0 -> 15.2.2 age adoption passing confidence devDependencies patch
livekit-client 1.15.8 -> 1.15.11 age adoption passing confidence dependencies patch
next (source) 14.0.4 -> 14.1.0 age adoption passing confidence dependencies minor
node (source) 20.10.0 -> 20.11.0 age adoption passing confidence minor
pnpm (source) 8.7.6 -> 8.15.1 age adoption passing confidence packageManager minor
prettier (source) 3.1.1 -> 3.2.5 age adoption passing confidence devDependencies minor
serde (source) 1.0.192 -> 1.0.196 age adoption passing confidence dependencies patch
serde_json 1.0.108 -> 1.0.113 age adoption passing confidence dependencies patch
tailwind-merge 2.2.0 -> 2.2.1 age adoption passing confidence dependencies patch
tokio (source) 1.33.0 -> 1.36.0 age adoption passing confidence dependencies minor
wgpu (source) 0.17.1 -> 0.19.1 age adoption passing confidence dependencies minor

Release Notes

livekit/components-js (@​livekit/components-react)

v1.5.3

Compare Source

Patch Changes

v1.5.2

Compare Source

Patch Changes
64bit/async-openai (async-openai)

v0.18.3: v0.18.3

Compare Source

New

  • fixed: Add missing language field in create transcription request #​188 by @​Taoaozw

Thank you Contributors

v0.18.2: v0.18.2

Compare Source

New

Thank you Contributors

v0.18.1: v0.18.1

Compare Source

New

Thank you Contributors

postcss/autoprefixer (autoprefixer)

v10.4.17

Compare Source

  • Fixed user-select: contain prefixes.
Plonq/bevy_panorbit_camera (bevy_panorbit_camera)

v0.11.1

Compare Source

What's Changed

Full Changelog: Plonq/bevy_panorbit_camera@0.10.0...0.11.1

chronotope/chrono (chrono)

v0.4.33: 0.4.33

Compare Source

This release fixes the broken docrs.rs build of chrono 0.4.32.

What's Changed

v0.4.32

Compare Source

In this release we shipped part of the effort to reduce the number of methods that could unexpectedly panic, notably for the DateTime and Duration types.

Chrono internally stores the value of a DateTime in UTC, and transparently converts it to the local value as required. For example adding a second to a DateTime needs to be done in UTC to get the correct result, but adding a day needs to be done in local time to be correct. What happens when the value is near the edge of the representable range, and the implicit conversions pushes it beyond the representable range? Many methods could panic on such inputs, including formatting the value for Debug output.

In chrono 0.4.32 the range of NaiveDate, NaiveDateTime and DateTime is made slightly smaller. This allows us to always do the implicit conversion, and in many cases return the expected result. Specifically the range is now from January 1, -262144 until December 31, 262143, one year less on both sides than before. We expect this may trip up tests if you hardcoded the MIN and MAX dates.

Duration had a similar issue. The range of this type was pretty arbitrary picked to match the range of an i64 in milliseconds. Negating an i64::MIN pushes a value out of range, and in the same way negating Duration::MIN could push it out of our defined range and cause a panic. This turns out to be somewhat common and hidden behind many layers of abstraction. We adjusted the type to have a minimum value of -Duration::MAX instead and prevent the panic case.

Other highlights:

  • Duration gained new fallible initialization methods.
  • Better support for rkyv.
  • Most methods on NaiveDateTime are now const.
  • We had to bump our MSRV to 1.61 to keep building with our dependencies. This will also allow us to make more methods on DateTime const in a future release.

Complete list of changes:

Fixes

  • Fix panic in TimeZone::from_local_datetime (#​1071)
  • Fix out of range panics in DateTime getters and setters (#​1317, #​1329)

Additions

Changes

  • Fix panic in Duration::MIN.abs() (adjust Duration::MIN by 1 millisecond) (#​1334)
  • Bump MSRV to 1.61 (#​1347)
  • Update windows-targets requirement from 0.48 to 0.52 (#​1360)
  • Update windows-bindgen to 0.52 (#​1379)

Deprecations

  • Deprecate standalone format functions (#​1306)

Documentation

Rkyv support

Changes to unstable features

  • Don't let unstable-locales imply the alloc feature (#​1307)
  • Remove format::{format_localized, format_item_localized} (#​1311)
  • Inline write_rfc2822_inner, don't localize (#​1322)

Internal

  • Add benchmark for DateTime::with_* (#​1309)
  • Fix *_DAYS_FROM_YEAR_0 calculation (#​1312)
  • Add NaiveTime::overflowing_(add|sub)_offset (#​1310)
  • Rewrite DateTime::overflowing_(add|sub)_offset (#​1069)
  • Tests calling date command set env LC_ALL (#​1315, thanks @​jtmoon79)
  • Update deny.toml (#​1320)
  • Bump actions/setup-node from 3 to 4 (#​1346)
  • test.yml remove errant with: node-version (#​1352, thanks @​jtmoon79)
  • CI Linting: Fix missing sources checkout in toml job (#​1371, thanks @​gibbz00)
  • Silence clippy lint for test code with Rust 1.74.0 (#​1362)

Thanks to all contributors on behalf of the chrono team, @​djc and @​pitdicker!

motdotla/dotenv (dotenv)

v16.4.1

Compare Source

  • Patch support for array as path option #​797

v16.4.0

Compare Source

  • Add error.code to error messages around .env.vault decryption handling #​795
  • Add ability to find .env.vault file when filename(s) passed as an array #​784

v16.3.2

Compare Source

Added
  • Add debug message when no encoding set #​735
Changed
  • Fix output typing for populate #​792
  • Use subarray instead of slice #​793
vercel/next.js (eslint-config-next)

v14.1.0

Compare Source

gbaranski/ezsockets (ezsockets)

v0.6.2

  • Add MessageSignal::new().
image-rs/image (image)

v0.24.8

Compare Source

New features:

  • Added pure-Rust lossless WebP encoding.
  • Added DynamicImage::new method.
  • Added PngDecoder::gamma_value method.
  • Added ImageFormat::{reading_enabled, writing_enabled, all}.
  • TGA encoder now supports RLE encoding.
  • Add rayon parallel iterators behind an optional rayon feature.
  • Support CMYK TIFF images.
  • Implement From for all image types.

Bug fixes:

  • Fix decoding pngs with invalid text chunks.
  • Handle non-fatal error dav1d::Error::Again.
  • Do not round floats in interpolate.
  • PNM decoder now scales samples according to specified maximum.
  • Fix wrong implementation of unsharpen filter.
  • Fix GifDecoder::with_limits to raise an error when limits are exceeded.
okonet/lint-staged (lint-staged)

v15.2.2

Compare Source

Patch Changes
  • #​1391 fdcdad4 Thanks @​iiroj! - Lint-staged no longer tries to load configuration from files that are not checked out. This might happen when using sparse-checkout.

v15.2.1

Compare Source

Patch Changes
  • #​1387 e4023f6 Thanks @​iiroj! - Ignore stdin of spawned commands so that they don't get stuck waiting. Until now, lint-staged has used the default settings to spawn linter commands. This means the stdin of the spawned commands has accepted input, and essentially gotten stuck waiting. Now the stdin is ignored and commands will no longer get stuck. If you relied on this behavior, please open a new issue and describe how; the behavior has not been intended.
livekit/client-sdk-js (livekit-client)

v1.15.11

Compare Source

Patch Changes

v1.15.10

1.15.10

Patch Changes

1.15.9

Patch Changes

Full Changelog: livekit/client-sdk-js@v1.15.8...v1.15.10

v1.15.9

Patch Changes
vercel/next.js (next)

v14.1.0

Compare Source

nodejs/node (node)

v20.11.0

Compare Source

pnpm/pnpm (pnpm)

v8.15.1

Compare Source

Patch Changes

  • Use the object-hash library instead of node-object-hash for hashing keys of side-effects cache #​7591.
  • bundledDependencies should never be added to the lockfile with false as the value #​7576.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.0

Compare Source

Minor Changes

  • When the license field does not exist in package.json but a license file exists, try to match and extract the license name #​7530.

Patch Changes

  • Running pnpm update -r --latest will no longer downgrade prerelease dependencies #​7436.
  • --aggregate-output should work on scripts executed from the same project #​7556.
  • Prefer hard links over reflinks on Windows as they perform better #​7564.
  • Reduce the length of the side-effects cache key. Instead of saving a stringified object composed from the dependency versions of the package, use the hash calculated from the said object #​7563.
  • Throw an error if pnpm update --latest runs with arguments containing versions specs. For instance, pnpm update --latest foo@next is not allowed #​7567.
  • Don't fail in Windows CoW if the file already exists #​7554.

Platinum Sponsors

Gold Sponsors


Configuration

📅 Schedule: Branch creation - "after 5pm 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 renovate bot force-pushed the renovate/all-minor-patches branch 9 times, most recently from ac52149 to 8302140 Compare December 5, 2023 20:03
@renovate renovate bot force-pushed the renovate/all-minor-patches branch 8 times, most recently from 2686332 to 9a42cbc Compare December 11, 2023 13:12
@renovate renovate bot force-pushed the renovate/all-minor-patches branch 11 times, most recently from f6bf745 to 789c097 Compare December 21, 2023 03:27
@renovate renovate bot force-pushed the renovate/all-minor-patches branch 2 times, most recently from 3ef4551 to fce6ff0 Compare December 24, 2023 07:59
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from d4cf36f to b48d9eb Compare February 2, 2024 12:57
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from b48d9eb to bcf8fee Compare February 2, 2024 15:04
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from bcf8fee to cddbb4b Compare February 2, 2024 22:50
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from cddbb4b to 2132e9d Compare February 3, 2024 07:01
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from 2132e9d to 7a77475 Compare February 3, 2024 10:56
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from 7a77475 to 9d008b2 Compare February 3, 2024 18:44
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from 9d008b2 to 54bf71d Compare February 4, 2024 05:02
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from 54bf71d to 7bb4fea Compare February 5, 2024 03:36
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from 7bb4fea to 1311de0 Compare February 6, 2024 07:22
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from 1311de0 to c690459 Compare February 7, 2024 00:14
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from c690459 to 4370474 Compare February 7, 2024 06:35
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from 4370474 to bfd6b0f Compare February 7, 2024 15:47
@renovate renovate bot force-pushed the renovate/all-minor-patches branch from bfd6b0f to 325cab2 Compare February 7, 2024 19:13
@cs50victor cs50victor closed this Feb 22, 2024
@cs50victor cs50victor deleted the renovate/all-minor-patches branch February 22, 2024 02:29
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