Sourced from rack's changelog.
[3.1.8] - 2024-10-14
Fixed
- Resolve deprecation warnings about uri
DEFAULT_PARSER
. (#2249, [@earlopain
])
0eabeb7
Bump patch version.f4f7103
Resolve deprecation warnings about uri DEFAULT_PARSER
(#2242) (#2249)Sourced from rubocop-rspec's releases.
RuboCop RSpec v3.2.0
- Fix
RSpec/VoidExpect
to only operate inside an example block. (@corsonknowles
)- Change
RSpec/ContextWording
cop to always report an offense when bothPrefixes
andAllowedPatterns
are empty. (@ydah
)- Add support for
and
andor
compound matchers toRSpec/ChangeByZero
cop. (@ydah
)
Sourced from rubocop-rspec's changelog.
3.2.0 (2024-10-26)
- Fix
RSpec/VoidExpect
to only operate inside an example block. ([@corsonknowles
])- Change
RSpec/ContextWording
cop to always report an offense when bothPrefixes
andAllowedPatterns
are empty. ([@ydah
])- Add support for
and
andor
compound matchers toRSpec/ChangeByZero
cop. ([@ydah
])
50ac5ab
Merge pull request #1987
from rubocop/release39b0d3f
Release v3.2.06584b4a
Merge pull request #1985
from rubocop/revert-unwanted-change530af44
Merge pull request #1975
from corsonknowles/require_void_expect_acts_inside_a...6cbe423
Update CHANGELOG.mdeb61748
Revert an change that would conceal unintentional RSpec syntax427d19d
Merge branch 'master' into
require_void_expect_acts_inside_an_example_block954a45f
Merge pull request #1984
from rubocop/fixcbz130c564
Fix an error for RSpec/ChangeByZero
when change (...)
.by (0)
and `change...ff444c2
Merge pull request #1982
from rubocop/improve-cwcSourced from json-schema's changelog.
v5.0.1 (2024-10-03)
Fixed bugs:
- Load rake tasks from voxpupuli-rubocop #527 (bastelfreak)
Sourced from rubocop's releases.
RuboCop 1.68
New features
- #13050: Add new
Style/BitwisePredicate
cop. (@koic
)- #12140: Add new
Style/CombinableDefined
cop. (@dvandersluis
)- #12988: Add new
Style/AmbiguousEndlessMethodDefinition
cop. (@dvandersluis
)- #11514: Add new
Lint/UnescapedBracketInRegexp
cop. (@dvandersluis
)- #13360: Add
AllowSteepAnnotation
config option toLayout/LeadingCommentSpace
. (@tk0miya
)- #13146: Add new
IgnoreDuplicateElseBranch
option toLint/DuplicateBranch
. (@fatkodima
)- #13171: Add new
Style/SafeNavigationChainLength
cop. (@fatkodima
)- #13252: Add new
Style/KeywordArgumentsMerging
cop. (@fatkodima
)Bug fixes
- #13401: Fix a false negative for
Style/RedundantLineContinuation
when there is a line continuation at the EOF. (@koic
)- #13368: Fix an incorrect autocorrect for
Naming/BlockForwarding
withStyle/ExplicitBlockArgument
. (@koic
)- #13391: Fix deserialization of unknown encoding offenses. (
@earlopain
)- #13348: Ensure
Style/BlockDelimiters
autocorrection does not move other code between the block and comment. (@dvandersluis
)- #13382: Fix an error during error handling for custom ruby extractors when the extractor is a class. (
@earlopain
)- #13309: Fix a false negative for
Lint/UselessAssignment
cop when there is a useless assignment followed by a block. (@pCosta99
)- #13255: Fix false negatives for
Style/MapIntoArray
when using non-splatted arguments. (@vlad-pisanov
)- #13356: Fix a false positive for
Layout/SpaceBeforeBrackets
when there is a dot before[]=
. (@earlopain
)- #13365: Fix false positives for
Lint/SafeNavigationConsistency
when using safe navigation on the LHS with operator method on the RHS of&&
. (@koic
)- #13390: Fix false positives for
Style/GuardClause
when using a local variable assigned in a conditional expression in a branch. (@koic
)- #13337: Fix false positives for
Style/RedundantLineContinuation
when required line continuations for&&
is used with an assignment after a line break. (@koic
)- #13387: Fix false positives in
Style/RedundantParentheses
when parentheses are used around method chain withdo
...end
block in keyword argument. (@koic
)- #13341: Fix false positives for
Lint/SafeNavigationChain
when a safe navigation operator is used with a method call as the RHS operand of&&
for the same receiver. (@koic
)- #13324: Fix
--disable-uncorrectable
to not insert a comment inside a string continuation. (@dvandersluis
)- #13364: Fix incorrect autocorrect with
Lint/UselessAssignment
a multiple assignment orfor
contains an inner assignment. (@dvandersluis
)- #13353: Fix an incorrect autocorrect for
Style/BlockDelimiters
whenEnforcedStyle: semantic
is set and used withLayout/SpaceInsideBlockBraces
. (@koic
)- #13361: Fix false positives for
Style/RedundantInterpolationUnfreeze
andStyle/RedundantFreeze
when strings contain interpolated global, instance, and class variables. (@vlad-pisanov
)- #13343: Prevent
Layout/LineLength
from breaking up a method with arguments chained onto a heredoc delimiter. (@dvandersluis
)- #13374: Return exit code 0 with
--display-only-correctable
and--display-only-safe-correctable
when no offenses are displayed. (@dvandersluis
)- #13193: Fix false positive in
Style/MultipleComparison
whenComparisonsThreshold
exceeds 2. (@fatkodima
,@vlad-pisanov
)- #13325: Fix an incorrect autocorrect for
Lint/NonAtomicFileOperation
when using a postfixunless
for file existence checks before creating a file, in cases withDir.mkdir
. ([@kotaro0522
][])- #13397: Update
PercentLiteralCorrector
to be able to write pairs of delimiters without excessive escaping. (@dvandersluis
)- #13336: Update
Style/SafeNavigation
to not autocorrect if the RHS of anand
node is anor
node. (@dvandersluis
)- #13378: When removing parens in
Style/TernaryParentheses
with asend
node condition, ensure its arguments are parenthesized. (@dvandersluis
)Changes
- #13347: When running
rubocop -V
, show the analysis Ruby version of the current directory. (@earlopain
)
... (truncated)
Sourced from rubocop's changelog.
1.68.0 (2024-10-31)
New features
- #13050: Add new
Style/BitwisePredicate
cop. ([@koic
][])- #12140: Add new
Style/CombinableDefined
cop. ([@dvandersluis
][])- #12988: Add new
Style/AmbiguousEndlessMethodDefinition
cop. ([@dvandersluis
][])- #11514: Add new
Lint/UnescapedBracketInRegexp
cop. ([@dvandersluis
][])- #13360: Add
AllowSteepAnnotation
config option toLayout/LeadingCommentSpace
. ([@tk0miya
][])- #13146: Add new
IgnoreDuplicateElseBranch
option toLint/DuplicateBranch
. ([@fatkodima
][])- #13171: Add new
Style/SafeNavigationChainLength
cop. ([@fatkodima
][])- #13252: Add new
Style/KeywordArgumentsMerging
cop. ([@fatkodima
][])Bug fixes
- #13401: Fix a false negative for
Style/RedundantLineContinuation
when there is a line continuation at the EOF. ([@koic
][])- #13368: Fix an incorrect autocorrect for
Naming/BlockForwarding
withStyle/ExplicitBlockArgument
. ([@koic
][])- #13391: Fix deserialization of unknown encoding offenses. ([
@earlopain
][])- #13348: Ensure
Style/BlockDelimiters
autocorrection does not move other code between the block and comment. ([@dvandersluis
][])- #13382: Fix an error during error handling for custom ruby extractors when the extractor is a class. ([
@earlopain
][])- #13309: Fix a false negative for
Lint/UselessAssignment
cop when there is a useless assignment followed by a block. ([@pCosta99
][])- #13255: Fix false negatives for
Style/MapIntoArray
when using non-splatted arguments. ([@vlad-pisanov
][])- #13356: Fix a false positive for
Layout/SpaceBeforeBrackets
when there is a dot before[]=
. ([@earlopain
][])- #13365: Fix false positives for
Lint/SafeNavigationConsistency
when using safe navigation on the LHS with operator method on the RHS of&&
. ([@koic
][])- #13390: Fix false positives for
Style/GuardClause
when using a local variable assigned in a conditional expression in a branch. ([@koic
][])- #13337: Fix false positives for
Style/RedundantLineContinuation
when required line continuations for&&
is used with an assignment after a line break. ([@koic
][])- #13387: Fix false positives in
Style/RedundantParentheses
when parentheses are used around method chain withdo
...end
block in keyword argument. ([@koic
][])- #13341: Fix false positives for
Lint/SafeNavigationChain
when a safe navigation operator is used with a method call as the RHS operand of&&
for the same receiver. ([@koic
][])- #13324: Fix
--disable-uncorrectable
to not insert a comment inside a string continuation. ([@dvandersluis
][])- #13364: Fix incorrect autocorrect with
Lint/UselessAssignment
a multiple assignment orfor
contains an inner assignment. ([@dvandersluis
][])- #13353: Fix an incorrect autocorrect for
Style/BlockDelimiters
whenEnforcedStyle: semantic
is set and used withLayout/SpaceInsideBlockBraces
. ([@koic
][])- #13361: Fix false positives for
Style/RedundantInterpolationUnfreeze
andStyle/RedundantFreeze
when strings contain interpolated global, instance, and class variables. ([@vlad-pisanov
][])- #13343: Prevent
Layout/LineLength
from breaking up a method with arguments chained onto a heredoc delimiter. ([@dvandersluis
][])- #13374: Return exit code 0 with
--display-only-correctable
and--display-only-safe-correctable
when no offenses are displayed. ([@dvandersluis
][])- #13193: Fix false positive in
Style/MultipleComparison
whenComparisonsThreshold
exceeds 2. ([@fatkodima
][],[@vlad-pisanov
][])- #13325: Fix an incorrect autocorrect for
Lint/NonAtomicFileOperation
when using a postfixunless
for file existence checks before creating a file, in cases withDir.mkdir
. ([@kotaro0522
][])- #13397: Update
PercentLiteralCorrector
to be able to write pairs of delimiters without excessive escaping. ([@dvandersluis
][])- #13336: Update
Style/SafeNavigation
to not autocorrect if the RHS of anand
node is anor
node. ([@dvandersluis
][])- #13378: When removing parens in
Style/TernaryParentheses
with asend
node condition, ensure its arguments are parenthesized. ([@dvandersluis
][])Changes
- #13347: When running
rubocop -V
, show the analysis Ruby version of the current directory. ([@earlopain
][])1.67.0 (2024-10-15)
New features
... (truncated)
7d35ef7
Cut 1.683033deb
Update Changelog37e9e5f
[Fix #12140]
Add new Style/CombinableDefined
cop.f8aa27f
Fix a false negative for
Style/RedundantLineContinuation
d033a5e
Merge pull request #13400
from Earlopain/offense-cop-name-docsfaaa349
Fix docs for Offense.cop_name
85f9405
Fix deserialization of unknown encoding offensesd499d80
[Fix #13387]
Fix false positives for Style/RedundantParentheses
3e855b0
Merge pull request #13399
from dvandersluis/fix-and-offense-typo1f58513
Fix typos and offense
instead of an
offense
.Sourced from composer/composer's releases.
2.8.2
- Fixed crash while suggesting providers if they have no description (#12152)
- Fixed issues creating lock files violating the schema in some circumstances (#12149)
- Fixed
create-project
regression in 2.8.1 when using path repos with relative paths (#12150)- Fixed ctrl-C aborts not working inside text prompts (#12106)
- Fixed git failing silently when git cannot read a repo due to ownership violations (#12178)
- Fixed handling of signals in non-PHP binaries run via proxies (#12176)
Full Changelog: https://github.com/composer/composer/compare/2.8.1...2.8.2
2.8.1
- Fixed
init
command regression when no license is provided (#12145)- Fixed
--strict-ambiguous
flag handling whereas it sometimes did not report all issues (#12148)- Fixed
create-project
to inherit the target folder's permissions for installed project files (#12146)- Fixed a few cases where the prompt for using a parent dir's composer.json fails to work correctly (#8023)
Full Changelog: https://github.com/composer/composer/compare/2.8.0...2.8.1
2.8.0
- BC Warning: Fixed
https_proxy
env var falling back tohttp_proxy
's value. The fallback and warning have now been removed per the 2.7.3 release notes (#11938, #11915)- Added
--patch-only
flag to theupdate
command to restrict updates to patch versions and make an update of all deps safer (#12122)- Added
--abandoned
flag to theaudit
command to configure how abandoned packages should be treated, overriding theaudit.abandoned
config setting (#12091)- Added
--ignore-severity
flag to theaudit
command to ignore one or more advisory severities (#12132)- Added
--bump-after-update
flag to theupdate
command to run bump after the update is done (#11942)- Added a way to control which
scripts
receive additional CLI arguments and where they appear in the command, see the docs (#12086)- Added
allow-missing-requirements
config setting to skip the error when the lock file is not fulfilling the composer.json's dependencies (#11966)- Added a JSON schema for the composer.lock file (#12123)
- Added better support for Bitbucket app passwords when cloning repos / installing from source (#12103)
- Added
--type
flag to filter packages by type(s) in thereinstall
command (#12114)- Added
--strict-ambiguous
flag to thedump-autoload
command to make it return with an error code if duplicate classes are found (#12119)- Added warning in
dump-autoload
when vendor files have been deleted (#12139)- Added warnings for each missing platform package when running
create-project
to avoid having to run it again and again (#12120)- Added sorting of packages in allow-plugins when
sort-packages
is enabled (#11348)- Added suggestion of provider packages / polyfills when an ext or lib package is missing (#12113)
- Improved interactive package update selection by first outputting all packages and their possible updates (#11990)
- Improved dependency resolution failure output by sorting the output in a deterministic and (often) more logical way (#12111)
- Fixed PHP 8.4 deprecation warnings about
E_STRICT
(#12116)- Fixed
init
command to validate the given license identifier (#12115)- Fixed version guessing to be more deterministic on feature branches if it appears that it could come from either of two mainline branches (#12129)
- Fixed COMPOSER_ROOT_VERSION env var handling to treat 1.2 the same as 1.2.x-dev and not 1.2.0 (#12109)
- Fixed require command skipping new stability flags from the lock file, causing invalid lock file diffs (#12112)
- Fixed php://stdin potentially being open several times when running Composer programmatically (#12107)
- Fixed handling of platform packages in why-not command and partial updates (#12110)
- Reverted "Fixed transport-options.ssl for local cert authorization being stored in lock file making them less portable (#12019)" from 2.7.8 as it was broken
Full Changelog: https://github.com/composer/composer/compare/2.7.9...2.8.0
Sourced from composer/composer's changelog.
[2.8.2] 2024-10-29
- Fixed crash while suggesting providers if they have no description (#12152)
- Fixed issues creating lock files violating the schema in some circumstances (#12149)
- Fixed
create-project
regression in 2.8.1 when using path repos with relative paths (#12150)- Fixed ctrl-C aborts not working inside text prompts (#12106)
- Fixed git failing silently when git cannot read a repo due to ownership violations (#12178)
- Fixed handling of signals in non-PHP binaries run via proxies (#12176)
[2.8.1] 2024-10-04
- Fixed
init
command regression when no license is provided (#12145)- Fixed
--strict-ambiguous
flag handling whereas it sometimes did not report all issues (#12148)- Fixed
create-project
to inherit the target folder's permissions for installed project files (#12146)- Fixed a few cases where the prompt for using a parent dir's composer.json fails to work correctly (#8023)
[2.8.0] 2024-10-02
- BC Warning: Fixed
https_proxy
env var falling back tohttp_proxy
's value. The fallback and warning have now been removed per the 2.7.3 release notes (#11938, #11915)- Added
--patch-only
flag to theupdate
command to restrict updates to patch versions and make an update of all deps safer (#12122)- Added
--abandoned
flag to theaudit
command to configure how abandoned packages should be treated, overriding theaudit.abandoned
config setting (#12091)- Added
--ignore-severity
flag to theaudit
command to ignore one or more advisory severities (#12132)- Added
--bump-after-update
flag to theupdate
command to run bump after the update is done (#11942)- Added a way to control which
scripts
receive additional CLI arguments and where they appear in the command, see the docs (#12086)- Added
allow-missing-requirements
config setting to skip the error when the lock file is not fulfilling the composer.json's dependencies (#11966)- Added a JSON schema for the composer.lock file (#12123)
- Added better support for Bitbucket app passwords when cloning repos / installing from source (#12103)
- Added
--type
flag to filter packages by type(s) in thereinstall
command (#12114)- Added
--strict-ambiguous
flag to thedump-autoload
command to make it return with an error code if duplicate classes are found (#12119)- Added warning in
dump-autoload
when vendor files have been deleted (#12139)- Added warnings for each missing platform package when running
create-project
to avoid having to run it again and again (#12120)- Added sorting of packages in allow-plugins when
sort-packages
is enabled (#11348)- Added suggestion of provider packages / polyfills when an ext or lib package is missing (#12113)
- Improved interactive package update selection by first outputting all packages and their possible updates (#11990)
- Improved dependency resolution failure output by sorting the output in a deterministic and (often) more logical way (#12111)
- Fixed PHP 8.4 deprecation warnings about
E_STRICT
(#12116)- Fixed
init
command to validate the given license identifier (#12115)- Fixed version guessing to be more deterministic on feature branches if it appears that it could come from either of two mainline branches (#12129)
- Fixed COMPOSER_ROOT_VERSION env var handling to treat 1.2 the same as 1.2.x-dev and not 1.2.0 (#12109)
- Fixed require command skipping new stability flags from the lock file, causing invalid lock file diffs (#12112)
- Fixed php://stdin potentially being open several times when running Composer programmatically (#12107)
- Fixed handling of platform packages in why-not command and partial updates (#12110)
- Reverted "Fixed transport-options.ssl for local cert authorization being stored in lock file making them less portable (#12019)" from 2.7.8 as it was broken
6e543d0
Release 2.8.2f956683
Update changeloge02f7ba
Fix parsing of comments in arrays of sponsor info, fixes composer/packagist#1473e0ed22b
Warn/throw when we detect git safe.directory errors (#12178)1f0d012
Add hint how ambiguous class issues can be resolved, refs #6221
(#12179)5c3f6e0
Remove SignalHandler from Application to fix issues handling ctrl-C
inside pr...e12cfa0
Fix create-project regression when using path repos with relative paths,
fixe...fa5b361
Fix handling of signals in non-PHP binaries run via proxies (#12176)0a4c2a9
Update deps186d78c
Add php-ext to array dumperSourced from symfony/http-foundation's releases.
v6.4.14
Changelog (https://github.com/symfony/http-foundation/compare/v6.4.13...v6.4.14)
- security symfony/symfony#cve-2024-50345 [HttpFoundation] Reject URIs that contain invalid characters (
@nicolas-grekas
)v6.4.13
Changelog (https://github.com/symfony/http-foundation/compare/v6.4.12...v6.4.13)
- bug symfony/symfony#58619 [HttpFoundation][Lock] Ensure compatibility with ext-mongodb v2 (
@GromNaN
)v6.4.12
Changelog (https://github.com/symfony/http-foundation/compare/v6.4.11...v6.4.12)
- bug symfony/symfony#58181 [HttpFoundation] Update links for
X-Accel-Redirect
and fail properly whenX-Accel-Mapping
is missing (@nicolas-grekas
)- bug symfony/symfony#58218 Work around
parse_url()
bug (@nicolas-grekas
)
ba020a3
Merge branch '5.4' into 6.4168b77c
security #cve-2024-50345 [HttpFoundation] Reject URIs that contain
invalid ch...4875486
Merge branch '5.4' into 6.432310ff
[HttpFoundation] Reject URIs that contain invalid characters38bd9bc
[HttpFoundation] Remove invalid HTTP method from exception message3f38426
Ensure compatibility with mongodb v24c0341b
Merge branch '5.4' into 6.435f7b4c
session names must not be empty3363819
Merge branch '5.4' into 6.4e641edd
ensure session storages are opened in tests before destroying themSourced from laravel/framework's releases.
v10.48.23
- [10.x] Ensure headers are only attached to illuminate responses by
@timacdonald
in laravel/framework#53019- [10.x] Fix append and prepend batch to chain by
@Bencute
in laravel/framework#53455v10.48.22
No release notes provided.
v10.48.21
- [10.x] Fixes
whereDate
,whereDay
,whereMonth
,whereTime
,whereYear
andwhereJsonLength
to ignore invalid$operator
by@crynobone
in laravel/framework#52704- Fix arguments passed to artisan commands that start with 'env' by
@willrowe
in laravel/framework#52748
625269c
Update version to v10.48.238c07b63
check for running in console7ccb4dc
[10.x] Fix append and prepend batch to chain (#53455)646520a
Ensure headers are only attached to illuminate responses (#53019)1b3ef8f
Update CHANGELOGc4ea52b
Update version to v10.48.220124751
wip58c2053
Fix arguments passed to artisan commands that start with 'env' (#52748)80cdd87
[10.x] Fixes whereDate
, whereDay
,
whereMonth
, whereTime
, whereYear
...05a9554
Update CHANGELOGSourced from symfony/http-foundation's releases.
v6.4.15
Changelog (https://github.com/symfony/http-foundation/compare/v6.4.14...v6.4.15)
- no significant changes
v6.4.14
Changelog (https://github.com/symfony/http-foundation/compare/v6.4.13...v6.4.14)
- security symfony/symfony#cve-2024-50345 [HttpFoundation] Reject URIs that contain invalid characters (
@nicolas-grekas
)v6.4.13
Changelog (https://github.com/symfony/http-foundation/compare/v6.4.12...v6.4.13)
- bug symfony/symfony#58619 [HttpFoundation][Lock] Ensure compatibility with ext-mongodb v2 (
@GromNaN
)v6.4.12
Changelog (https://github.com/symfony/http-foundation/compare/v6.4.11...v6.4.12)
- bug symfony/symfony#58181 [HttpFoundation] Update links for
X-Accel-Redirect
and fail properly whenX-Accel-Mapping
is missing (@nicolas-grekas
)- bug symfony/symfony#58218 Work around
parse_url()
bug (@nicolas-grekas
)
9b3165e
require Cache component versions compatible with Redis 6.1ba020a3
Merge branch '5.4' into 6.4168b77c
security #cve-2024-50345 [HttpFoundation] Reject URIs that contain
invalid ch...4875486
Merge branch '5.4' into 6.432310ff
[HttpFoundation] Reject URIs that contain invalid characters38bd9bc
[HttpFoundation] Remove invalid HTTP method from exception message3f38426
Ensure compatibility with mongodb v24c0341b
Merge branch '5.4' into 6.435f7b4c
session names must not be empty3363819
Merge branch '5.4' into 6.4Sourced from rexml's releases.
REXML 3.3.9 - 2024-10-24
Improvements
- Improved performance.
- GH-210
- Patch by NAITOH Jun.
Fixes
Fixed a parse bug for text only invalid XML.
- GH-215
- Patch by NAITOH Jun.
Fixed a parse bug that
�x...;
is accepted as a character reference.Thanks
- NAITOH Jun
Sourced from rexml's changelog.
3.3.9 - 2024-10-24 {#version-3-3-9}
Improvements
- Improved performance.
- GH-210
- Patch by NAITOH Jun.
Fixes
Fixed a parse bug for text only invalid XML.
- GH-215
- Patch by NAITOH Jun.
Fixed a parse bug that
�x...;
is accepted as a character reference.Thanks
- NAITOH Jun
Sourced from symfony/process's releases.
v6.4.15
Changelog (https://github.com/symfony/process/compare/v6.4.14...v6.4.15)
- no significant changes
v6.4.14
Changelog (https://github.com/symfony/process/compare/v6.4.13...v6.4.14)
- security symfony/symfony#cve-2024-51736 [Process] Use PATH before CD to load the shell on Windows (
@nicolas-grekas
)- bug symfony/symfony#58752 [Process] Fix escaping /X arguments on Windows (
@nicolas-grekas
)- bug symfony/symfony#58735 [Process] Return built-in cmd.exe commands directly in ExecutableFinder (
@Seldaek
)- bug symfony/symfony#58723 [Process] Properly deal with not-found executables on Windows (
@nicolas-grekas
)- bug symfony/symfony#58711 [Process] Fix handling empty path found in the PATH env var with ExecutableFinder (
@nicolas-grekas
)
3cb242f
Merge branch '5.4' into 6.45d1662f
normalize paths to avoid failures if a path is referenced by different
names25214ad
Merge branch '5.4' into 6.40190687
[Process] Fix test88638b9
Merge branch '5.4' into 6.4ee75984
security #cve-2024-51736 [Process] Use %PATH% before %CD% to load the
shell o...05c2ccc
[Process] Use %PATH% before %CD% to load the shell on Windows0776b99
Merge branch '5.4' into 6.4d94dda5
[Process] Fix escaping /X arguments on Windows836d34f
Merge branch '5.4' into 6.4Sourced from pino's releases.
v9.5.0
What's Changed
- build(deps-dev): bump
@yao-pkg/pkg
from 5.12.1 to 5.13.0 by@dependabot
in pinojs/pino#2042- build(deps): bump pino-abstract-transport from 1.2.0 to 2.0.0 by
@dependabot
in pinojs/pino#2043- Update transports.md by
@Jhon-Mosk
in pinojs/pino#2041- doc: Add Transport
@macfja/pino-fingers-crossed
by@MacFJA
in pinojs/pino#2047- build(deps-dev): bump
@yao-pkg/pkg
from 5.13.0 to 5.15.0 by@dependabot
in pinojs/pino#2050- docs->added pino-hana transport by
@HiImGiovi
in pinojs/pino#2059- docs -> #2061 Alphabetize transport list and reorder sections in documentation by
@superherobtf1985
in pinojs/pino#2062- feature: allow sync flag to be passed to ThreadStream for synchronous… by
@karankraina
in pinojs/pino#2063- fix: Ensure silent log level is respected with browser.transmit option by
@SrsDanny
in pinojs/pino#2052New Contributors
@MacFJA
made their first contribution in pinojs/pino#2047@HiImGiovi
made their first contribution in pinojs/pino#2059@superherobtf1985
made their first contribution in pinojs/pino#2062@karankraina
made their first contribution in pinojs/pino#2063@SrsDanny
made their first contribution in pinojs/pino#2052Full Changelog: https://github.com/pinojs/pino/compare/v9.4.0...v9.5.0
bb68e01
Bumped v9.5.084bbd35
fix: Ensure silent log level is respected with browser.transmit option
(#2052)5bc0a92
feature: allow sync flag to be passed to ThreadStream for synchronous…
(#2063)f220965
docs -> #2061
Alphabetize transport list and reorder sections in documentatio...d32fd55
docs->added pino-hana transport (#2059)7cff45a
build(deps-dev): bump @yao-pkg/pkg
from 5.13.0 to 5.15.0
(#2050)cd09737
doc: Add Transport @macfja/pino-fingers-crossed
(#2047)0ab1bdd
Update transports.md (#2041)de5a697
build(deps): bump pino-abstract-transport from 1.2.0 to 2.0.0 (#2043)eef2f87
build(deps-dev): bump @yao-pkg/pkg
from 5.12.1 to 5.13.0
(#2042)Sourced from pino-pretty's releases.
v11.3.0
What's Changed
- Bump
@types/node
from 20.14.13 to 22.0.0 by@dependabot
in pinojs/pino-pretty#523- fix: ndjson incorrect url by
@Livour
in pinojs/pino-pretty#528- Bump pino-abstract-transport from 1.2.0 to 2.0.0 by
@dependabot
in pinojs/pino-pretty#531- Bump
@arethetypeswrong/cli
from 0.15.4 to 0.16.1 by@dependabot
in pinojs/pino-pretty#530- Wait for destination to close by
@mcollina
in pinojs/pino-pretty#533New Contributors
@Livour
made their first contribution in pinojs/pino-pretty#528Full Changelog: https://github.com/pinojs/pino-pretty/compare/v11.2.2...v11.3.0
80e16f7
Bumped v11.3.070ade71
Wait for destination to close (#533)ba1e844
Bump @arethetypeswrong/cli
from 0.15.4 to 0.16.1 (#530)10ef772
Bump pino-abstract-transport from 1.2.0 to 2.0.0 (#531)fc408ee
fix: ndjson incorrect url (#528)7830286
Bump @types/node
from 20.14.13 to 22.0.0 (#523)