fix(deps): update all dependencies #3
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/all"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
2.17.0
->2.22.0
^2.8.8
->^3.0.0
~0.20.10
->~0.24.0
^0.20.8
->^0.24.0
^0.20.0
->^0.24.0
Release Notes
nodejs/nan (nan)
v2.22.0
Compare Source
6bd62c9
v2.21.0
Compare Source
a7df36e
v2.20.0
Compare Source
5805ca5
v2.19.0
Compare Source
1b630dd
v2.18.0
Compare Source
bdfee17
prettier/prettier (prettier)
v3.3.3
Compare Source
diff
Add parentheses for nullish coalescing in ternary (#16391 by @cdignam-segment)
This change adds clarity to operator precedence.
Add parentheses for decorator expressions (#16458 by @y-schneider)
Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.
Support
@let
declaration syntax (#16474 by @sosukesuzuki)Adds support for Angular v18
@let
declaration syntax.Please see the following code example. The
@let
declaration allows you to define local variables within the template:For more details, please refer to the excellent blog post by the Angular Team: Introducing @let in Angular.
We also appreciate the Angular Team for kindly answering our questions to implement this feature.
v3.3.2
Compare Source
diff
Fix handlebars path expressions starts with
@
(#16358 by @Princeyadav05)v3.3.1
Compare Source
diff
Preserve empty lines in front matter (#16347 by @fisker)
Preserve explicit language in front matter (#16348 by @fisker)
Avoid line breaks in import attributes (#16349 by @fisker)
v3.3.0
Compare Source
diff
🔗 Release Notes
v3.2.5
Compare Source
diff
Support Angular inline styles as single template literal (#15968 by @sosukesuzuki)
Angular v17 supports single string inline styles.
Unexpected embedded formatting for Angular template (#15969 by @JounQin)
Computed template should not be considered as Angular component template
Use
"json"
parser fortsconfig.json
by default (#16012 by @sosukesuzuki)In v3.2.0, we introduced
"jsonc"
parser which adds trailing comma by default.When adding a new parser we also define how it will be used based on the
linguist-languages
data.tsconfig.json
is a special file used by TypeScript, it uses.json
file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing.json
file extension.We decide to treat it as a JSON file for now to avoid the extra configuration step.
To keep using the
"jsonc"
parser for yourtsconfig.json
files, add the following to your.prettierrc
filev3.2.4
Compare Source
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "jsonc" }
v3.2.3
Compare Source
diff
Throw errors for invalid code (#15881 by @fisker, @Josh-Cena, @auvred)
Fix parser inference (#15927 by @fisker)
v3.2.2
Compare Source
diff
Fix crash when parsing template literal CSS in a JSX style tag using a spread attribute (#15896 by @eelco)
For example this code would crash before:
Fix formatting error on optional call expression and member chain (#15920 by @sosukesuzuki)
v3.2.1
Compare Source
diff
Fix formatting error on member chain (#15915 by @sosukesuzuki)
v3.2.0
Compare Source
diff
🔗 Release Notes
v3.1.1
Compare Source
diff
Fix config file search (#15363 by @fisker)
Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.
Skip explicitly passed symbolic links with
--no-error-on-unmatched-pattern
(#15533 by @sanmai-NL)Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.
In Prettier 3.1.1, you can use
--no-error-on-unmatched-pattern
to simply skip symbolic links.Consistently use tabs in ternaries when
useTabs
istrue
(#15662 by @auvred)Improve config file search (#15663 by @fisker)
The Prettier config file search performance has been improved by more effective cache strategy.
Fix unstable and ugly formatting for comments in destructuring patterns (#15708 by @sosukesuzuki)
Support "Import Attributes" (#15718 by @fisker)
TypeScript 5.3 supports the latest updates to the import attributes proposal.
Fix false claim in docs that cursorOffset is incompatible with rangeStart/rangeEnd (#15750 by @ExplodingCabbage)
The cursorOffset option has in fact been compatible with rangeStart/rangeEnd for over 5 years, thanks to work by @ds300. However, Prettier's documentation (including the CLI
--help
text) continued to claim otherwise, falsely. The documentation is now fixed.Keep curly braces and
from
keyword in emptyimport
statements (#15756 by @fisker)Keep empty import attributes and assertions (#15757 by @fisker)
v3.1.0
Compare Source
diff
🔗 Release Notes
v3.0.3
Compare Source
diff
Add
preferUnplugged: true
topackage.json
(#15169 by @fisker and @so1ve)Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add
preferUnplugged: true
topackage.json
, so Yarn will install Prettier as unplug by default.Support shared config that forbids
require()
(#15233 by @fisker)If an external shared config package is used, and the package
exports
don't haverequire
ordefault
export.In Prettier 3.0.2 Prettier fails when attempt to
require()
the package, and throws an error.Allow argument of
require()
to break (#15256 by @fisker)Do not print trailing commas in arrow function type parameter lists in
ts
code blocks (#15286 by @sosukesuzuki)Support TypeScript 5.2
using
/await using
declaration (#15321 by @sosukesuzuki)Support for the upcoming Explicit Resource Management feature in ECMAScript.
using
/await using
declarationv3.0.2
Compare Source
diff
Break after
=
of assignment if RHS is poorly breakable AwaitExpression or YieldExpression (#15204 by @seiyab)Do not add trailing comma for grouped scss comments (#15217 by @auvred)
Print
declare
andexport
keywords for nested namespace (#15249 by @sosukesuzuki)v3.0.1
Compare Source
diff
Fix cursor positioning for a special case (#14812 by @fisker)
Fix plugins/estree.d.ts to make it a module (#15018 by @kingyue737)
Add
export {}
inplugins/estree.d.ts
to fix the "File is not a module" errorAdd parenthesis around leading multiline comment in return statement (#15037 by @auvred)
Add support for Vue "Generic Components" (#15066 by @auvred)
https://blog.vuejs.org/posts/vue-3-3#generic-components
Fix comments print in
IfStatement
(#15076 by @fisker)Add missing type definition for
printer.preprocess
(#15123 by @so1ve)Add missing
getVisitorKeys
method type definition forPrinter
(#15125 by @auvred)Add typing to support
readonly
array properties of AST Node (#15127 by @auvred)Add space before unary minus followed by a function call (#15129 by @pamelalozano)
v3.0.0
Compare Source
diff
🔗 Release Notes
tree-sitter/tree-sitter (tree-sitter)
v0.24.4
Compare Source
[0.24.4] - 2024-11-10
Features
language_for_configuration
tree-sitter.json
file is invalidBug Fixes
LanguageRef
inParser::language
tree-sitter.json
ininit
contains
overis
in warningPerformance
Build System and CI
Other
v0.24.3
Compare Source
[0.24.3] - 2024-10-09
Bug Fixes
get_column
when the lexer is at EOFBuild System and CI
v0.24.2
Compare Source
[0.24.2] - 2024-10-06
Features
Bug Fixes
Build System and CI
tree-sitter.pc
generation (#3745)Other
v0.24.1
Compare Source
[0.24.1] - 2024-10-04
Bug Fixes
v0.24.0
Compare Source
[0.24.0] - 2024-10-04
Breaking
filter
flag from commands in favor ofinclude
andexclude
(#3604)build-wasm
subcommand (#3605)init
command (#3694)StreamingIterator
instead ofIterator
forQueryMatches
andQueryCaptures
(#3504)goto_first_child_for_{byte,point}
(#3263)Features
field_name_for_named_child
(#3614)root
field in node-types.json (#3615)rebuild
flag to force rebuild parsers (#3672)--overview-only
totest
subcommand (#3501)go-tree-sitter
version (#3564)no-ranges
flag to the parse command (#3687)tree-sitter
dev dependency to0.23
(#3563)--no-bindings
flagBug Fixes
child_containing_descendant
and addchild_with_descendant
instead (#3708)edit
signature (#3599)RUST_BINDING_VERSION
inCargo.toml
template1.22
(#3711)fuzz
subcommand (#3562)fuzz
command (#3635) (#3635):skip
& don't report errors on tests marked with:error
(#3640)tree-sitter
to thedev-dependencies
of the Cargo.toml (#3597)Package.swift
(#3631)*.scm
section to.editorconfig
template (#3724)package.json
on error (#3718)-Wpedantic
(#3691):error
has no errortest -u
(#3572)Documentation
Refactor
Build System and CI
0.1.1
(#3730)bump-version
Other
compile_flags.txt
(#3667).as_bytes().len()
on strings (#3664)v0.23.2
Compare Source
[0.23.2] - 2024-10-01
This release only corrected the version in a crate so publishing wouldn't fail.
v0.23.0
Compare Source
[0.23.0] - 2024-08-26
Breaking
Features
fuzz
subcommand (#3385)grammar.json
cannot be found (#3405)--show-fields
flag totest
command (#3502)ts_query_end_byte_for_pattern
(#3451)Bug Fixes
preceding_auxiliary_symbols
(#3550)cargo.toml
template (#3532)tv_nsec
be 0 as well (#3372)CARGO_MANIFEST_DIR
at runtime in build script (#3352)Performance
Documentation
Refactor
Testing
Build System and CI
Other
sprintf()
forsnprintf()
(#3430).build
to gitignore (#3498)v0.22.6
Compare Source
[0.22.6] — 2024-05-05
Features
NO_COLOR
(#3299)Bug Fixes
tree-sitter
field is malformed--no-bindings
is passed (#3323)AsRef<Path>
for the path parameter to avoid clones (#3322)ts_highlighter_add_language
childrenFromFieldXXX
method signatures (#3301)Documentation
\s
for\\s
in query exampleRefactor
grammar.json
tests togrammar.js
(#3325)Build System and CI
build.zig.zon
version when bumping versionsv0.22.5
Compare Source
[0.22.5] — 2024-04-14
Bug Fixes
v0.22.4
Compare Source
[0.22.4] — 2024-04-12
Bug Fixes
Build System and CI
v0.22.3
Compare Source
[0.22.3] — 2024-04-12
Features
Bug Fixes
&&
(#3274)children in
ts_subtree_string
(#3191)/utf-8
flag for parsers using unicode symbols (#3223)build-wasm
temporarily (#3203)build --wasm
should use current_dir (#3203)QueryCursor::captures()
(#3266)build.rs
Performance
Documentation
Refactor
Testing
Build System and CI
v0.22.2
Compare Source
[0.22.2] — 2024-03-17
Breaking
Features
Parser::included_ranges
Bug Fixes
Parser.getIncludedRanges()
(#3164)array_grow_by
(#3176)Documentation
Refactor
Testing
Build System and CI
v0.22.1
Compare Source
Changelog
[0.22.1] — 2024-03-10
Bug Fixes
v0.22.0
Compare Source
Changelog
[0.22.0] — 2024-03-10
Breaking
corpus
dir for testsThe cli will now only look in
test/corpus
for testscurrent*
,is*
, andhas*
methods properties (#3103)Features
nan
withnode-addon-api
and conditionally print logsBug Fixes
scan-build
suggestions (unused assignment/garbage access) (#3056)||
comparison in parentheses when&&
is used (#3070)binding.cc
overwrite should replacePARSER_NAME
(#3116)__declspec(dllexport)
on windows (#3128)v
flag (#3154)types
aftermain
if it exists (#3122)--no-bindings
(#3123).npmignore
, populate Swift's exclude list (#3085)Cargo.toml
description (#3140)api.h
sots_set_allocator
is visible (#3092)Documentation
Ohm
language parserthe
's (#3120)Refactor
Testing
Build System and CI
cc
to remove annoying debug output (#3075)Cargo.lock
needs to be updated (#3066)Other
They don't have any dynamic global data, so all it takes is just declaring them as such
When building rust binding, use wasmtime headers provided via cargo
by the wasmtime-c-api crate.
Allowing this invalid merge caused an invariant to be violated
later on during parsing, when handling a later error.
subtree_compare
(#3111)Ohm
language parser (#3114)binding_files.rs
(#3106)v0.21.0
Changelog
[0.21.0] - 2024-02-21
Breaking
Remove the apply-all-captures flag, make last-wins precedence the default
NOTE: This change might cause breakage in your grammar's highlight tests.
Just flip the order around of the relevant queries, and keep in mind that the
last query that matches will win.
Features
extras
arraygrammar-path
argument for the playground (https://github.com/tree-sitter/tree-sitter/pull/3014)config-path
argument (https://github.com/tree-sitter/tree-sitter/pull/3050)Bug Fixes
externals
map
in the grammar (https://github.com/tree-sitter/tree-sitter/pull/3041)long
forgrammar_path
UNEXPECTED
/MISSING
nodes with an indentation level greater than 0Documentation
token($.foo)
is illegalTSTreeCursor
(https://github.com/tree-sitter/tree-sitter/pull/3021)Tact
language parser (https://github.com/tree-sitter/tree-sitter/pull/3030)Refactor
&PathBuf
->&Path
(https://github.com/tree-sitter/tree-sitter/pull/3035)Testing
Build System and CI
Other
log.html
(https://github.com/tree-sitter/tree-sitter/pull/2996)token
/token.immediate
(https://github.com/tree-sitter/tree-sitter/pull/3036)github_issue_test
file (https://github.com/tree-sitter/tree-sitter/pull/3055)emcc
's stdout and stderr (https://github.com/tree-sitter/tree-sitter/pull/2494)SIDE_MODULE=2
to silence warning (https://github.com/tree-sitter/tree-sitter/pull/3003)tree-sitter/tree-sitter-json (tree-sitter-json)
v0.24.8
Compare Source
NOTE: Download
tree-sitter-json.tar.xz
for the complete source code.v0.24.7
Compare Source
NOTE: Download
tree-sitter-json.tar.xz
for the complete source code.v0.24.5
Compare Source
NOTE: Download
tree-sitter-json.tar.xz
for the complete source code.v0.24.4
Compare Source
v0.24.3
Compare Source
v0.24.2
Compare Source
v0.23.0
Compare Source
v0.21.0
Compare Source
v0.20.2
Compare Source
v0.20.1
Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 Renovate Bot.
02f43426ad
toeee3548904
chore(deps): update dependency prettier to v3to chore(deps): update all dependencieseee3548904
to41e9664933
41e9664933
to03cc772e98
03cc772e98
toc652c22b16
c652c22b16
tof1cb4ae9ac
f1cb4ae9ac
to42e89794d3
42e89794d3
toafc5e20736
afc5e20736
to931f112032
931f112032
tof5d44361a4
f5d44361a4
to7e8d9612f0
7e8d9612f0
to778343c75f
chore(deps): update all dependenciesto fix(deps): update all dependencies778343c75f
to55573ce5e5
55573ce5e5
to39f13d2095
39f13d2095
to35e6b11024
35e6b11024
to76afd87df5
76afd87df5
tod4127714a0
d4127714a0
to3ce50db5c7
3ce50db5c7
to189f88634e
189f88634e
tocc6f288aa5
cc6f288aa5
to7587a81af5
7587a81af5
to6a5e368aa0
6a5e368aa0
tof06453868f
f06453868f
to4a25e8b382
4a25e8b382
to66fd647af3
66fd647af3
to6e8493b878
6e8493b878
todce91b74b3
dce91b74b3
to04632d9798
04632d9798
tof3a5bc50e6
f3a5bc50e6
to5cd16c2fe3
5cd16c2fe3
to7429a03015
7429a03015
toa2db103836
Checkout
From your project repository, check out a new branch and test the changes.