stacksjs / bun-spreadsheets

Easily generate spreadsheets, like CSVs and Excel files.
https://docs.stacksjs.org/
MIT License
70 stars 0 forks source link

chore(deps): update all non-major dependencies #1

Closed renovate[bot] closed 2 weeks ago

renovate[bot] commented 2 weeks ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@biomejs/biome (source) ^1.9.2 -> ^1.9.3 age adoption passing confidence
bumpp ^9.5.2 -> ^9.6.1 age adoption passing confidence
bun-plugin-dts-auto ^0.15.0 -> ^0.17.0 age adoption passing confidence
commitizen ^4.3.0 -> ^4.3.1 age adoption passing confidence
cz-git (source) ^1.9.4 -> ^1.10.0 age adoption passing confidence

Release Notes

biomejs/biome (@​biomejs/biome) ### [`v1.9.3`](https://redirect.github.com/biomejs/biome/blob/HEAD/CHANGELOG.md#v193-2024-10-01) [Compare Source](https://redirect.github.com/biomejs/biome/compare/5f2287e005eadb261a4c78e4ec0fdc0d46068551...3d498ed6399dc642d045f9bb9e9782a88c6bd4c9) ##### CLI ##### New features - GritQL queries that match functions or methods will now match async functions or methods as well. If this is not what you want, you can capture the `async` keyword (or its absence) in a metavariable and assert its emptiness: ```grit $async function foo() {} where $async <: . ``` Contributed by [@​arendjr](https://redirect.github.com/arendjr) ##### Bug fixes - Fix [#​4077](https://redirect.github.com/biomejs/biome/issues/4077): Grit queries no longer need to match the statement's trailing semicolon. Contributed by [@​arendjr](https://redirect.github.com/arendjr) - Fix [#​4102](https://redirect.github.com/biomejs/biome/issues/4102). Now the CLI command `lint` doesn't exit with an error code when using `--write`/`--fix`. Contributed by [@​ematipico](https://redirect.github.com/ematipico) ##### Configuration ##### Bug fixes - Fix [#​4125](https://redirect.github.com/biomejs/biome/issues/4125), where `noLabelWithoutControl` options where incorrectly marked as mandatory. Contributed by [@​ematipico](https://redirect.github.com/ematipico) ##### Editors - Fix a case where CSS files weren't correctly linted using the default configuration. Contributed by [@​ematipico](https://redirect.github.com/ematipico) ##### Formatter ##### Bug fixes - Fix [#​3924](https://redirect.github.com/biomejs/biome/issues/3924) where GraphQL formatter panics in block comments with empty line. Contributed by [@​vohoanglong0107](https://redirect.github.com/vohoanglong0107) - Fix a case where raw values inside `url()` functions weren't properly trimmed. ```diff .value { - background: url( - whitespace-around-string - ); + background: url(whitespace-around-string); } ``` Contributed by [@​ematipico](https://redirect.github.com/ematipico) - Fixed [#​4076](https://redirect.github.com/biomejs/biome/issues/4076), where a media query wasn't correctly formatted: ```diff .class { - @​media (1024px <= width <=1280px) { + @​media (1024px <= width <= 1280px) { color: red; } } ``` Contributed by [@​blaze-d83](https://redirect.github.com/blaze-d83) ##### JavaScript API ##### Bug fixes - Fix [#​3881](https://redirect.github.com/biomejs/biome/issues/3881), by updating the APIs to use the latest WASM changes. Contributed by [@​ematipico](https://redirect.github.com/ematipico) ##### Linter ##### New features - Add [noDescendingSpecificity](https://biomejs.dev/linter/rules/no-descending-specificity/). Contributed by [@​tunamaguro](https://redirect.github.com/tunamaguro) - Add [noNestedTernary](https://biomejs.dev/linter/rules/no-nested-ternary/). Contributed by [@​kaykdm](https://redirect.github.com/kaykdm) - Add [noTemplateCurlyInString](https://biomejs.dev/linter/rules/no-template-curly-in-string/). Contributed by [@​fireairforce](https://redirect.github.com/fireairforce) - Add [noOctalEscape](https://biomejs.dev/linter/rules/no-octal-escape/). Contributed by [@​fireairforce](https://redirect.github.com/fireairforce) ##### Enhancements - Add an option `reportUnnecessaryDependencies` to [useExhaustiveDependencies](https://biomejs.dev/linter/rules/use-exhaustive-dependencies/). Defaults to true. When set to false, errors will be suppressed for React hooks that declare dependencies but do not use them. Contributed by [@​simon-paris](https://redirect.github.com/simon-paris) - Add an option `reportMissingDependenciesArray` to [useExhaustiveDependencies](https://biomejs.dev/linter/rules/use-exhaustive-dependencies/). Contributed by [@​simon-paris](https://redirect.github.com/simon-paris) ##### Bug fixes - [noControlCharactersInRegex](https://www.biomejs.dev/linter/rules/no-control-characters-in-regex) no longer panics on regexes with incomplete escape sequences. Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [noMisleadingCharacterClass](https://biomejs.dev/linter/rules/no-misleading-character-class/) no longer reports issues outside of character classes. The following code is no longer reported: ```js /[a-z]👍/; ``` Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [noUndeclaredDependencies](https://biomejs.dev/linter/rules/no-undeclared-dependencies/) no longer reports Node.js builtin modules as undeclared dependencies. The rule no longer reports the following code: ```js import * as fs from "fs"; ``` Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [noUnusedVariables](https://biomejs.dev/linter/rules/no-unused-variables/) no longer panics when suggesting the renaming of a variable at the start of a file ([#​4114](https://redirect.github.com/biomejs/biome/issues/4114)). Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [noUselessEscapeInRegex](https://biomejs.dev/linter/rules/no-useless-escape-in-regex/) no longer panics on regexes that start with an empty character class. Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [noUselessStringConcat](https://biomejs.dev/linter/rules/no-useless-string-concat/) no longer panics when it encounters malformed code. Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [noUnusedFunctionParameters](https://biomejs.dev/linter/rules/no-unused-function-parameters/) no longer reports unused parameters inside an object pattern with a rest parameter. In the following code, the rule no longer reports `a` as unused. ```js function f({ a, ...rest }) { return rest; } ``` This matches the behavior of [noUnusedVariables](https://biomejs.dev/linter/rules/no-unused-variables/). Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [useButtonType](https://biomejs.dev/linter/rules/use-button-type/) no longer reports dynamically created button with a valid type ([#​4072](https://redirect.github.com/biomejs/biome/issues/4072)). The following code is no longer reported: ```js React.createElement("button", { type: "button" }, "foo") ``` Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [useSemanticElements](https://biomejs.dev/linter/rules/use-semantic-elements/) now ignores elements with the `img` role ([#​3994](https://redirect.github.com/biomejs/biome/issues/3994)). [MDN recommends](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/img_role) using `role="img"` for grouping images or creating an image from other elements. The following code is no longer reported: ```jsx

