astro-ghostcms
astro-ghostcms copied to clipboard
Bump the dev-dependencies group with 10 updates
Bumps the dev-dependencies group with 10 updates:
Package | From | To |
---|---|---|
@biomejs/biome | 1.6.1 |
1.7.3 |
@changesets/cli | 2.27.1 |
2.27.3 |
@vitest/ui | 1.4.0 |
1.6.0 |
vitest | 1.4.0 |
1.6.0 |
@types/node | 20.11.28 |
20.12.12 |
@typescript-eslint/parser | 7.2.0 |
7.10.0 |
eslint | 8.57.0 |
9.3.0 |
eslint-plugin-astro | 0.31.4 |
1.2.0 |
prettier-plugin-astro | 0.13.0 |
0.14.0 |
@astrojs/check | 0.5.9 |
0.7.0 |
Updates @biomejs/biome
from 1.6.1 to 1.7.3
Release notes
Sourced from @biomejs/biome
's releases.
CLI v1.7.3
CLI
Bug fixes
The stdin-file-path option now works correctly for Astro/Svelte/Vue files (#2686)
Fix #2225 where lint output become empty for Vue files.
Contributed by
@tasshi-me
biome migrate eslint
now correctly resolve@scope/eslint-config
(#2705). Contributed by@Conaclos
Linter
New features
Bug fixes
noBlankTarget no longer hangs when applying a code fix (#2675).
Previously, the following code made Biome hangs when applying a code fix.
<a href="https://example.com" rel="" target="_blank"></a>
Contributed by
@Conaclos
noRedeclare no longer panics on conditional type (#2659).
This is a regression introduced by #2394. This regression makes
noRedeclare
panics on every conditional types withinfer
bindings.Contributed by
@Conaclos
noUnusedLabels and noConfusingLabels now ignore svelte reactive statements (#2571).
The rules now ignore reactive Svelte blocks in Svelte components.
<script> $: { /* reactive block */ } </script>
Contributed by
@Conaclos
... (truncated)
Changelog
Sourced from @biomejs/biome
's changelog.
1.7.3 (2024-05-06)
CLI
Bug fixes
The stdin-file-path option now works correctly for Astro/Svelte/Vue files (#2686)
Fix #2225 where lint output become empty for Vue files.
Contributed by
@tasshi-me
biome migrate eslint
now correctly resolve@scope/eslint-config
(#2705). Contributed by@Conaclos
Linter
New features
Add nursery/useExplicitLengthCheck. Contributed by
@minht11
useExhaustiveDependencies
now recognizes (some) dependencies that change on every render (#2374). Contributed by@arendjr
Bug fixes
noBlankTarget no longer hangs when applying a code fix (#2675).
Previously, the following code made Biome hangs when applying a code fix.
<a href="https://example.com" rel="" target="_blank"></a>
Contributed by
@Conaclos
noRedeclare no longer panics on conditional type (#2659).
This is a regression introduced by #2394. This regression makes
noRedeclare
panics on every conditional types withinfer
bindings.Contributed by
@Conaclos
noUnusedLabels and noConfusingLabels now ignore svelte reactive statements (#2571).
The rules now ignore reactive Svelte blocks in Svelte components.
<script>
... (truncated)
Commits
b9f90b7
release: v1.7.3 (#2722)cb0182e
feat(linter): implementNoUnmatchableAnbSelector
(#2706)f77ab54
feat(linter): implementuseExplicitLengthCheck
(#2631)afa5004
feat(biome_css_analyzer): noUnknownSelectorPseudoElement (#2655)150dd0e
feat(biome_css_analyzer): implement noDuplicateAtImportRules (#2658)773a735
fix(linter): fix typo in rule name.useConsistentBuiltinInstatiation
to `us...2c70d3f
release: v1.7.2 (#2651)46c378e
feat(biome_css_analyzer): noUnknownFunction (#2570)de063b4
feat(lint/useDefaultSwitchClause): add rule (#2605)b3ed181
feat(linter): ImplementuseGenericFontNames
(#2573)- Additional commits viewable in compare view
Updates @changesets/cli
from 2.27.1 to 2.27.3
Release notes
Sourced from @changesets/cli
's releases.
@changesets/cli
@2
.27.3Patch Changes
- #1357
18c966a
Thanks@Andarist
! - Fixed an issue withchangeset status
executed withoutsince
argument. It should now correctly use the configured base branch as the default value.
@changesets/cli
@2
.27.2Patch Changes
#1354
69be7dc
Thanks@Andarist
! - Fixed an issue withchangeset status
incorrectly returning an error status in two cases:
- for changed ignored packages
- for changed private packages when
privatePackage.version
was set tofalse
#1351
c6da182
Thanks@TheHolyWaffle
! - Fix an issue with not applying a custom.prettierrc
configuration withprettier@>= 3.1.1
Updated dependencies [
c6da182
]:
Commits
620f367
Version Packages (#1358)18c966a
Fixed an issue withchangeset status
executed withoutsince
argument (#1357)4b60580
Version Packages (#1355)69be7dc
Fixedchangeset status
combined with ignored and non-versionable private pa...c6da182
Fix an issue with not applying a custom.prettierrc
configuration with `pre...0bf89b3
Use node 20.x in release flow (#1333)4185510
Fix incorrect plural (#1310)93ee679
AddSECURITY.md
- See full diff in compare view
Updates @vitest/ui
from 1.4.0 to 1.6.0
Release notes
Sourced from @vitest/ui
's releases.
v1.6.0
🚀 Features
- Support standalone mode - by
@sheremet-va
in vitest-dev/vitest#5565 (bdce0)- Custom "snapshotEnvironment" option - by
@sheremet-va
in vitest-dev/vitest#5449 (30f72)- benchmark: Support comparing benchmark result - by
@hi-ogawa
and@sheremet-va
in vitest-dev/vitest#5398 (f8d3d)- browser: Allow injecting scripts - by
@sheremet-va
in vitest-dev/vitest#5656 (21e58)- reporter: Support
includeConsoleOutput
andaddFileAttribute
in junit - by@hi-ogawa
in vitest-dev/vitest#5659 (2f913)- ui: Sort items by file name - by
@btea
in vitest-dev/vitest#5652 (1f726)🐞 Bug Fixes
- Keep order of arguments for .each in custom task collectors - by
@sheremet-va
in vitest-dev/vitest#5640 (7d57c)- Call
resolveId('vitest')
afterbuildStart
- by@hi-ogawa
in vitest-dev/vitest#5646 (f5faf)- Hash the name of the file when caching - by
@sheremet-va
in vitest-dev/vitest#5654 (c9e68)- Don't panic on empty files in node_modules - by
@sheremet-va
(40c29)- Use
toJSON
for error serialization - by@hi-ogawa
in vitest-dev/vitest#5526 (19a21)- coverage:
- Exclude
*.test-d.*
by default - by@MindfulPol
in vitest-dev/vitest#5634 (bfe8a)- Apply
vite-node
's wrapper only to executed files - by@AriPerkkio
in vitest-dev/vitest#5642 (c9883)- vm:
- Support network imports - by
@sheremet-va
in vitest-dev/vitest#5610 (103a6)🏎 Performance
- Improve performance of forks pool - by
@sheremet-va
in vitest-dev/vitest#5592 (d8304)- Unnecessary rpc call when coverage is disabled - by
@AriPerkkio
in vitest-dev/vitest#5658 (c5712)View changes on GitHub
v1.5.3
🐞 Bug Fixes
- Use package.json name for a workspace project if not provided - by
@sheremet-va
in vitest-dev/vitest#5608 (48fba)- Backport jest iterable equality within object - by
@sukovanej
in vitest-dev/vitest#5621 (30e5d)- browser: Support benchmark - by
@hi-ogawa
in vitest-dev/vitest#5622 (becab)- reporter: Use default error formatter for JUnit - by
@hi-ogawa
in vitest-dev/vitest#5629 (20060)View changes on GitHub
v1.5.2
🐞 Bug Fixes
- Check for null before storing in weakmap - by
@sheremet-va
(ce368)View changes on GitHub
v1.5.1
🚀 Features
... (truncated)
Commits
Updates vitest
from 1.4.0 to 1.6.0
Release notes
Sourced from vitest's releases.
v1.6.0
🚀 Features
- Support standalone mode - by
@sheremet-va
in vitest-dev/vitest#5565 (bdce0)- Custom "snapshotEnvironment" option - by
@sheremet-va
in vitest-dev/vitest#5449 (30f72)- benchmark: Support comparing benchmark result - by
@hi-ogawa
and@sheremet-va
in vitest-dev/vitest#5398 (f8d3d)- browser: Allow injecting scripts - by
@sheremet-va
in vitest-dev/vitest#5656 (21e58)- reporter: Support
includeConsoleOutput
andaddFileAttribute
in junit - by@hi-ogawa
in vitest-dev/vitest#5659 (2f913)- ui: Sort items by file name - by
@btea
in vitest-dev/vitest#5652 (1f726)🐞 Bug Fixes
- Keep order of arguments for .each in custom task collectors - by
@sheremet-va
in vitest-dev/vitest#5640 (7d57c)- Call
resolveId('vitest')
afterbuildStart
- by@hi-ogawa
in vitest-dev/vitest#5646 (f5faf)- Hash the name of the file when caching - by
@sheremet-va
in vitest-dev/vitest#5654 (c9e68)- Don't panic on empty files in node_modules - by
@sheremet-va
(40c29)- Use
toJSON
for error serialization - by@hi-ogawa
in vitest-dev/vitest#5526 (19a21)- coverage:
- Exclude
*.test-d.*
by default - by@MindfulPol
in vitest-dev/vitest#5634 (bfe8a)- Apply
vite-node
's wrapper only to executed files - by@AriPerkkio
in vitest-dev/vitest#5642 (c9883)- vm:
- Support network imports - by
@sheremet-va
in vitest-dev/vitest#5610 (103a6)🏎 Performance
- Improve performance of forks pool - by
@sheremet-va
in vitest-dev/vitest#5592 (d8304)- Unnecessary rpc call when coverage is disabled - by
@AriPerkkio
in vitest-dev/vitest#5658 (c5712)View changes on GitHub
v1.5.3
🐞 Bug Fixes
- Use package.json name for a workspace project if not provided - by
@sheremet-va
in vitest-dev/vitest#5608 (48fba)- Backport jest iterable equality within object - by
@sukovanej
in vitest-dev/vitest#5621 (30e5d)- browser: Support benchmark - by
@hi-ogawa
in vitest-dev/vitest#5622 (becab)- reporter: Use default error formatter for JUnit - by
@hi-ogawa
in vitest-dev/vitest#5629 (20060)View changes on GitHub
v1.5.2
🐞 Bug Fixes
- Check for null before storing in weakmap - by
@sheremet-va
(ce368)View changes on GitHub
v1.5.1
🚀 Features
... (truncated)
Commits
6b29f3d
chore: release v1.6.0f8d3d22
feat(benchmark): support comparing benchmark result (#5398)21e58bd
feat(browser): allow injecting scripts (#5656)30f728b
feat: custom "snapshotEnvironment" option (#5449)2f91322
feat(reporter): supportincludeConsoleOutput
andaddFileAttribute
in juni...c571276
perf: unnecessary rpc call when coverage is disabled (#5658)bdce0a2
feat: support standalone mode (#5565)40c299f
fix: don't panic on empty files in node_modulesc9e68ce
fix: hash the name of the file when caching (#5654)f5faf42
fix: callresolveId('vitest')
afterbuildStart
(#5646)- Additional commits viewable in compare view
Updates @types/node
from 20.11.28 to 20.12.12
Commits
- See full diff in compare view
Updates @typescript-eslint/parser
from 7.2.0 to 7.10.0
Release notes
Sourced from @typescript-eslint/parser
's releases.
v7.10.0
7.10.0 (2024-05-20)
🚀 Features
- eslint-plugin: [sort-type-constituents] support case sensitive sorting (#8760)
🩹 Fixes
- eslint-plugin: [prefer-regexp-exec] fix heuristic to check whether regex may contain global flag (#8764)
- typescript-estree: don't add in-project files to defaultProjectMatchedFiles (#9097)
- utils: remove function form type from flat config
files
andignores
(#9111)❤️ Thank You
- auvred
@auvred
- Emanuel Hoogeveen
@ehoogeveen-medweb
- jsfm01
@jsfm01
- Kirk Waiblinger
You can read about our versioning strategy and releases on our website.
v7.9.0
7.9.0 (2024-05-13)
🚀 Features
- rule-tester: check for missing placeholder data in the message (#9039)
🩹 Fixes
- do not pass tsconfig canonical file name to typescript API to get program details for config file (#9042)
- eslint-plugin: [explicit-function-return-types] fix false positive on default parameters (#9045)
❤️ Thank You
- Kirk Waiblinger
- Sheetal Nandi
- Vinccool96
You can read about our versioning strategy and releases on our website.
v7.8.0
7.8.0 (2024-04-29)
🚀 Features
... (truncated)
Changelog
Sourced from @typescript-eslint/parser
's changelog.
7.10.0 (2024-05-20)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
7.9.0 (2024-05-13)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
7.8.0 (2024-04-29)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
7.7.1 (2024-04-22)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
7.7.0 (2024-04-15)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
7.6.0 (2024-04-08)
🚀 Features
- bump npm dependency ranges
❤️ Thank You
- Abraham Guo
- auvred
- Brad Zacher
You can read about our versioning strategy and releases on our website.
7.5.0 (2024-04-01)
🩹 Fixes
... (truncated)
Commits
c18226e
chore(release): publish 7.10.077fc366
chore(release): publish 7.9.0f53fece
chore: add knip (#8192)ee677f6
chore(release): publish 7.8.03e19436
chore(release): publish 7.7.1e44a1a2
chore(release): publish 7.7.0e1db872
chore(release): publish 7.6.0a6ab2cb
feat: bump npm dependency ranges (#8860)a14ba9d
chore(release): publish 7.5.0ecb6b55
docs: add homepage (#8742)- Additional commits viewable in compare view
Updates eslint
from 8.57.0 to 9.3.0
Release notes
Sourced from eslint's releases.
v9.3.0
Features
b32153c
feat: addoverrides.namedExports
tofunc-style
rule (#18444) (Percy Ma)b67eba4
feat: addrestrictedNamedExportsPattern
tono-restricted-exports
(#18431) (Akul Srivastava)069aa68
feat: add optionallowEscape
tono-misleading-character-class
rule (#18208) (Francesco Trotta)05ef92d
feat: deprecatemultiline-comment-style
&line-comment-position
(#18435) (唯然)db0b174
feat: addenforceForInnerExpressions
option tono-extra-boolean-cast
(#18222) (Kirk Waiblinger)Bug Fixes
8db0eff
fix: Improve config error messages (#18457) (Nicholas C. Zakas)5c28d9a
fix: don't remove comments between key and value in object-shorthand (#18442) (Kuba Jastrzębski)39fb0ee
fix: object-shorthand loses type parameters when auto-fixing (#18438) (dalaoshu)37eba48
fix: don't crash whenfs.readFile
returns promise from another realm (#18416) (Milos Djermanovic)Documentation
ceada8c
docs: explain how to use "tsc waiting" label (#18466) (Francesco Trotta)62e686c
docs: Add troubleshooting info for plugin compatibility (#18451) (Nicholas C. Zakas)e17e1c0
docs: Update README (GitHub Actions Bot)2465a1e
docs: Update README (GitHub Actions Bot)d23574c
docs: Clarify usage ofno-unreachable
with TypeScript (#18445) (benj-dobs)1db9bae
docs: Fix typos (#18443) (Frieder Bluemle)7065196
docs: Update README (GitHub Actions Bot)04e7c6e
docs: update deprecation notice ofno-return-await
(#18433) (Tanuj Kanti)e763512
docs: Link global ignores section in config object property list (#18430) (MaoShizhong)ac7f718
docs: reflect release of v9 in config migration guide (#18412) (Peter Briggs)0de0909
docs: fix grammar in configuration file resolution (#18419) (Mike McCready)Chores
58e2719
chore: update dependencies for v9.3.0 release (#18469) (Francesco Trotta)b681ecb
chore: package.json update for@eslint/js
release (Jenkins)06f1d1c
chore: update dependency@humanwhocodes/retry
to ^0.3.0 (#18463) (renovate[bot])a63ed72
refactor: Usenode:
protocol for built-in Node.js modules (#18434) (Milos Djermanovic)040700a
chore: update dependency markdownlint-cli to ^0.40.0 (#18425) (renovate[bot])f47847c
chore: update actions/stale action to v9 (#18426) (renovate[bot])c18ad25
chore: update actions/upload-artifact action to v4 (#18427) (renovate[bot])27e3060
chore: Disable documentation label (#18423) (Nicholas C. Zakas)v9.2.0
Features
8485d76
feat:no-case-declarations
add suggestions (#18388) (Josh Goldberg ✨)a498f35
feat: update Unicode letter detection in capitalized-comments rule (#18375) (Francesco Trotta)Bug Fixes
Documentation
... (truncated)
Changelog
Sourced from eslint's changelog.
v9.3.0 - May 17, 2024
58e2719
chore: update dependencies for v9.3.0 release (#18469) (Francesco Trotta)b681ecb
chore: package.json update for@eslint/js
release (Jenkins)8db0eff
fix: Improve config error messages (#18457) (Nicholas C. Zakas)ceada8c
docs: explain how to use "tsc waiting" label (#18466) (Francesco Trotta)b32153c
feat: addoverrides.namedExports
tofunc-style
rule (#18444) (Percy Ma)06f1d1c
chore: update dependency@humanwhocodes/retry
to ^0.3.0 (#18463) (renovate[bot])5c28d9a
fix: don't remove comments between key and value in object-shorthand (#18442) (Kuba Jastrzębski)62e686c
docs: Add troubleshooting info for plugin compatibility (#18451) (Nicholas C. Zakas)e17e1c0
docs: Update README (GitHub Actions Bot)39fb0ee
fix: object-shorthand loses type parameters when auto-fixing (#18438) (dalaoshu)b67eba4
feat: addrestrictedNamedExportsPattern
tono-restricted-exports
(#18431) (Akul Srivastava)2465a1e
docs: Update README (GitHub Actions Bot)d23574c
docs: Clarify usage ofno-unreachable
with TypeScript (#18445) (benj-dobs)1db9bae
docs: Fix typos (#18443) (Frieder Bluemle)069aa68
feat: add optionallowEscape
tono-misleading-character-class
rule (#18208) (Francesco Trotta)7065196
docs: Update README (GitHub Actions Bot)05ef92d
feat: deprecatemultiline-comment-style
&line-comment-position
(#18435) (唯然)a63ed72
refactor: Usenode:
protocol for built-in Node.js modules (#18434) (Milos Djermanovic)04e7c6e
docs: update deprecation notice ofno-return-await
(#18433) (Tanuj Kanti)e763512
docs: Link global ignores section in config object property list (#18430) (MaoShizhong)37eba48
fix: don't crash whenfs.readFile
returns promise from another realm (#18416) (Milos Djermanovic)040700a
chore: update dependency markdownlint-cli to ^0.40.0 (#18425) (renovate[bot])f47847c
chore: update actions/stale action to v9 (#18426) (renovate[bot])c18ad25
chore: update actions/upload-artifact action to v4 (#18427) (renovate[bot])27e3060
chore: Disable documentation label (#18423) (Nicholas C. Zakas)ac7f718
docs: reflect release of v9 in config migration guide (#18412) (Peter Briggs)db0b174
feat: addenforceForInnerExpressions
option tono-extra-boolean-cast
(#18222) (Kirk Waiblinger)0de0909
docs: fix grammar in configuration file resolution (#18419) (Mike McCready)v9.2.0 - May 3, 2024
b346605
chore: upgrade@eslint/js
@9
.2.0 (#18413) (Milos Djermanovic)c4c18e0
chore: package.json update for@eslint/js
release (Jenkins)284722c
chore: package.json update for eslint-config-eslint release (Jenkins)0f5df50
docs: Update README (GitHub Actions Bot)347d44f
chore: remove eslintrc export from eslint-config-eslint (#18400) (Milos Djermanovic)8485d76
feat:no-case-declarations
add suggestions (#18388) (Josh Goldberg ✨)a498f35
feat: update Unicode letter detection in capitalized-comments rule (#18375) (Francesco Trotta)1579ce0
docs: update wording regarding indirect eval (#18394) (Kirk Waiblinger)f316e20
ci: run tests in Node.js 22 (#18393) (Francesco Trotta)eeec413
fix: do not throw when defining a global named defineSetter (#18364) (唯然)f12a02c
docs: update to eslint v9 in custom-rule-tutorial (#18383) (唯然)v9.1.1 - April 22, 2024
v9.1.0 - April 19, 2024
... (truncated)
Commits
41a871c
9.3.0463a2e3
Build: changelog update for 9.3.058e2719
chore: update dependencies for v9.3.0 release (#18469)b681ecb
chore: package.json update for@eslint/js
release8db0eff
fix: Improve config error messages (#18457)ceada8c
docs: explain how to use "tsc waiting" label (#18466)b32153c
feat: addoverrides.namedExports
tofunc-style
rule (#18444) ...
Description has been truncated