magidoc
                                
                                 magidoc copied to clipboard
                                
                                    magidoc copied to clipboard
                            
                            
                            
                        Bump the all group across 1 directory with 37 updates
Bumps the all group with 37 updates in the / directory:
| Package | From | To | 
|---|---|---|
| @biomejs/biome | 1.9.3 | 1.9.4 | 
| husky | 9.1.6 | 9.1.7 | 
| svelte | 4.2.19 | 5.16.0 | 
| typescript | 5.6.2 | 5.7.2 | 
| cspell | 8.14.4 | 8.17.1 | 
| gh-pages | 6.1.1 | 6.2.0 | 
| axios | 1.7.7 | 1.7.9 | 
| chokidar | 4.0.1 | 4.0.3 | 
| commander | 12.1.0 | 13.0.0 | 
| listr2 | 8.2.4 | 8.2.5 | 
| sirv | 2.0.4 | 3.0.0 | 
| zod | 3.23.8 | 3.24.1 | 
| @rollup/plugin-typescript | 12.1.0 | 12.1.2 | 
| @types/lodash | 4.17.9 | 4.17.13 | 
| @types/node | 22.7.4 | 22.10.2 | 
| @vitest/coverage-v8 | 2.1.1 | 2.1.8 | 
| rollup | 4.24.0 | 4.29.1 | 
| tslib | 2.7.0 | 2.8.1 | 
| vite | 5.4.8 | 6.0.6 | 
| vitest | 2.1.1 | 2.1.8 | 
| serve | 14.2.3 | 14.2.4 | 
| graphql | 16.9.0 | 16.10.0 | 
| marked | 14.1.2 | 15.0.4 | 
| prettier | 3.3.3 | 3.4.2 | 
| nock | 13.5.5 | 13.5.6 | 
| @sveltejs/adapter-auto | 3.2.5 | 3.3.1 | 
| @sveltejs/kit | 2.6.1 | 2.15.1 | 
| @sveltejs/package | 2.3.5 | 2.3.7 | 
| @sveltejs/vite-plugin-svelte | 3.1.2 | 5.0.3 | 
| @types/prismjs | 1.26.4 | 1.26.5 | 
| svelte-check | 4.0.4 | 4.1.1 | 
| svelte2tsx | 0.7.21 | 0.7.31 | 
| @sveltejs/adapter-static | 3.0.5 | 3.0.8 | 
| carbon-components-svelte | 0.85.2 | 0.87.0 | 
| carbon-icons-svelte | 12.11.1 | 12.13.0 | 
| carbon-preprocess-svelte | 0.11.7 | 0.11.9 | 
| marked-gfm-heading-id | 4.1.0 | 4.1.1 | 
Updates @biomejs/biome from 1.9.3 to 1.9.4
Release notes
Sourced from @biomejs/biome's releases.
CLI v1.9.4
Analyzer
Bug fixes
Improved the message for unused suppression comments. Contributed by
@dyc3
Fix #4228, where the rule
a11y/noInteractiveElementToNoninteractiveRoleincorrectly reports arolefor non-interactive elements. Contributed by@eryue0220
noSuspiciousSemicolonInJsxnow catches suspicious semicolons in React fragments. Contributed by@vasucp1207CLI
Enhancements
The
--summaryreporter now reports parsing diagnostics too. Contributed by@ematipico
Improved performance of GritQL queries by roughly 25-30%. Contributed by
@arendjrConfiguration
Bug fixes
- Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by
@ematipicoFormatter
Bug fixes
Linter
New features
- Add useGuardForIn. Contributed by
@fireairforce- Add noDocumentCookie. Contributed by
@tunamaguro- Add noDocumentImportInPage. Contributed by
@kaioduarte- Add noDuplicateProperties. Contributed by
@togami2864- Add noHeadElement. Contributed by
@kaioduarte- Add noHeadImportInDocument. Contributed by
@kaioduarte- Add noImgElement. Contributed by
@kaioduarte- Add noUnknownTypeSelector. Contributed by
@Kazuhiro-Mimaki- Add useAtIndex. Contributed by
@GunseiKPaseri- Add noUselessStringRaw. Contributed by
@fireairforce- Add nursery/useCollapsedIf. Contributed by
@siketyan- Add useGoogleFontDisplay. Contributed by
@kaioduarteBug Fixes
... (truncated)
Changelog
Sourced from @biomejs/biome's changelog.
v1.9.4 (2024-10-17)
Analyzer
Bug fixes
Implement GraphQL suppression action. Contributed by
@vohoanglong0107
Improved the message for unused suppression comments. Contributed by
@dyc3
Fix #4228, where the rule
a11y/noInteractiveElementToNoninteractiveRoleincorrectly reports arolefor non-interactive elements. Contributed by@eryue0220
noSuspiciousSemicolonInJsxnow catches suspicious semicolons in React fragments. Contributed by@vasucp1207
The syntax rule
noTypeOnlyImportAttributesnow ignores.ctsfiles (#4361).Since TypeScript 5.3, type-only imports can be associated to an import attribute in CommonJS-enabled files. See the TypeScript docs.
The following code is no longer reported as a syntax error:
import type { TypeFromRequire } from "pkg" with { "resolution-mode": "require" };Note that this is only allowed in files ending with the
ctsextension.Contributed by
@ConaclosCLI
Enhancements
The
--summaryreporter now reports parsing diagnostics too. Contributed by@ematipico
Improved performance of GritQL queries by roughly 25-30%. Contributed by
@arendjrConfiguration
Bug fixes
- Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by
@ematipicoEditors
Formatter
Bug fixes
... (truncated)
Commits
- fa93a14release: v1.9.4 (#4320)
- 2a05cd4feat(lint): add- useGoogleFontDisplayrule (#4264)
- bbb93b9feat(lint): useCollapsedIf JS lint rule (#4179)
- 561b54cfeat(linter): implement noUselessStringRaw (#4263)
- 5b7d158feat(linter): implement- noDuplicateProperties(#4029)
- 2342984feat(lint): add- noDocumentImportInPagerule (#4265)
- 3cf20ebchore(linter): rename- useExplicitFunctionReturnTypeto `useExplicit… (#4261)
- 970f498feat(useGuardForIn): add rule (#4104)
- 2e5b656feat(lint): add- noDocumentCookierule (#4204)
- 3364640feat(lint): add rule- useAtIndex(#4120)
- Additional commits viewable in compare view
Updates husky from 9.1.6 to 9.1.7
Release notes
Sourced from husky's releases.
v9.1.7
What's Changed
- fix: add husky label to deprecated warning by
@smackfuin typicode/husky#1538New Contributors
@smackfumade their first contribution in typicode/husky#1538Full Changelog: https://github.com/typicode/husky/compare/v9.1.6...v9.1.7
Commits
- 799e84b9.1.7
- 30f2049fix: add husky label to deprecated warning (#1538)
- See full diff in compare view
Updates svelte from 4.2.19 to 5.16.0
Release notes
Sourced from svelte's releases.
[email protected]
Minor Changes
- feat: allow
classattribute to be an object or array, usingclsx(#14714)Patch Changes
- fix: don't include keyframes in global scope in the keyframes to rename (#14822)
[email protected]
Minor Changes
- feat: add "worker" exports condition to better support bundling for worker-based environments (#14779)
[email protected]
Patch Changes
fix: treeshake
$inspect.tracecode if unused in modules (#14774)
fix: Improve typescript DX for $inspect, $props, $bindable, and $host (#14777)
[email protected]
Patch Changes
fix: bump esrap dependency (#14765)
fix: ensure svg namespace for
<a>elements is correct (#14756)
fix: treeshake
$inspect.tracecode if unused (#14770)[email protected]
Patch Changes
fix: remove implements from class declarations (#14749)
fix: remove unwanted properties from both replaced and unreplaced nodes (#14744)
[email protected]
Patch Changes
fix: bump esrap, prevent malformed AST (#14742)
fix: compare array contents for equality mismatch detections, not the arrays themselves (#14738)
[email protected]
Patch Changes
... (truncated)
Changelog
Sourced from svelte's changelog.
5.16.0
Minor Changes
- feat: allow
classattribute to be an object or array, usingclsx(#14714)Patch Changes
- fix: don't include keyframes in global scope in the keyframes to rename (#14822)
5.15.0
Minor Changes
- feat: add "worker" exports condition to better support bundling for worker-based environments (#14779)
5.14.6
Patch Changes
fix: treeshake
$inspect.tracecode if unused in modules (#14774)
fix: Improve typescript DX for $inspect, $props, $bindable, and $host (#14777)
5.14.5
Patch Changes
fix: bump esrap dependency (#14765)
fix: ensure svg namespace for
<a>elements is correct (#14756)
fix: treeshake
$inspect.tracecode if unused (#14770)5.14.4
Patch Changes
fix: remove implements from class declarations (#14749)
fix: remove unwanted properties from both replaced and unreplaced nodes (#14744)
5.14.3
Patch Changes
... (truncated)
Commits
- 7f8acb8Version Packages (#14824)
- 97f3aa9docs: fix links in some errors/warnings (#14825)
- 015210afeat: allow objects/arrays for class attribute (#14714)
- 38a3ae3fix: Allow to disable animation prefix (#14822)
- 1d773efVersion Packages (#14782)
- 72b7bc7feat: add "worker" exports condition (#14779)
- 2086c19Version Packages (#14776)
- 999b92dfix: intellisense DX for $props, $inspect, $bindable, and $host (#14777)
- 5bc4033fix: treeshake- $inspect.tracecode if unused in modules (#14774)
- 69d198eVersion Packages (#14764)
- Additional commits viewable in compare view
Updates typescript from 5.6.2 to 5.7.2
Release notes
Sourced from typescript's releases.
TypeScript 5.7
For release notes, check out the release announcement.
- fixed issues query for Typescript 5.7.0 (Beta).
- fixed issues query for Typescript 5.7.1 (RC).
- fixed issues query for Typescript 5.7.2 (Stable).
Downloads are available on:
TypeScript 5.7 RC
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
TypeScript 5.7 Beta
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
TypeScript 5.6.3
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.6.0 (Beta).
- fixed issues query for Typescript 5.6.1 (RC).
- fixed issues query for Typescript 5.6.2 (Stable).
- fixed issues query for Typescript 5.6.3 (Stable).
Downloads are available on:
Commits
- d701d90Bump version to 5.7.2 and LKG
- 0503a63🤖 Pick PR #60450 (Move to file: fix detection of refe...) into release-5.7 (#...
- 3140dbb🤖 Pick PR #60488 (Stub out copilotRelated command) into release-5.7 (#60495)
- c1216deUpdate LKG
- 3ee2b95🤖 Pick PR #60415 (Fix false positive rewriteRelativeI...) into release-5.7 (#...
- 44bd3f2Bump version to 5.7.1-rc and LKG
- 5925c81Update LKG
- 84d58cfMerge remote-tracking branch 'origin/main' into release-5.7
- 0ec4d30Fixing exception on unsaved file (#60362)
- 11b2930Add compatible overloads that accept ArrayBuffer to BigInt64Array/BigUint64Ar...
- Additional commits viewable in compare view
Updates cspell from 8.14.4 to 8.17.1
Release notes
Sourced from cspell's releases.
v8.17.1
Changes
Fixes
fix: Make sure empty string is not checked. (#6680)
For some strange reason, the Hungarian dictionary ends up with a forbid on empty string. This would happen when matching against
"..
v8.17.0
Changes
Features
feat: Support Windows UNC files. (#6671)
feat: Do not spell check random strings (#6615)
Added two new configuration options:
ignoreRandomStrings- (defaulttrue) tell the spell checker to ignore strings of random characters.
minRandomLength- (default40) the minimum length of a string of characters before checking if it is random.fixes #6573
Fixes
... (truncated)
Changelog
Sourced from cspell's changelog.
8.17.1 (2024-12-16)
8.17.0 (2024-12-15)
8.16.1 (2024-11-26)
8.16.0 (2024-11-07)
8.15.7 (2024-11-03)
8.15.6 (2024-11-02)
8.15.5 (2024-10-30)
8.15.4 (2024-10-18)
8.15.3 (2024-10-16)
8.15.2 (2024-10-14)
8.15.1 (2024-10-11)
8.15.0 (2024-10-11)
Commits
- 476a03av8.17.1
- cac17fev8.17.0
- b5c9115feat: Support Windows UNC files. (#6671)
- 773bb6ev8.16.1
- 24587eaci: Workflow Bot -- Build Readme (#6595)
- b7d336afix: Honor the- --coloroption (#6594)
- 41cd50fv8.16.0
- e602968ci: Workflow Bot -- Build Readme (#6480)
- 12edd2bfeat: Change default cache strategy to- content(#6477)
- 9decdc4v8.15.7
- Additional commits viewable in compare view
Updates gh-pages from 6.1.1 to 6.2.0
Release notes
Sourced from gh-pages's releases.
v6.2.0
What's Changed
- fix: update instruction for next.js by
@multivoltagein tschaub/gh-pages#541- Bump mocha from 10.2.0 to 10.3.0 by
@dependabotin tschaub/gh-pages#545- Bump eslint from 8.56.0 to 8.57.0 by
@dependabotin tschaub/gh-pages#548- Bump tmp from 0.2.1 to 0.2.3 by
@dependabotin tschaub/gh-pages#549- Bump mocha from 10.3.0 to 10.4.0 by
@dependabotin tschaub/gh-pages#550- Bump dir-compare from 4.2.0 to 5.0.0 by
@dependabotin tschaub/gh-pages#555- Bump sinon from 17.0.1 to 17.0.2 by
@dependabotin tschaub/gh-pages#557- Bump sinon from 17.0.2 to 18.0.0 by
@dependabotin tschaub/gh-pages#561- Bump braces from 3.0.2 to 3.0.3 by
@dependabotin tschaub/gh-pages#563- Bump mocha from 10.4.0 to 10.6.0 by
@dependabotin tschaub/gh-pages#569- Bump mocha from 10.6.0 to 10.7.0 by
@dependabotin tschaub/gh-pages#571- Bump mocha from 10.7.0 to 10.7.3 by
@dependabotin tschaub/gh-pages#573- Bump async from 3.2.5 to 3.2.6 by
@dependabotin tschaub/gh-pages#576- Bump eslint from 8.57.0 to 8.57.1 by
@dependabotin tschaub/gh-pages#579- Bump sinon from 18.0.0 to 19.0.2 by
@dependabotin tschaub/gh-pages#578- Update globby by
@tschaubin tschaub/gh-pages#581New Contributors
@multivoltagemade their first contribution in tschaub/gh-pages#541Full Changelog: https://github.com/tschaub/gh-pages/compare/v6.1.1...v6.2.0
Changelog
Sourced from gh-pages's changelog.
v6.2.0
Assorted dependency updates and a documentation change.
- #581 - Update globby (
@tschaub)- #578 - Bump sinon from 18.0.0 to 19.0.2 (
@tschaub)- #579 - Bump eslint from 8.57.0 to 8.57.1 (
@tschaub)- #576 - Bump async from 3.2.5 to 3.2.6 (
@tschaub)- #573 - Bump mocha from 10.7.0 to 10.7.3 (
@tschaub)- #571 - Bump mocha from 10.6.0 to 10.7.0 (
@tschaub)- #569 - Bump mocha from 10.4.0 to 10.6.0 (
@tschaub)- #563 - Bump braces from 3.0.2 to 3.0.3 (
@tschaub)- #561 - Bump sinon from 17.0.2 to 18.0.0 (
@tschaub)- #557 - Bump sinon from 17.0.1 to 17.0.2 (
@tschaub)- #555 - Bump dir-compare from 4.2.0 to 5.0.0 (
@tschaub)- #550 - Bump mocha from 10.3.0 to 10.4.0 (
@tschaub)- #549 - Bump tmp from 0.2.1 to 0.2.3 (
@tschaub)- #548 - Bump eslint from 8.56.0 to 8.57.0 (
@tschaub)- #545 - Bump mocha from 10.2.0 to 10.3.0 (
@tschaub)- #541 - fix: update instruction for next.js (
@multivoltage)
Commits
- 4b299306.2.0
- a3df19cLog changes
- 0b721f3Merge pull request #581 from tschaub/updates
- 13b6efcUpdate globby
- 5a8c819Merge pull request #578 from tschaub/dependabot/npm_and_yarn/sinon-19.0.2
- bf7ed42Merge pull request #579 from tschaub/dependabot/npm_and_yarn/eslint-8.57.1
- e55b0ddBump eslint from 8.57.0 to 8.57.1
- b525485Bump sinon from 18.0.0 to 19.0.2
- fc668f2Merge pull request #576 from tschaub/dependabot/npm_and_yarn/async-3.2.6
- d55ea9fBump async from 3.2.5 to 3.2.6
- Additional commits viewable in compare view
Updates axios from 1.7.7 to 1.7.9
Release notes
Sourced from axios's releases.
Release v1.7.9
Release notes:
Reverts
Contributors to this release
Release v1.7.8
Release notes:
Bug Fixes
- allow passing a callback as paramsSerializer to buildURL (#6680) (eac4619)
- core: fixed config merging bug (#6668) (5d99fe4)
- fixed width form to not shrink after 'Send Request' button is clicked (#6644) (7ccd5fd)
- http: add support for File objects as payload in http adapter (#6588) (#6605) (6841d8d)
- http: fixed proxy-from-env module import (#5222) (12b3295)
- http: use
globalThis.TextEncoderwhen available (#6634) (df956d1)- ios11 breaks when build (#6608) (7638952)
- types: add missing types for mergeConfig function (#6590) (00de614)
- types: export CJS types from ESM (#6218) (c71811b)
- updated stream aborted error message to be more clear (#6615) (cc3217a)
- use URL API instead of DOM to fix a potential vulnerability warning; (#6714) (0a8d6e1)
Contributors to this release
Changelog
Sourced from axios's changelog.
1.7.9 (2024-12-04)
Reverts
Contributors to this release
1.7.8 (2024-11-25)
Bug Fixes
- allow passing a callback as paramsSerializer to buildURL (#6680) (eac4619)
- core: fixed config merging bug (#6668) (5d99fe4)
- fixed width form to not shrink after 'Send Request' button is clicked (#6644) (7ccd5fd)
- http: add support for File objects as payload in http adapter (#6588) (#6605) (6841d8d)
- http: fixed proxy-from-env module import (#5222) (12b3295)
- http: use
globalThis.TextEncoderwhen available (#6634) (df956d1)- ios11 breaks when build (#6608) (7638952)
- types: add missing types for mergeConfig function (#6590) (00de614)
- types: export CJS types from ESM (#6218) (c71811b)
- updated stream aborted error message to be more clear (#6615) (cc3217a)
- use URL API instead of DOM to fix a potential vulnerability warning; (#6714) (0a8d6e1)
Contributors to this release
Commits
- b2cb45dchore(release): v1.7.9 (#6730)
- c44d2f2Revert "fix(types): export CJS types from ESM (#6218)" (#6729)
- 415ca94chore(release): v1.7.8 (#6715)
- 0a8d6e1fix: use URL API instead of DOM to fix a potential vulnerability warning; (#6...
- c71811bfix(types): export CJS types from ESM (#6218)
- 4355a6dchore(sponsor): update sponsor block (#6709)
- 5d54d22chore(sponsor): update sponsor block (#6707)
- eac4619fix: allow passing a callback as paramsSerializer to buildURL (#6680)
- df956d1fix(http): use- globalThis.TextEncoderwhen available (#6634)
- 7139ce9chore(deps): bump cookie and socket.io (#6704)
- Additional commits viewable in compare view
Updates chokidar from 4.0.1 to 4.0.3
Release notes
Sourced from chokidar's releases.
4.0.3
What's Changed
- Fix typescript type of emitted args by
@43081jin paulmillr/chokidar#1397Full Changelog: https://github.com/paulmillr/chokidar/compare/4.0.2...4.0.3
4.0.2
What's Changed
- Fix test "should detect safe-edit" on FreeBSD by
@tagattiein paulmillr/chokidar#1375- Remove references to .map files by
@bluwyin paulmillr/chokidar#1383- feat: strongly type event emitter methods by
@43081jin paulmillr/chokidar#1381New ContributorsDescription has been truncated