ledgersmb / LedgerSMB

Double-entry accounting & ERP for the web
https://ledgersmb.org
Other
413 stars 150 forks source link

Update all non-major dependencies (1.11) #8335

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 1 month ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.24.9 -> 7.25.2 age adoption passing confidence
@babel/eslint-parser (source) 7.25.0 -> 7.25.1 age adoption passing confidence
@babel/preset-env (source) 7.25.0 -> 7.25.3 age adoption passing confidence
@redocly/cli 1.18.1 -> 1.19.0 age adoption passing confidence
browserslist 4.23.2 -> 4.23.3 age adoption passing confidence
caniuse-lite 1.0.30001643 -> 1.0.30001647 age adoption passing confidence
core-js (source) 3.37.1 -> 3.38.0 age adoption passing confidence
eslint-plugin-jest 28.6.0 -> 28.7.0 age adoption passing confidence
eslint-plugin-jsdoc 48.8.3 -> 48.11.0 age adoption passing confidence
msw (source) 2.3.4 -> 2.3.5 age adoption passing confidence
stylelint (source) 16.7.0 -> 16.8.1 age adoption passing confidence
vue (source) 3.4.34 -> 3.4.35 age adoption passing confidence
vue-router 4.4.0 -> 4.4.2 age adoption passing confidence

Release Notes