🐈 😂

``` Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [useSemanticElements](https://biomejs.dev/linter/rules/use-semantic-elements/) now ignores `alert` and `alertdialog` roles ([#​3858](https://redirect.github.com/biomejs/biome/issues/3858)). Contributed by [@​Conaclos](https://redirect.github.com/Conaclos) - [noUselessFragments](https://biomejs.dev/linter/rules/no-useless-fragments/) don't create invaild JSX code when Fragments children contains JSX Expression and in a LogicalExpression. Contributed by [@​fireairforce](https://redirect.github.com/fireairforce) ##### Parser ##### Bug fixes - Forbid undefined as type name for typescript parser. Contributed by [@​fireairforce](https://redirect.github.com/fireairforce)
antfu/bumpp (bumpp) ### [`v9.6.1`](https://redirect.github.com/antfu-collective/bumpp/releases/tag/v9.6.1) [Compare Source](https://redirect.github.com/antfu/bumpp/compare/v9.6.0...v9.6.1) #####    🚀 Features - Improve commit printing  -  by [@​antfu](https://redirect.github.com/antfu) [(aaad5)](https://redirect.github.com/antfu-collective/bumpp/commit/aaad54d) #####     [View changes on GitHub](https://redirect.github.com/antfu-collective/bumpp/compare/v9.6.0...v9.6.1) ### [`v9.6.0`](https://redirect.github.com/antfu-collective/bumpp/releases/tag/v9.6.0) [Compare Source](https://redirect.github.com/antfu/bumpp/compare/v9.5.2...v9.6.0) #####    🚀 Features - Print recent commits since last tag  -  by [@​antfu](https://redirect.github.com/antfu) [(0e377)](https://redirect.github.com/antfu-collective/bumpp/commit/0e3777d) #####    🐞 Bug Fixes - The recursive option is not working in the bump.config.ts file  -  by [@​gz65555](https://redirect.github.com/gz65555) in [https://github.com/antfu-collective/bumpp/issues/42](https://redirect.github.com/antfu-collective/bumpp/issues/42) [(4fda6)](https://redirect.github.com/antfu-collective/bumpp/commit/4fda6b1) - Improve printed commit messages  -  by [@​antfu](https://redirect.github.com/antfu) [(2e634)](https://redirect.github.com/antfu-collective/bumpp/commit/2e634b9) #####     [View changes on GitHub](https://redirect.github.com/antfu-collective/bumpp/compare/v9.5.2...v9.6.0)
stacksjs/bun-plugin-dts-auto (bun-plugin-dts-auto) ### [`v0.17.0`](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/releases/tag/v0.17.0) [Compare Source](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.16.0...v0.17.0) #####    🚀 Features - Use oxc to generate dts  -  by [@​chrisbbreuer](https://redirect.github.com/chrisbbreuer) [(9ae7a)](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/commit/9ae7af1) #####    🐞 Bug Fixes - Typecheck  -  by [@​chrisbbreuer](https://redirect.github.com/chrisbbreuer) [(2a847)](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/commit/2a84772) #####     [View changes on GitHub](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.16.0...v0.17.0) ### [`v0.16.0`](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/blob/HEAD/CHANGELOG.md#v0160main) [Compare Source](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.15.4...v0.16.0) [compare changes](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.16.0...main) ##### 🚀 Enhancements - Use oxc to generate dts ([9ae7af1](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/commit/9ae7af1)) ##### 🩹 Fixes - Typecheck ([2a84772](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/commit/2a84772)) ##### ❤️ Contributors - Chris ### [`v0.15.4`](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/blob/HEAD/CHANGELOG.md#v0154main) [Compare Source](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.15.3...v0.15.4) [compare changes](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.15.4...main) ##### 🏡 Chore - Several minor fixes ([7af35f6](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/commit/7af35f6)) ##### ❤️ Contributors - Chris ### [`v0.15.3`](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/blob/HEAD/CHANGELOG.md#v0153main) [Compare Source](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.15.2...v0.15.3) [compare changes](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.15.3...main) ##### 🩹 Fixes - Monorepo problems ([e518b30](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/commit/e518b30)) ##### ❤️ Contributors - Chris ### [`v0.15.2`](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/blob/HEAD/CHANGELOG.md#v0152main) [Compare Source](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.15.1...v0.15.2) [compare changes](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.15.2...main) ##### 🩹 Fixes - Filter entry points ([37c93a1](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/commit/37c93a1)) ##### 🏡 Chore - Update readme ([9081b61](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/commit/9081b61)) ##### ❤️ Contributors - Chris ### [`v0.15.1`](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/blob/HEAD/CHANGELOG.md#v0151main) [Compare Source](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.15.0...v0.15.1) [compare changes](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/compare/v0.15.1...main) ##### 🩹 Fixes - Generate declaration files with correct references ([eb3eb0d](https://redirect.github.com/stacksjs/bun-plugin-dts-auto/commit/eb3eb0d)) ##### ❤️ Contributors - Chris
commitizen/cz-cli (commitizen) ### [`v4.3.1`](https://redirect.github.com/commitizen/cz-cli/releases/tag/v4.3.1) [Compare Source](https://redirect.github.com/commitizen/cz-cli/compare/v4.3.0...v4.3.1) ##### [4.3.1](https://redirect.github.com/commitizen/cz-cli/compare/v4.3.0...v4.3.1) (2024-09-27) ##### Bug Fixes - Close process after retry commit. Closes [#​974](https://redirect.github.com/commitizen/cz-cli/issues/974) ([#​1001](https://redirect.github.com/commitizen/cz-cli/issues/1001)) ([3ce8dd5](https://redirect.github.com/commitizen/cz-cli/commit/3ce8dd5a87f58f9ae8be5d4d8db8278bebd3181a))
Zhengqbbb/cz-git (cz-git) ### [`v1.10.0`](https://redirect.github.com/Zhengqbbb/cz-git/blob/HEAD/packages/cz-git/CHANGELOG.md#1100-2024-09-28) [Compare Source](https://redirect.github.com/Zhengqbbb/cz-git/compare/v1.9.4...v1.10.0) ##### Bug Fixes - **cli:** upgrade commitlint version to resolve config extension issue ([#​187](https://redirect.github.com/Zhengqbbb/cz-git/issues/187)) ([dee8b44](https://redirect.github.com/Zhengqbbb/cz-git/commit/dee8b445f6f6fe7300ce5e189b43fc99dd026804)), closes [#​186](https://redirect.github.com/Zhengqbbb/cz-git/issues/186) ##### Features - **cz-git,cli:** add `aiModel` option to support multiple OpenAI models ([#​185](https://redirect.github.com/Zhengqbbb/cz-git/issues/185)) ([241577b](https://redirect.github.com/Zhengqbbb/cz-git/commit/241577bdd2d452aa607e704ee232597f93e00f8b)), closes [#​180](https://redirect.github.com/Zhengqbbb/cz-git/issues/180) - **cz-git:** add env `CZ_EDITOR` to change editor during confirm ([#​174](https://redirect.github.com/Zhengqbbb/cz-git/issues/174)) ([0fad291](https://redirect.github.com/Zhengqbbb/cz-git/commit/0fad29132f9f25f2d1aade8636e8670a15c7f7cc)) ##### Performance Improvements - **cli:** remove `fs-extra`. bundle size -100KB ([79a7833](https://redirect.github.com/Zhengqbbb/cz-git/commit/79a7833f0ec5c5ba3d73f60b6740b10505e4b052)) #### [1.9.4](https://redirect.github.com/Zhengqbbb/cz-git/compare/v1.9.3...v1.9.4) (2024-07-19) ##### Bug Fixes - suppress node 22 deprecated error messages ([#​179](https://redirect.github.com/Zhengqbbb/cz-git/issues/179)) ([9f4ff58](https://redirect.github.com/Zhengqbbb/cz-git/commit/9f4ff58fa34b1857a6b37c0642ffd55a90a4bf26)) #### [1.9.3](https://redirect.github.com/Zhengqbbb/cz-git/compare/v1.9.2...v1.9.3) (2024-06-11) ##### Bug Fixes - **cli:** czg export type can not be used ([#​175](https://redirect.github.com/Zhengqbbb/cz-git/issues/175)) ([4fe94cf](https://redirect.github.com/Zhengqbbb/cz-git/commit/4fe94cf149b0800a37af5b1f94a6bfff1580e89f)) #### [1.9.2](https://redirect.github.com/Zhengqbbb/cz-git/compare/v1.9.1...v1.9.2) (2024-05-26) ##### Bug Fixes - **cz-git:** incorrect maxSubjectLength on custom scope ([#​173](https://redirect.github.com/Zhengqbbb/cz-git/issues/173)) ([baa58ae](https://redirect.github.com/Zhengqbbb/cz-git/commit/baa58ae2d1853c8a486937d896b805e0a7e8747c)) #### [1.9.1](https://redirect.github.com/Zhengqbbb/cz-git/compare/v1.9.0...v1.9.1) (2024-03-30) ##### Bug Fixes - make ai fields to be optional ([#​164](https://redirect.github.com/Zhengqbbb/cz-git/issues/164)) ([5c007ce](https://redirect.github.com/Zhengqbbb/cz-git/commit/5c007ce44f277ac97c8d75330fad7e0e1edb4183))

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 was generated by Mend Renovate. View the repository job log.