dan-online / youtubeaudiocompressor

A simple Youtube extension that compresses video audio sound levels
https://chrome.google.com/webstore/detail/youtube-audio-compressor/henggpklijhpgacenhcmoffgnhbblgag
MIT License
9 stars 2 forks source link

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

Closed renovate[bot] closed 4 months ago

renovate[bot] commented 4 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rollup/plugin-replace (source) ^5.0.5 -> ^5.0.7 age adoption passing confidence
@sapphire/eslint-config (source) ^5.0.4 -> ^5.0.5 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^7.11.0 -> ^7.12.0 age adoption passing confidence
@typescript-eslint/parser (source) ^7.11.0 -> ^7.12.0 age adoption passing confidence
prettier (source) ^3.3.0 -> ^3.3.1 age adoption passing confidence
tslib (source) ^2.6.2 -> ^2.6.3 age adoption passing confidence

Release Notes

rollup/plugins (@​rollup/plugin-replace) ### [`v5.0.7`](https://togithub.com/rollup/plugins/blob/HEAD/packages/replace/CHANGELOG.md#v507) *2024-06-05* ##### Bugfixes - fix: add missing sourceMap documentation ([#​1698](https://togithub.com/rollup/plugins/issues/1698)) ### [`v5.0.6`](https://togithub.com/rollup/plugins/blob/HEAD/packages/replace/CHANGELOG.md#v506) *2024-06-05* ##### Bugfixes - fix: ternary operator replacement ([#​1712](https://togithub.com/rollup/plugins/issues/1712))
sapphiredev/utilities (@​sapphire/eslint-config) ### [`v5.0.5`](https://togithub.com/sapphiredev/utilities/blob/HEAD/packages/eslint-config/CHANGELOG.md#sapphireeslint-config505---2024-06-03) [Compare Source](https://togithub.com/sapphiredev/utilities/compare/@sapphire/eslint-config@5.0.4...@sapphire/eslint-config@5.0.5) #### 🐛 Bug Fixes - **eslint-config:** Bump transient dependencies ([f83936d](https://togithub.com/sapphiredev/utilities/commit/f83936db505bdcda957f5c52bdde557dbb1410b9)) - **deps:** Update all non-major dependencies ([7dc491a](https://togithub.com/sapphiredev/utilities/commit/7dc491a3eebea3bd320fcc73d3b434067646c7df)) #### 📝 Documentation - **eslint-config:** Add note on how to use with flat config ([875402c](https://togithub.com/sapphiredev/utilities/commit/875402c3d1a3611a89ba3680d107b1c8d2be20dd))
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`v7.12.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7120-2024-06-03) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.11.0...v7.12.0) ##### 🚀 Features - **eslint-plugin:** \[no-useless-template-literals] rename to `no-useless-template-expression` (deprecate `no-useless-template-literals`) - **rule-tester:** check for parsing errors in suggestion fixes - **rule-tester:** port `checkDuplicateTestCases` from ESLint - **eslint-plugin:** \[no-floating-promises] add option 'allowForKnownSafePromises' ##### 🩹 Fixes - no-useless-template-expression -> no-unnecessary-template-expression - **eslint-plugin:** \[no-unnecessary-type-assertion] combine template literal check with `const` variable check - **eslint-plugin:** \[dot-notation] fix false positive when accessing private/protected property with optional chaining - **eslint-plugin:** \[explicit-member-accessibility] refine report locations - **eslint-plugin:** \[no-unnecessary-type-assertion] declares are always defined, so always check `declare`s - **eslint-plugin:** \[prefer-literal-enum-member] allow using member it self on allowBitwiseExpressions - **eslint-plugin:** \[return-await] clean up in-try-catch detection and make autofixes safe - **eslint-plugin:** \[member-ordering] also TSMethodSignature can be get/set ##### ❤️ Thank You - Abraham Guo - Han Yeong-woo - Joshua Chen - Kim Sang Du - Kirk Waiblinger - YeonJuan You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typescript-eslint/typescript-eslint (@​typescript-eslint/parser) ### [`v7.12.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7120-2024-06-03) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.11.0...v7.12.0) ##### 🩹 Fixes - **types:** correct typing ParserOptions ##### ❤️ Thank You - Abraham Guo - Han Yeong-woo - Joshua Chen - Kim Sang Du - Kirk Waiblinger - YeonJuan You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
prettier/prettier (prettier) ### [`v3.3.1`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#331) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.0...3.3.1) [diff](https://togithub.com/prettier/prettier/compare/3.3.0...3.3.1) ##### Preserve empty lines in front matter ([#​16347](https://togithub.com/prettier/prettier/pull/16347) by [@​fisker](https://togithub.com/fisker)) ```markdown --- foo: - bar1 - bar2 - bar3 --- Markdown --- foo: - bar1 - bar2 - bar3 --- Markdown --- foo: - bar1 - bar2 - bar3 --- Markdown ``` ##### Preserve explicit language in front matter ([#​16348](https://togithub.com/prettier/prettier/pull/16348) by [@​fisker](https://togithub.com/fisker)) ```markdown ---yaml title: Hello slug: home --- --- title: Hello slug: home --- ---yaml title: Hello slug: home --- ``` ##### Avoid line breaks in import attributes ([#​16349](https://togithub.com/prettier/prettier/pull/16349) by [@​fisker](https://togithub.com/fisker)) ```jsx // Input import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" }; // Prettier 3.3.0 import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" }; // Prettier 3.3.1 import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" }; ```
Microsoft/tslib (tslib) ### [`v2.6.3`](https://togithub.com/microsoft/tslib/releases/tag/v2.6.3) [Compare Source](https://togithub.com/Microsoft/tslib/compare/v2.6.2...v2.6.3) #### What's Changed - 'await using' normative changes by [@​rbuckton](https://togithub.com/rbuckton) in [https://github.com/microsoft/tslib/pull/258](https://togithub.com/microsoft/tslib/pull/258) **Full Changelog**: https://github.com/microsoft/tslib/compare/v2.6.2...v2.6.3

Configuration

📅 Schedule: Branch creation - "before 12pm on Sunday" (UTC), 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 Mend Renovate. View repository job log here.