Sourced from shlex's changelog.
1.3.0
- Full fix for the high-severity security vulnerability RUSTSEC-2024-0006 a.k.a. GHSA-r7qv-8r2h-pg27:
- Deprecates quote APIs in favor of
try_
equivalents that complain about nul bytes.- Also adds a builder API, which allows re-enabling nul bytes without using the deprecated interface, and in the future can allow other things (as discussed in quoting_warning).
- Adds documentation about various security risks that remain, particularly with interactive shells.
- Adds explicit MSRV of 1.46.0.
1.2.1
- Partial fix for the high-severity security vulnerability RUSTSEC-2024-0006 a.k.a. GHSA-r7qv-8r2h-pg27 without bumping MSRV:
- The bytes
{
and\xa0
are now escaped by quoting functions.
Sourced from h2's releases.
v0.3.24
Fixed
- Limit error resets for misbehaving connections.
v0.3.23
What's Changed
- cherry-pick fix: streams awaiting capacity lockout in hyperium/h2#734
Sourced from h2's changelog.
0.3.24 (January 17, 2024)
- Limit error resets for misbehaving connections.
0.3.23 (January 10, 2024)
- Backport fix from 0.4.1 for stream capacity assignment.
Sourced from h2's releases.
v0.3.24
Fixed
- Limit error resets for misbehaving connections.
v0.3.23
What's Changed
- cherry-pick fix: streams awaiting capacity lockout in hyperium/h2#734
Sourced from h2's changelog.
0.3.24 (January 17, 2024)
- Limit error resets for misbehaving connections.
0.3.23 (January 10, 2024)
- Backport fix from 0.4.1 for stream capacity assignment.
Sourced from axios's releases.
Release v1.6.7
Release notes:
Bug Fixes
Contributors to this release
Release v1.6.6
Release notes:
Bug Fixes
- fixed missed dispatchBeforeRedirect argument (#5778) (a1938ff)
- wrap errors to improve async stack trace (#5987) (123f354)
Contributors to this release
Sourced from axios's changelog.
1.6.7 (2024-01-25)
Bug Fixes
Contributors to this release
1.6.6 (2024-01-24)
Bug Fixes
- fixed missed dispatchBeforeRedirect argument (#5778) (a1938ff)
- wrap errors to improve async stack trace (#5987) (123f354)
Contributors to this release
a52e4d9
chore(release): v1.6.7 (#6204)2b69888
chore: remove unnecessary check (#6186)1a08f90
fix: capture async stack only for rejections with native error objects;
(#6203)104aa3f
chore(release): v1.6.6 (#6199)a1938ff
fix: fixed missed dispatchBeforeRedirect argument (#5778)123f354
fix: wrap errors to improve async stack trace (#5987)Sourced from chrono's releases.
0.4.33
What's Changed
- Fixed typo in Duration::hours() exception by
@danwilliams
in chronotope/chrono#1384- Make
rkyv
feature implysize_32
by@pitdicker
in chronotope/chrono#1383v0.4.32
What's Changed
- improve doc comment and tests for timestamp_nanos_opt by
@mlegner
in chronotope/chrono#1299- Export
Archived*
types inrkyv
module by@pitdicker
in chronotope/chrono#1304- Switch to
doc_auto_cfg
by@pitdicker
in chronotope/chrono#1305- duplicate derives on ArchivedT types (for rkyv feature) by
@Awpteamoose
in chronotope/chrono#1271- Deprecate standalone
format
functions by@pitdicker
in chronotope/chrono#1306- Add benchmark for
DateTime::with_*
by@pitdicker
in chronotope/chrono#1309- Don't let
unstable-locales
imply thealloc
feature by@pitdicker
in chronotope/chrono#1307- Remove
format::{format_localized, format_item_localized}
by@pitdicker
in chronotope/chrono#1311- Add
NaiveTime::overflowing_(add|sub)_offset
by@pitdicker
in chronotope/chrono#1310- Fix
*_DAYS_FROM_YEAR_0
calculation by@pitdicker
in chronotope/chrono#1312- Add
NaiveDateTime::checked_(add|sub)_offset
by@pitdicker
in chronotope/chrono#1313(overflowing|checked)_(add|sub)_offset
implementations by@pitdicker
in chronotope/chrono#1069- tests calling date command set env LC_ALL by
@jtmoon79
in chronotope/chrono#1315- Update
deny.toml
by@pitdicker
in chronotope/chrono#1320- Document panics in
Add
/Sub
impls and useexpect
by@pitdicker
in chronotope/chrono#1316- Fix panic in
TimeZone::from_local_datetime
by@pitdicker
in chronotope/chrono#1071- Add
DateTime::to_utc
by@pitdicker
in chronotope/chrono#1325- Fix out of range panics in
DateTime
getters and setters by@pitdicker
in chronotope/chrono#1317- Inline
write_rfc2822_inner
, don't localize by@pitdicker
in chronotope/chrono#1322- Documentation tweaks by
@pitdicker
in chronotope/chrono#1274- Remove unnecessary feature gate by
@pitdicker
in chronotope/chrono#1329- Fix quotes in docs.rs feature list by
@pitdicker
in chronotope/chrono#1326- Duration features part 1 by
@pitdicker
in chronotope/chrono#1327- Make methods on
NaiveDateTime
const where possible by@pitdicker
in chronotope/chrono#1286- Fix
Duration::MIN.abs()
(adjustDuration::MIN
by 1 millisecond) by@pitdicker
in chronotope/chrono#1334- archive derive of PartialEq for rkyv - 0.4.x by
@mkatychev
in chronotope/chrono#959- Bump actions/setup-node from 3 to 4 by
@dependabot
in chronotope/chrono#1346- test.yml remove errant
with: node-version
by@jtmoon79
in chronotope/chrono#1352- Bump MSRV to 1.60 by
@djc
in chronotope/chrono#1347- Split
clock
feature intoclock
andnow
by@mmastrac
in chronotope/chrono#1343- Update windows-targets requirement from 0.48 to 0.52 by
@dependabot
in chronotope/chrono#1360- Add From for NaiveDateTime by
@dcechano
in chronotope/chrono#1355- Add from_timestamp_nanos by
@Ali-Mirghasemi
in chronotope/chrono#1357- Silence clippy lint for test code by
@djc
in chronotope/chrono#1362- Expose rkyv features as features for chrono users. by
@gz
in chronotope/chrono#1368- docs: Improve deprecation of
TimeZone::datetime_from_str
by@tmccombs
in chronotope/chrono#1342- Add Months::num_months() and num_years() by
@danwilliams
in chronotope/chrono#1373- CI Linting: Fix missing sources checkout in
toml
job. by@gibbz00
in chronotope/chrono#1371- Add from_timestamp_millis to DateTime by
@xmakro
in chronotope/chrono#1374- Fix typos in Datelike impl for DateTime by
@ElectrifyPro
in chronotope/chrono#1376- Prepare 0.4.32 by
@djc
in chronotope/chrono#1378- Update windows-bindgen to 0.52 by
@djc
in chronotope/chrono#1379
... (truncated)
7c419a3
Prepare 0.4.33 releasea9b37c4
Make rkyv
feature default to size_32
a73b543
Don't assume rkyv-(16|32|64)
implies the rkyv
featureb5381f8
Fixed typo in Duration::hours() exceptionbf70419
527757386
Prepare 0.4.32 releasecee242a
Fix typos in Datelike impl for DateTime6ec8f97
Add from_timestamp_millis to DateTime<Utc> (#1374)65f0cc2
CI Linting: Fix missing sources checkout in toml
job.5536687
Add Months::as_u32() (#1373)29cf629
Merge pull request #4819 from
dvdksn/25.0_backport_docs_host-gateway-ip_daemo...4caf4de
docs: update host-gateway-ip to use daemon.json instead of cli flag950ecd4
Merge pull request #4815 from
thaJeztah/25.0_backport_update_compose6ab4781
Dockerfile: update docker compose to v2.24.2e8852e8
Merge pull request #4806 from
thaJeztah/25.0_backport_socket-eof-return4e097c6
socket: return from loop after EOF01f9332
Merge pull request #4803 from
thaJeztah/25.0_backport_update_engine4cd8d5c
Merge pull request #4804 from
dvdksn/backport_25.0_docs_fix_cli_broken_alias_...21c1284
docs: move base command to docker.md22e1f2c
docs: fix broken links to alias pagesSourced from @bufbuild/buf
's
releases.
v1.29.0
- Add support for
yaml
format. All commands that take image inputs, output images, or convert between message formats, now takeyaml
as a format, in addition to the existingbinpb
andtxtpb
formats. Some examples:
buf build -o image.yaml
buf ls-files image.yaml
buf convert --type foo.Bar --from input.binpb --to output.yaml
- The
yaml
andjson
formats now accept two new options:use_proto_names
anduse_enum_numbers
. This affects output serialization. Some examples:
buf convert --type foo.Bar --from input.binpb --to output.yaml#use_proto_names=true
buf convert --type foo.Bar --from input.binpb --to -#format=yaml,use_enum_numbers=true
- Fix issue where
buf format
would inadvertently mangle files that used the expandedAny
syntax in option values.
Sourced from @bufbuild/buf
's
changelog.
[v1.29.0] - 2024-01-24
- Add support for
yaml
format. All commands that take image inputs, output images, or convert between message formats, now takeyaml
as a format, in addition to the existingbinpb
andtxtpb
formats. Some examples:
buf build -o image.yaml
buf ls-files image.yaml
buf convert --type foo.Bar --from input.binpb --to output.yaml
- The
yaml
andjson
formats now accept two new options:use_proto_names
anduse_enum_numbers
. This affects output serialization. Some examples:
buf convert --type foo.Bar --from input.binpb --to output.yaml#use_proto_names=true
buf convert --type foo.Bar --from input.binpb --to -#format=yaml,use_enum_numbers=true
- Fix issue where
buf format
would inadvertently mangle files that used the expandedAny
syntax in option values.
c3d05c2
Release v1.29.0 (#2731)4b8e791
Fix InvalidRemoteErr panic (#2728)2e1d627
Enable govet nilness check and fix infractions (#2729)758b89d
Update docker dependency to latest (#2726)6966b31
Bump github.com/google/cel-go from 0.18.2 to 0.19.0 (#2721)33dfae6
Bump go.opentelemetry.io/otel/sdk from 1.21.0 to 1.22.0 (#2719)79fb9fa
Bump actions/cache from 3 to 4 (#2718)79d8ff4
Update protocompile to v0.8.0 (#2724)aad9426
Use methods instead of services in monthly max message (#2717)9e26fa5
Update license year range (#2712)Sourced from google.golang.org/grpc's releases.
Release 1.61.0
New Features
- resolver: provide method,
AuthorityOverrider
, to allow resolver.Builders to override the default authority for aClientConn
. (EXPERIMENTAL) (#6752)
- Special Thanks:
@Aditya-Sood
- xds: add support for mTLS Credentials in xDS bootstrap (gRFC A65) (#6757)
- Special Thanks:
@atollena
- server: add
grpc.WaitForHandlers
ServerOption
to causeServer.Stop
to block until method handlers return. (EXPERIMENTAL) (#6922)Performance Improvements
- grpc: skip compression of empty messages as an optimization (#6842)
- Special Thanks:
@jroper
- orca: use atomic pointer to improve performance in server metrics recorder (#6799)
- Special Thanks:
@danielzhaotongliu
Bug Fixes
- client: correctly enable TCP keepalives with OS defaults on windows (#6863)
- Special Thanks:
@mmatczuk
- server: change some stream operations to return
UNAVAILABLE
instead ofUNKNOWN
when underlying connection is broken (#6891)
- Special Thanks:
@mustafasen81
- server: fix
GracefulStop
to block until all method handlers return (v1.60 regression). (#6922)- server: fix two bugs that could lead to panics at shutdown when using
NumStreamWorkers
(EXPERIMENTAL). (#6856)- reflection: do not send invalid descriptors to clients for files that cannot be fully resolved (#6771)
- Special Thanks:
@jhump
- xds: don't fail channel/server startup when xds creds is specified, but bootstrap is missing certificate providers (#6848)
- xds: Atomically read and write xDS security configuration client side (#6796)
- xds/server: fix RDS handling for non-inline route configs (#6915)
8167bc3
Change version to 1.61.0 (#6936)52e2363
test/xds: Use different import path for gRPC Messages (#6933)67e50be
transport: Remove redundant if in handleGoAway (#6930)e96f521
alts: Extract AuthInfo after handshake in ALTS e2e test. (#6931)987df13
metadata: move FromOutgoingContextRaw() to internal (#6765)61eab37
server: block GracefulStop on method handlers and make blocking optional
for ...ddd377f
xds/server: fix RDS handling for non-inline route configs (#6915)8b455de
removing Roots deprecated Subjects field in tests (#6907)953d12a
alts: Forward-fix of ALTS queuing of handshake requests. (#6906)6ce73bf
internal/transport: convert ConnectionError
to
Unavailable
status when wr...Sourced from ts-proto's releases.
v1.167.0
1.167.0 (2024-01-22)
Features
v1.166.4
1.166.4 (2024-01-20)
Bug Fixes
Sourced from ts-proto's changelog.
1.167.0 (2024-01-22)
Features
1.166.4 (2024-01-20)
Bug Fixes
Sourced from @tanstack/match-sorter-utils
's
releases.
v8.11.7
Version 8.11.7 - 1/20/2024, 9:08 PM
Changes
Fix
- Update package.json repository and homepage fields (#5292) (56369bce) by Lachlan Collins
Chore
- svelte types workaround and simplify bug report template (#5280) (4e182ec7) by Kevin Van Cott
- upgrade example versions and deps (#5278) (a9a7668d) by Kevin Van Cott
Docs
- example: Use tsconfig from create-vite (Part II) (#5291) (9941ef1e) by
@lucascmelo
- examples: Use tsconfig from create-vite (#5286) (4f08e53f) by Lachlan Collins
- Use type imports for svelte examples (#5285) (6c3f6d80) by Lachlan Collins
- adjust infinite scrolling example height (f61a0224) by Kevin Vandy
- update infinite scrolling example (#5277) (d5f514a7) by Kevin Van Cott
- Row model docs (#5276) (801ee963) by Kevin Van Cott
Packages
@tanstack/table-core
@8
.11.7@tanstack/react-table
@8
.11.7@tanstack/solid-table
@8
.11.7@tanstack/vue-table
@8
.11.7@tanstack/svelte-table
@8
.11.7@tanstack/react-table-devtools
@8
.11.7@tanstack/match-sorter-utils
@8
.11.7v8.11.6
Version 8.11.6 - 1/12/2024, 12:07 AM
Changes
Fix
- contextDocument scope for SSR bug (0c0a9479) by Kevin Vandy
Packages
... (truncated)
764d5db
release: v8.11.756369bc
fix: Update package.json repository and homepage fields (#5292)Sourced from react-tooltip's releases.
v5.26.0
If you like the project, please give the project a GitHub 🌟
What's Changed
- Fix: remove anchor when
data-tooltip-id
gets changed by@mixrich
in ReactTooltip/react-tooltip#1153- Feature : defaultIsOpen is added by
@jpranays
in ReactTooltip/react-tooltip#1154New Contributors
@mixrich
made their first contribution in ReactTooltip/react-tooltip#1153@jpranays
made their first contribution in ReactTooltip/react-tooltip#1154Full Changelog: https://github.com/ReactTooltip/react-tooltip/compare/v5.25.2...v5.26.0
59bb0e5
chore(version): v5.26.079ac7dd
Updated docs/options2e6291c
Feature : defaultIsOpen is added6d2a880
Remove anchor when data-tooltip-id gets changedSourced from openssl's releases.
openssl-v0.10.63
What's Changed
- Allow passing a passphrase callback when loading a public key by
@alex
in sfackler/rust-openssl#2135- Expose several additional ciphers for symmetry with symm by
@alex
in sfackler/rust-openssl#2140- brew: add openssl@3.0 (for 3.0.x LTS releases) by
@chenrui333
in sfackler/rust-openssl#2141- Add PKey::from_dhx by
@alex
in sfackler/rust-openssl#2142- Make X509_PURPOSE opaque for LibreSSL >= 3.9.0 by
@botovq
in sfackler/rust-openssl#2145- PEM parsing: check last error instead of first by
@botovq
in sfackler/rust-openssl#2148- Expose brainpool NIDs on libressl by
@alex
in sfackler/rust-openssl#2150- Add two methods to the PKCS7 API by
@facutuesca
in sfackler/rust-openssl#2111- add more boringssl methods by
@zh-jq
in sfackler/rust-openssl#2138- Release openssl v0.10.63 and openssl-sys v0.9.99 by
@alex
in sfackler/rust-openssl#2152Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...openssl-v0.10.63
cc2850f
Merge pull request #2152
from alex/bump-for-releasefde3d03
Merge pull request #2138
from zh-jq/update-boringssl1951575
Release openssl v0.10.63 and openssl-sys v0.9.99951d771
Merge pull request #2111
from trail-of-forks/pkcs7-add-apisfb57f9f
Merge pull request #2150
from alex/brainpool-on-libresslca3f45d
Expose brainpool NIDs on libressla14146f
Merge pull request #2148
from botovq/fix_stack_from_pemaa26e97
PEM parsing: check last error instead of first06143eb
Merge pull request #2145
from botovq/opaque-purposebff0db7
Make X509_PURPOSE opaque for LibreSSL >= 3.9Sourced from stylelint-scss's releases.
6.1.0
- Added:
no-unused-private-members
rule (#949).- Added: support end positions for warnings (#899, #900, #901, #902, #903, #904, #905, #906, #907, #908, #909, #910, #911, #912, #913, #914, #915, #916, #917, #918, #919, #920, #921, #922, #923, #925, #926, #927, #928, #929, #930, #932, #933, #934, #935, #936, #937, #938, #939, #940).
- Fixed:
function-calculation-no-interpolation
allow calc function interpolation in SassScript (#947)- Fixed:
property-no-unknown
support deeper nested properties (#948)Full Changelog: https://github.com/stylelint-scss/stylelint-scss/compare/v6.0.0...v6.1.0
Sourced from stylelint-scss's changelog.
6.1.0
- Added:
no-unused-private-members
rule (#884).- Added: support end positions for warnings (#899, #900, #901, #902, #903, #904, #905, #906, #907, #908, #909, #910, #911, #912, #913, #914, #915, #916, #917, #918, #919, #920, #921, #922, #923, #925, #926, #927, #928, #929, #930, #932, #933, #934, #935, #936, #937, #938, #939, #940).
- Fixed:
function-calculation-no-interpolation
allow calc function interpolation in SassScript (#947)- Fixed:
property-no-unknown
support deeper nested properties (#948)Full Changelog: https://github.com/stylelint-scss/stylelint-scss/compare/v6.0.0...v6.1.0
090e1ee
6.1.0c6e2683
Set version back to 6.0.0 (this gets bumped by np)a417415
Update CHANGELOG for 6.1.0f4bf897
Update contributors list64e1b43
Set stylelint peer dep back to 16.0.2264aa53
build(deps-dev): bump stylelint from 16.1.0 to 16.2.0 (#951)8278856
build(deps-dev): bump prettier from 3.1.1 to 3.2.4 (#950)c67f54d
Add no-unused-private-members rule (#949)9bdfb71
Allow calc function interpolation in SassScript (#947)21f5039
property-no-unknown for deeper nested properties (#948)Sourced from @playwright/test
's
releases.
v1.41.1
Highlights
microsoft/playwright#29067 - [REGRESSION] Codegen/Recorder: not all clicks are being actioned nor recorded microsoft/playwright#29028 - [REGRESSION] React component tests throw type error when passing null/undefined to component microsoft/playwright#29027 - [REGRESSION] React component tests not passing Date prop values microsoft/playwright#29023 - [REGRESSION] React component tests not rendering children prop microsoft/playwright#29019 - [REGRESSION] trace.playwright.dev does not currently support the loading from URL
Browser Versions
- Chromium 121.0.6167.57
- Mozilla Firefox 121.0
- WebKit 17.4
This version was also tested against the following stable channels:
- Google Chrome 120
- Microsoft Edge 120
8f0163f
chore: mark 1.41.1 (#29075)98a6618
cherry-pick(#29069):
Revert "feat(codegen): add range input recording support...50f1f08
cherry-pick(#29070):
chore(ct): revert export mount resulte5d201b
cherry-pick(#29031):
fix(ct): allow passing date, url, bigint as properties8ee2d81
cherry-pick(#29026):
test: add a props.children test50a8e4f
cherry-pick(#29016):
chore: add an image import component testcb6c64c
cherry-pick(#28986):
fix(ct): move import list into the compilation cache data06518b2
cherry-pick(#28978):
chore: build import registry sourced47ed6a
cherry-pick(#28975):
chore: refactor import processing in ct4d9f923
cherry-pick(#29034):
docs: fix typo for stylePath (#29035)Sourced from @testing-library/jest-dom
's
releases.
v6.3.0
6.3.0 (2024-01-24)
Features
v6.2.1
6.2.1 (2024-01-22)
Bug Fixes
9787ed5
feat: Support for regular expressions in toHaveClass (#563)5675b86
fix: Standalone types for "./matchers" export and add Bun
support (#566)70d48be
chore(release): 29.1.219778bd
build: reference transform options via jest
TransformOptions
typea5d6f2d
fix: calculated cache key based on supportsStaticESM2d16f4a
test(e2e): remove onNodeVersions
function0861a66
build(deps): Update dependency node-fetch to ^3.3.2f41cc3e
build(deps): Update babel monorepo41b8460
build(deps): Update dependency docusaurus-remark-plugin-tab-blocks to
^1.3.1e7be4bf
fix: correct error handling in processAsync
e31d953
build(deps): Update actions/setup-node digest to 1a4442c622539d
build(deps): Update dependency @formatjs/ts-transformer
to
^3.13.9Sourced from @tanstack/react-table
's
releases.
v8.11.7
Version 8.11.7 - 1/20/2024, 9:08 PM
Changes
Fix
- Update package.json repository and homepage fields (#5292) (56369bce) by Lachlan Collins
Chore
- svelte types workaround and simplify bug report template (#5280) (4e182ec7) by Kevin Van Cott
- upgrade example versions and deps (#5278) (a9a7668d) by Kevin Van Cott
Docs
- example: Use tsconfig from create-vite (Part II) (#5291) (9941ef1e) by
@lucascmelo
- examples: Use tsconfig from create-vite (#5286) (4f08e53f) by Lachlan Collins
- Use type imports for svelte examples (#5285) (6c3f6d80) by Lachlan Collins
- adjust infinite scrolling example height (f61a0224) by Kevin Vandy
- update infinite scrolling example (#5277) (d5f514a7) by Kevin Van Cott
- Row model docs (#5276) (801ee963) by Kevin Van Cott
Packages