babel/babel (@​babel/core) ### [`v7.25.2`](https://togithub.com/babel/babel/blob/HEAD/CHANGELOG.md#v7252-2024-07-30) [Compare Source](https://togithub.com/babel/babel/compare/v7.24.9...v7.25.2) ##### :bug: Bug Fix - `babel-core`, `babel-traverse` - [#​16695](https://togithub.com/babel/babel/pull/16695) Ensure that `requeueComputedKeyAndDecorators` is available ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
Redocly/redocly-cli (@​redocly/cli) ### [`v1.19.0`](https://togithub.com/Redocly/redocly-cli/releases/tag/%40redocly/cli%401.19.0) [Compare Source](https://togithub.com/Redocly/redocly-cli/compare/@redocly/cli@1.18.1...@redocly/cli@1.19.0) ##### Minor Changes - Added support for AsyncAPI 3.0 description linting. ##### Patch Changes - Fixed an issue where `patternProperties` incorrectly caused linting errors due to a missing `PatternProperties` node. - Updated [@​redocly/openapi-core](https://togithub.com/redocly/openapi-core) to v1.19.0.
browserslist/browserslist (browserslist) ### [`v4.23.3`](https://togithub.com/browserslist/browserslist/blob/HEAD/CHANGELOG.md#4233) [Compare Source](https://togithub.com/browserslist/browserslist/compare/4.23.2...4.23.3) - Fixed `>=` query for `ios` (by [@​syi0808](https://togithub.com/syi0808)).
browserslist/caniuse-lite (caniuse-lite) ### [`v1.0.30001647`](https://togithub.com/browserslist/caniuse-lite/compare/1.0.30001646...1.0.30001647) [Compare Source](https://togithub.com/browserslist/caniuse-lite/compare/1.0.30001646...1.0.30001647) ### [`v1.0.30001646`](https://togithub.com/browserslist/caniuse-lite/compare/1.0.30001645...1.0.30001646) [Compare Source](https://togithub.com/browserslist/caniuse-lite/compare/1.0.30001645...1.0.30001646) ### [`v1.0.30001645`](https://togithub.com/browserslist/caniuse-lite/compare/1.0.30001644...1.0.30001645) [Compare Source](https://togithub.com/browserslist/caniuse-lite/compare/1.0.30001644...1.0.30001645) ### [`v1.0.30001644`](https://togithub.com/browserslist/caniuse-lite/compare/1.0.30001643...1.0.30001644) [Compare Source](https://togithub.com/browserslist/caniuse-lite/compare/1.0.30001643...1.0.30001644)
zloirock/core-js (core-js) ### [`v3.38.0`](https://togithub.com/zloirock/core-js/blob/HEAD/CHANGELOG.md#3380---20240805) [Compare Source](https://togithub.com/zloirock/core-js/compare/v3.37.1...4a322bf3a89fd4579b938ab09941b509f9db7136) - Changes [v3.37.1...v3.38.0](https://togithub.com/zloirock/core-js/compare/v3.37.1...v3.38.0) - [`RegExp.escape` proposal](https://togithub.com/tc39/proposal-regex-escaping): - Built-ins: - `RegExp.escape` - Moved to stage 3, [June 2024](https://togithub.com/tc39/proposals/commit/4b8ee265248abfa2c88ed71b3c541ddd5a2eaffe) and [July 2024](https://togithub.com/tc39/proposals/commit/bdb2eea6c5e41a52f2d6047d7de1a31b5d188c4f) TC39 meetings - Updated the way of escaping, [regex-escaping/77](https://togithub.com/tc39/proposal-regex-escaping/pull/77) - Throw an error on non-strings, [regex-escaping/58](https://togithub.com/tc39/proposal-regex-escaping/pull/58) - Added `/actual/` namespace entries, unconditional forced replacement changed to feature detection - [`Promise.try` proposal](https://togithub.com/tc39/proposal-promise-try): - Built-ins: - `Promise.try` - Moved to stage 3, [June 2024 TC39 meeting](https://togithub.com/tc39/proposals/commit/de20984cd7f7bc616682c557cb839abc100422cb) - Added `/actual/` namespace entries, unconditional forced replacement changed to feature detection - [`Uint8Array` to / from base64 and hex stage 3 proposal](https://togithub.com/tc39/proposal-arraybuffer-base64): - Built-ins: - `Uint8Array.fromBase64` - `Uint8Array.fromHex` - `Uint8Array.prototype.setFromBase64` - `Uint8Array.prototype.setFromHex` - `Uint8Array.prototype.toBase64` - `Uint8Array.prototype.toHex` - Added `Uint8Array.prototype.{ setFromBase64, setFromHex }` methods - Added `Uint8Array.fromBase64` and `Uint8Array.prototype.setFromBase64` `lastChunkHandling` option, [proposal-arraybuffer-base64/33](https://togithub.com/tc39/proposal-arraybuffer-base64/pull/33) - Added `Uint8Array.prototype.toBase64` `omitPadding` option, [proposal-arraybuffer-base64/60](https://togithub.com/tc39/proposal-arraybuffer-base64/pull/60) - Added throwing a `TypeError` on arrays backed by detached buffers - Unconditional forced replacement changed to feature detection - Fixed `RegExp` named capture groups polyfill in combination with non-capturing groups, [#​1352](https://togithub.com/zloirock/core-js/pull/1352), thanks [**@​Ulop**](https://togithub.com/Ulop) - Improved some cases of environment detection - Uses [`process.getBuiltinModule`](https://nodejs.org/docs/latest/api/process.html#processgetbuiltinmoduleid) for getting built-in NodeJS modules where it's available - Uses `https` instead of `http` in `URL` constructor feature detection to avoid extra notifications from some overly vigilant security scanners, [#​1345](https://togithub.com/zloirock/core-js/issues/1345) - Some minor optimizations - Updated `browserslist` in `core-js-compat` dependencies that fixes an upstream issue with incorrect interpretation of some `browserslist` queries, [#​1344](https://togithub.com/zloirock/core-js/issues/1344), [browserslist/829](https://togithub.com/browserslist/browserslist/issues/829), [browserslist/836](https://togithub.com/browserslist/browserslist/pull/836) - Compat data improvements: - Added [Safari 18.0](https://webkit.org/blog/15443/news-from-wwdc24-webkit-in-safari-18-beta/) compat data: - Fixed [`Object.groupBy` and `Map.groupBy`](https://togithub.com/tc39/proposal-array-grouping) to [work for non-objects](https://bugs.webkit.org/show_bug.cgi?id=271524) - Fixed [throwing a `RangeError` if `Set` methods are called on an object with negative size property](https://bugs.webkit.org/show_bug.cgi?id=267494) - Fixed [`Set.prototype.symmetricDifference` to call `this.has` in each iteration](https://bugs.webkit.org/show_bug.cgi?id=272679) - Fixed [`Array.fromAsync`](https://togithub.com/tc39/proposal-array-from-async) to [not call the `Array` constructor twice](https://bugs.webkit.org/show_bug.cgi?id=271703) - Added [`URL.parse`](https://url.spec.whatwg.org/#dom-url-parse) - [`Math.f16round` and `DataView.prototype.{ getFloat16, setFloat16 }`](https://togithub.com/tc39/proposal-float16array) marked as [shipped from FF129](https://bugzilla.mozilla.org/show_bug.cgi?id=1903329) - [`Symbol.asyncDispose`](https://togithub.com/tc39/proposal-explicit-resource-management) added and marked as supported from V8 ~ Chromium 127 - [`Promise.try`](https://togithub.com/tc39/proposal-promise-try) added and marked as supported [from V8 ~ Chromium 128](https://chromestatus.com/feature/6315704705089536) - Added Deno [1.44](https://togithub.com/denoland/deno/releases/tag/v1.44.0) and [1.45](https://togithub.com/denoland/deno/releases/tag/v1.45.0) compat data mapping - `self` descriptor [is broken in Deno 1.45.3](https://togithub.com/denoland/deno/issues/24683) (again) - Added Electron 32 and 33 compat data mapping - Added [Opera Android 83](https://forums.opera.com/topic/72570/opera-for-android-83) compat data mapping - Added Samsung Internet 27 compat data mapping - Added Oculus Quest Browser 34 compat data mapping
jest-community/eslint-plugin-jest (eslint-plugin-jest) ### [`v28.7.0`](https://togithub.com/jest-community/eslint-plugin-jest/blob/HEAD/CHANGELOG.md#2870-2024-08-03) [Compare Source](https://togithub.com/jest-community/eslint-plugin-jest/compare/v28.6.0...v28.7.0) ##### Features - allow `[@typescript-eslint](https://togithub.com/typescript-eslint)` v8 ([#​1636](https://togithub.com/jest-community/eslint-plugin-jest/issues/1636)) ([fb43171](https://togithub.com/jest-community/eslint-plugin-jest/commit/fb43171a150922524744194e023841af12b3f76b))
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc) ### [`v48.11.0`](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.10.2...116b3e8c906884f799927cf42ab29cab1cfb4e31) [Compare Source](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.10.2...v48.11.0) ### [`v48.10.2`](https://togithub.com/gajus/eslint-plugin-jsdoc/releases/tag/v48.10.2) [Compare Source](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.10.1...v48.10.2) ##### Bug Fixes - **`check-template-names`:** check for param and returns tags; fixes [#​1286](https://togithub.com/gajus/eslint-plugin-jsdoc/issues/1286) ([12fca71](https://togithub.com/gajus/eslint-plugin-jsdoc/commit/12fca71fdc7761d4affb52bf5fe4be25eddabc5b)) ### [`v48.10.1`](https://togithub.com/gajus/eslint-plugin-jsdoc/releases/tag/v48.10.1) [Compare Source](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.10.0...v48.10.1) ##### Bug Fixes - add espree as dependency; fixes [#​1284](https://togithub.com/gajus/eslint-plugin-jsdoc/issues/1284) ([31e0a35](https://togithub.com/gajus/eslint-plugin-jsdoc/commit/31e0a35382c5d4c847781df6c4b5d8fb371d8d3c)) ### [`v48.10.0`](https://togithub.com/gajus/eslint-plugin-jsdoc/releases/tag/v48.10.0) [Compare Source](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.9.3...v48.10.0) ##### Features - **`require-template`, `check-template-names`:** add support `ClassDeclaration` ([31d3255](https://togithub.com/gajus/eslint-plugin-jsdoc/commit/31d32555988dca786726420246efcd1589c07316)) - **`require-template`, `check-template-names`:** add support `FunctionDeclaration` ([28bc1cb](https://togithub.com/gajus/eslint-plugin-jsdoc/commit/28bc1cb8664b0373ad87f6cb0cd7c781139cc3b8)) - **`require-template`, `check-template-names`:** add support `TSInterfaceDeclaration` ([320a1eb](https://togithub.com/gajus/eslint-plugin-jsdoc/commit/320a1ebb5c72d48a5a0cc725a7f8a1ea0170d2f6)) ### [`v48.9.3`](https://togithub.com/gajus/eslint-plugin-jsdoc/releases/tag/v48.9.3) [Compare Source](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.9.2...v48.9.3) ##### Bug Fixes - **`getJsdocProcessorPlugin`:** ensure package.json file is consistently located ([87a1270](https://togithub.com/gajus/eslint-plugin-jsdoc/commit/87a12703b229efa73334e61d7ed4448cb28167a9)) ### [`v48.9.2`](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.9.1...2fbd47c3d2b23a41d87b979daa56a648270d3675) [Compare Source](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.9.1...v48.9.2) ### [`v48.9.1`](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.9.0...3ba475e589bc1dc83a7f57950378b2da0228e7fc) [Compare Source](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.9.0...v48.9.1) ### [`v48.9.0`](https://togithub.com/gajus/eslint-plugin-jsdoc/releases/tag/v48.9.0) [Compare Source](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.8.3...v48.9.0) ##### Features - add `check-examples` replacement processor; fixes [#​928](https://togithub.com/gajus/eslint-plugin-jsdoc/issues/928) ([6248d59](https://togithub.com/gajus/eslint-plugin-jsdoc/commit/6248d59a38fb9ea75aa42a61543c8195cbe9a9de))
mswjs/msw (msw) ### [`v2.3.5`](https://togithub.com/mswjs/msw/releases/tag/v2.3.5) [Compare Source](https://togithub.com/mswjs/msw/compare/v2.3.4...v2.3.5) #### v2.3.5 (2024-08-02) ##### Bug Fixes - **HttpResponse:** skip setting "Content-Length" if it is already set ([#​2228](https://togithub.com/mswjs/msw/issues/2228)) ([`a0234c9`](https://togithub.com/mswjs/msw/commit/a0234c9abebada6f66f8a14dfa04bf2aac6e6dcf)) [@​kettanaito](https://togithub.com/kettanaito)
stylelint/stylelint (stylelint) ### [`v16.8.1`](https://togithub.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#1681) [Compare Source](https://togithub.com/stylelint/stylelint/compare/16.8.0...16.8.1) - Fixed: `no-duplicate-selectors` false positives with Less syntax ([#​7888](https://togithub.com/stylelint/stylelint/pull/7888)) ([@​romainmenke](https://togithub.com/romainmenke)). ### [`v16.8.0`](https://togithub.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#1680) [Compare Source](https://togithub.com/stylelint/stylelint/compare/16.7.0...16.8.0) - Deprecated: `github` formatter ([#​7865](https://togithub.com/stylelint/stylelint/pull/7865)) ([@​marcalexiei](https://togithub.com/marcalexiei)). - Fixed: `function-url-quotes` false positives for SCSS variables and `#`/`?` characters ([#​7874](https://togithub.com/stylelint/stylelint/pull/7874)) ([@​vimalloc](https://togithub.com/vimalloc)). - Fixed: `keyframe-selector-notation` false positives for `entry-crossing` and `exit-crossing` ([#​7859](https://togithub.com/stylelint/stylelint/pull/7859)) ([@​romainmenke](https://togithub.com/romainmenke)). - Fixed: `no-descending-specificity` false positives for nested rules without declarations ([#​7850](https://togithub.com/stylelint/stylelint/pull/7850)) ([@​romainmenke](https://togithub.com/romainmenke)). - Fixed: `no-duplicate-selectors` end positions ([#​7867](https://togithub.com/stylelint/stylelint/pull/7867)) ([@​romainmenke](https://togithub.com/romainmenke)). - Fixed: `no-duplicate-selectors` false negatives for three or more duplicates ([#​7867](https://togithub.com/stylelint/stylelint/pull/7867)) ([@​romainmenke](https://togithub.com/romainmenke)). - Fixed: `selector-max-compound-selectors` error for `@nest` ([#​7875](https://togithub.com/stylelint/stylelint/pull/7875)) ([@​romainmenke](https://togithub.com/romainmenke)). - Fixed: `selector-pseudo-class-no-unknown` false positives for `:active-view-transition` and `:active-view-transition-type()` ([#​7868](https://togithub.com/stylelint/stylelint/pull/7868)) ([@​Mouvedia](https://togithub.com/Mouvedia)). - Fixed: `selector-type-*`, `selector-max-type` and `selector-class-pattern` false positives for `` in keyframe selectors ([#​7856](https://togithub.com/stylelint/stylelint/pull/7856)) ([@​romainmenke](https://togithub.com/romainmenke)). - Fixed: `stylelint.utils.checkAgainstRule()` regression when `reportNeedlessDisables` and `quiet` are both enabled ([#​7879](https://togithub.com/stylelint/stylelint/pull/7879)) ([@​ybiquitous](https://togithub.com/ybiquitous)). - Fixed: configuration comments within selector and value lists being ignored ([#​7839](https://togithub.com/stylelint/stylelint/pull/7839)) ([@​romainmenke](https://togithub.com/romainmenke)).
vuejs/core (vue) ### [`v3.4.35`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#3435-2024-07-31) [Compare Source](https://togithub.com/vuejs/core/compare/v3.4.34...v3.4.35) ##### Bug Fixes - **teleport/ssr:** fix Teleport hydration regression due to targetStart anchor addition ([7b18cdb](https://togithub.com/vuejs/core/commit/7b18cdb0b53a94007ca6a3675bf41b5d3153fec6)) - **teleport/ssr:** ensure targetAnchor and targetStart not null during hydration ([#​11456](https://togithub.com/vuejs/core/issues/11456)) ([12667da](https://togithub.com/vuejs/core/commit/12667da4879f980dcf2c50e36f3642d085a87d71)), closes [#​11400](https://togithub.com/vuejs/core/issues/11400) - **types/ref:** allow getter and setter types to be unrelated ([#​11442](https://togithub.com/vuejs/core/issues/11442)) ([e0b2975](https://togithub.com/vuejs/core/commit/e0b2975ef65ae6a0be0aa0a0df43fb887c665251)) ##### Performance Improvements - **runtime-core:** improve efficiency of normalizePropsOptions ([#​11409](https://togithub.com/vuejs/core/issues/11409)) ([5680142](https://togithub.com/vuejs/core/commit/5680142e68096c42e66da9f4c6220d040d7c56ba)), closes [#​9739](https://togithub.com/vuejs/core/issues/9739)
vuejs/router (vue-router) ### [`v4.4.2`](https://togithub.com/vuejs/router/releases/tag/v4.4.2) [Compare Source](https://togithub.com/vuejs/router/compare/v4.4.1...v4.4.2) Please refer to [CHANGELOG.md](https://togithub.com/vuejs/router/blob/main/packages/router/CHANGELOG.md) for details. ### [`v4.4.1`](https://togithub.com/vuejs/router/compare/v4.4.0...v4.4.1) [Compare Source](https://togithub.com/vuejs/router/compare/v4.4.0...v4.4.1)

Configuration

📅 Schedule: Branch creation - "after 11pm on friday,before 7am on saturday" in timezone Etc/Greenwich, 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 was generated by Mend Renovate. View the repository job log.

renovate[bot] commented 1 month ago

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.