fix(deps): update all non-major depedencies #19
Closed
+716
−1,400
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.5.1
->1.5.3
1.0.8
->1.0.9
^0.5.2
->^0.7.0
20.10.8
->20.11.16
18.2.47
->18.2.54
18.2.55
4.4.0
->4.5.1
1.0.75
->1.0.79
2.1.0
->2.1.1
0.18.0
->0.18.3
0.1.74
->0.1.77
10.4.16
->10.4.17
0.21.5
->0.21.7
0.12.0
->0.12.1
0.10.0
->0.11.1
0.9.0
->0.10.0
0.4.31
->0.4.33
0.8.2
->0.8.4
0.5.10
->0.5.11
16.3.1
->16.4.1
14.0.4
->14.1.0
0.6.1
->0.6.2
0.3.29
->0.3.30
0.24.7
->0.24.8
15.2.0
->15.2.2
1.15.8
->1.15.11
14.0.4
->14.1.0
20.10.0
->20.11.0
8.7.6
->8.15.1
3.1.1
->3.2.5
1.0.192
->1.0.196
1.0.108
->1.0.113
2.2.0
->2.2.1
1.33.0
->1.36.0
0.17.1
->0.19.1
Release Notes
livekit/components-js (@livekit/components-react)
v1.5.3
Compare Source
Patch Changes
Add possibility to edit/update chat messages - #757 (@lukasIO)
Use room as dependency to recreate localParticipant observable - #753 (@lukasIO)
Updated dependencies []:
v1.5.2
Compare Source
Patch Changes
Added close button in chat screen - #740 (@govind-io)
Add useTrackVolume hooks - #735 (@lukasIO)
Log error on non-ok http statuses of useToken - #739 (@lukasIO)
Pin all direct dependencies (Fixes an dependency resolve issue with a broken usehooks-ts release) - #751 (@lukasIO)
Updated dependencies [
e805d41b
,3e15bde4
]:64bit/async-openai (async-openai)
v0.18.3
: v0.18.3Compare Source
New
language
field in create transcription request #188 by @TaoaozwThank you Contributors
v0.18.2
: v0.18.2Compare Source
New
Thank you Contributors
v0.18.1
: v0.18.1Compare Source
New
ModifyAssistantRequest
in #174 by @CakeCrusherexperiments
branch) #178 by @ifsheldonThank you Contributors
postcss/autoprefixer (autoprefixer)
v10.4.17
Compare Source
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.33Compare Source
This release fixes the broken docrs.rs build of chrono 0.4.32.
What's Changed
rkyv
feature implysize_32
(#1383)Duration::hours()
exception (#1384, thanks @danwilliams)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
andDuration
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 aDateTime
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 forDebug
output.In chrono 0.4.32 the range of
NaiveDate
,NaiveDateTime
andDateTime
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 theMIN
andMAX
dates.Duration
had a similar issue. The range of this type was pretty arbitrary picked to match the range of ani64
in milliseconds. Negating ani64::MIN
pushes a value out of range, and in the same way negatingDuration::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.rkyv
.NaiveDateTime
are now const.DateTime
const in a future release.Complete list of changes:
Fixes
TimeZone::from_local_datetime
(#1071)DateTime
getters and setters (#1317, #1329)Additions
NaiveDateTime::checked_(add|sub)_offset
(#1313)DateTime::to_utc
(#1325)Default
forDuration
(#1327)Duration::subsec_nanos
(#1327)try_*
builders toDuration
(#1327)AddAssign
andSubAssign
forDuration
(#1327)NaiveDateTime
const where possible (#1286)clock
feature intoclock
andnow
(#1343, thanks @mmastrac)From<NaiveDate>
forNaiveDateTime
(#1355, thanks @dcechano)NaiveDateTime::from_timestamp_nanos
(#1357, thanks @Ali-Mirghasemi)Months::num_months()
andnum_years()
(#1373, thanks @danwilliams)DateTime<Utc>::from_timestamp_millis
(#1374, thanks @xmakro)Changes
Duration::MIN.abs()
(adjustDuration::MIN
by 1 millisecond) (#1334)Deprecations
format
functions (#1306)Documentation
doc_auto_cfg
(#1305, #1326)Add
/Sub
impls and useexpect
(#1316)TimeZone::datetime_from_str
(#1342, thanks @tmccombs)Datelike
impl forDateTime
(#1376, thanks @ElectrifyPro)Rkyv support
Archived*
types inrkyv
module (#1304)Archived*
types (#1271, thanks @Awpteamoose)Changes to unstable features
unstable-locales
imply thealloc
feature (#1307)format::{format_localized, format_item_localized}
(#1311)write_rfc2822_inner
, don't localize (#1322)Internal
DateTime::with_*
(#1309)*_DAYS_FROM_YEAR_0
calculation (#1312)NaiveTime::overflowing_(add|sub)_offset
(#1310)DateTime::overflowing_(add|sub)_offset
(#1069)set env LC_ALL
(#1315, thanks @jtmoon79)deny.toml
(#1320)with: node-version
(#1352, thanks @jtmoon79)toml
job (#1371, thanks @gibbz00)Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
motdotla/dotenv (dotenv)
v16.4.1
Compare Source
path
option #797v16.4.0
Compare Source
error.code
to error messages around.env.vault
decryption handling #795.env.vault
file when filename(s) passed as an array #784v16.3.2
Compare Source
Added
Changed
populate
#792vercel/next.js (eslint-config-next)
v14.1.0
Compare Source
gbaranski/ezsockets (ezsockets)
v0.6.2
MessageSignal::new()
.image-rs/image (image)
v0.24.8
Compare Source
New features:
DynamicImage::new
method.PngDecoder::gamma_value
method.ImageFormat::{reading_enabled, writing_enabled, all}
.rayon
feature.Bug fixes:
GifDecoder::with_limits
to raise an error when limits are exceeded.okonet/lint-staged (lint-staged)
v15.2.2
Compare Source
Patch Changes
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
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 thestdin
of the spawned commands has accepted input, and essentially gotten stuck waiting. Now thestdin
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
Resume audio playback status when switching back to tab on iOS -
c247f7d67c423f5d7ea09549cd2eb44a95762cbb
(@lukasIO)Buffer room events during reconnect -
f83124d881dc962ff940b806c45da4d1b8c0b86e
(@lukasIO)Fix state handling issue in SignalClient -
1200535d0c87d127cebd0b07330dd0a688843287
(@holzgeist)v1.15.10
1.15.10
Patch Changes
dc95472cca12ad3b150e824da8e3f7e387de0e12
(@lukasIO)1.15.9
Patch Changes
Fix for recovering SignalChannel closing during reconnect -
d1fa7554630d9f9fd787784b154eb460c8568894
(@lukasIO)Log server offer sdp -
6cd3ae5f0c3c30ce852d7b3f000f1adf2e08eb96
(@lukasIO)Full Changelog: livekit/client-sdk-js@v1.15.8...v1.15.10
v1.15.9
Patch Changes
Fix for recovering SignalChannel closing during reconnect -
d1fa7554630d9f9fd787784b154eb460c8568894
(@lukasIO)Log server offer sdp -
6cd3ae5f0c3c30ce852d7b3f000f1adf2e08eb96
(@lukasIO)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
object-hash
library instead ofnode-object-hash
for hashing keys of side-effects cache #7591.bundledDependencies
should never be added to the lockfile withfalse
as the value #7576.Platinum Sponsors
Gold Sponsors
Our Silver Sponsors
v8.15.0
Compare Source
Minor Changes
package.json
but a license file exists, try to match and extract the license name #7530.Patch Changes
pnpm update -r --latest
will no longer downgrade prerelease dependencies #7436.--aggregate-output
should work on scripts executed from the same project #7556.pnpm update --latest
runs with arguments containing versions specs. For instance,pnpm update --latest foo@next
is not allowed #7567.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.
This PR has been generated by Mend Renovate. View repository job log here.