Altinn / altinn-access-management-frontend

Frontend for access management
MIT License
3 stars 1 forks source link

Update npm non-major dependencies #931

Closed renovate[bot] closed 3 weeks ago

renovate[bot] commented 4 weeks ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@navikt/aksel-icons (source) 6.6.1 -> 6.10.1 age adoption passing confidence
@playwright/test (source) 1.43.1 -> 1.44.1 age adoption passing confidence
@reduxjs/toolkit (source) 2.2.3 -> 2.2.5 age adoption passing confidence
@testing-library/cypress 10.0.1 -> 10.0.2 age adoption passing confidence
@types/node (source) 20.12.7 -> 20.14.2 age adoption passing confidence
@types/react (source) 18.2.79 -> 18.3.3 age adoption passing confidence
@types/react-dom (source) 18.2.25 -> 18.3.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.7.1 -> 7.12.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.7.1 -> 7.12.0 age adoption passing confidence
@vitejs/plugin-react (source) 4.2.1 -> 4.3.0 age adoption passing confidence
dayjs (source) 1.11.10 -> 1.11.11 age adoption passing confidence
eslint (source) 9.1.1 -> 9.4.0 age adoption passing confidence
eslint-plugin-cypress 3.1.0 -> 3.3.0 age adoption passing confidence
eslint-plugin-n 17.3.1 -> 17.8.1 age adoption passing confidence
eslint-plugin-promise 6.1.1 -> 6.2.0 age adoption passing confidence
eslint-plugin-react 7.34.1 -> 7.34.2 age adoption passing confidence
i18next (source) 23.11.2 -> 23.11.5 age adoption passing confidence
junit-report-merger 6.0.3 -> 6.0.4 age adoption passing confidence
lint-staged 15.2.2 -> 15.2.5 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.1 age adoption passing confidence
react (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-dom (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-i18next 14.1.1 -> 14.1.2 age adoption passing confidence
react-redux 9.1.1 -> 9.1.2 age adoption passing confidence
react-router-dom (source) 6.23.0 -> 6.23.1 age adoption passing confidence

Release Notes

navikt/aksel (@​navikt/aksel-icons) ### [`v6.10.1`](https://togithub.com/navikt/aksel/blob/HEAD/@​navikt/aksel-icons/CHANGELOG.md#6101) [Compare Source](https://togithub.com/navikt/aksel/compare/@navikt/aksel-icons@6.10.0...@navikt/aksel-icons@6.10.1) ##### Patch Changes - Icons: Added back support for sourcemapping. ([#​2978](https://togithub.com/navikt/aksel/pull/2978)) ### [`v6.10.0`](https://togithub.com/navikt/aksel/blob/HEAD/@​navikt/aksel-icons/CHANGELOG.md#6100) [Compare Source](https://togithub.com/navikt/aksel/compare/@navikt/aksel-icons@6.9.0...@navikt/aksel-icons@6.10.0) ### [`v6.9.0`](https://togithub.com/navikt/aksel/blob/HEAD/@​navikt/aksel-icons/CHANGELOG.md#690) [Compare Source](https://togithub.com/navikt/aksel/compare/@navikt/aksel-icons@6.8.0...@navikt/aksel-icons@6.9.0) ##### Minor Changes - Icons: New icons for geometric shapes ([#​2927](https://togithub.com/navikt/aksel/pull/2927)) ### [`v6.8.0`](https://togithub.com/navikt/aksel/blob/HEAD/@​navikt/aksel-icons/CHANGELOG.md#680) [Compare Source](https://togithub.com/navikt/aksel/compare/@navikt/aksel-icons@6.7.1...@navikt/aksel-icons@6.8.0) ### [`v6.7.1`](https://togithub.com/navikt/aksel/blob/HEAD/@​navikt/aksel-icons/CHANGELOG.md#671) [Compare Source](https://togithub.com/navikt/aksel/compare/@navikt/aksel-icons@6.7.0...@navikt/aksel-icons@6.7.1) ### [`v6.7.0`](https://togithub.com/navikt/aksel/blob/HEAD/@​navikt/aksel-icons/CHANGELOG.md#670) [Compare Source](https://togithub.com/navikt/aksel/compare/@navikt/aksel-icons@6.6.1...@navikt/aksel-icons@6.7.0)
microsoft/playwright (@​playwright/test) ### [`v1.44.1`](https://togithub.com/microsoft/playwright/releases/tag/v1.44.1) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.44.0...v1.44.1) ##### Highlights [https://github.com/microsoft/playwright/issues/30779](https://togithub.com/microsoft/playwright/issues/30779) - \[REGRESSION]: When using `video: 'on'` with VSCode extension the browser got closed [https://github.com/microsoft/playwright/issues/30755](https://togithub.com/microsoft/playwright/issues/30755) - \[REGRESSION]: Electron launch with spaces inside executablePath didn't work[https://github.com/microsoft/playwright/issues/30770](https://togithub.com/microsoft/playwright/issues/30770)0 - \[REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't wor[https://github.com/microsoft/playwright/issues/30858](https://togithub.com/microsoft/playwright/issues/30858)58 - \[REGRESSION]: ipv6 got shown instead of localhost in show-trace/show-report #### Browser Versions - Chromium 125.0.6422.14 - Mozilla Firefox 125.0.1 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 124 - Microsoft Edge 124 ### [`v1.44.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.44.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.43.1...v1.44.0) #### New APIs **Accessibility assertions** - [expect(locator).toHaveAccessibleName()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-name) checks if the element has the specified accessible name: ```js const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleName('Submit'); ``` - [expect(locator).toHaveAccessibleDescription()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-description) checks if the element has the specified accessible description: ```js const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleDescription('Upload a photo'); ``` - [expect(locator).toHaveRole()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-role) checks if the element has the specified ARIA role: ```js const locator = page.getByTestId('save-button'); await expect(locator).toHaveRole('button'); ``` **Locator handler** - After executing the handler added with [page.addLocatorHandler()](https://playwright.dev/docs/api/class-page#page-add-locator-handler), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new `noWaitAfter` option. - You can use new `times` option in [page.addLocatorHandler()](https://playwright.dev/docs/api/class-page#page-add-locator-handler) to specify maximum number of times the handler should be run. - The handler in [page.addLocatorHandler()](https://playwright.dev/docs/api/class-page#page-add-locator-handler) now accepts the locator as argument. - New [page.removeLocatorHandler()](https://playwright.dev/docs/api/class-page#page-remove-locator-handler) method for removing previously added locator handlers. ```js const locator = page.getByText('This interstitial covers the button'); await page.addLocatorHandler(locator, async overlay => { await overlay.locator('#close').click(); }, { times: 3, noWaitAfter: true }); // Run your tests that can be interrupted by the overlay. // ... await page.removeLocatorHandler(locator); ``` **Miscellaneous options** - [`multipart`](https://playwright.dev/docs/api/class-apirequestcontext#api-request-context-fetch-option-multipart) option in `apiRequestContext.fetch()` now accepts [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData) and supports repeating fields with the same name. ```js const formData = new FormData(); formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' })); formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' })); context.request.post('https://example.com/uploadFiles', { multipart: formData }); ``` - `expect(callback).toPass({ intervals })` can now be configured by `expect.toPass.inervals` option globally in [testConfig.expect](https://playwright.dev/docs/api/class-testconfig#test-config-expect) or per project in [testProject.expect](https://playwright.dev/docs/api/class-testproject#test-project-expect). - `expect(page).toHaveURL(url)` now supports `ignoreCase` [option](https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-have-url-option-ignore-case). - [testProject.ignoreSnapshots](https://playwright.dev/docs/api/class-testproject#test-project-ignore-snapshots) allows to configure per project whether to skip screenshot expectations. **Reporter API** - New method [suite.entries()](https://playwright.dev/docs/api/class-suite#suite-entries) returns child test suites and test cases in their declaration order. [suite.type](https://playwright.dev/docs/api/class-suite#suite-type) and [testCase.type](https://playwright.dev/docs/api/class-testcase#test-case-type) can be used to tell apart test cases and suites in the list. - [Blob](https://playwright.dev/docs/test-reporters#blob-reporter) reporter now allows overriding report file path with a single option `outputFile`. The same option can also be specified as `PLAYWRIGHT_BLOB_OUTPUT_FILE` environment variable that might be more convenient on CI/CD. - [JUnit](https://playwright.dev/docs/test-reporters#junit-reporter) reporter now supports `includeProjectInTestName` option. **Command line** - `--last-failed` CLI option for running only tests that failed in the previous run. First run all tests: ```sh $ npx playwright test Running 103 tests using 5 workers ... 2 failed [chromium] › my-test.spec.ts:8:5 › two ───────────────────────────────────────────────────────── [chromium] › my-test.spec.ts:13:5 › three ────────────────────────────────────────────────────── 101 passed (30.0s) ``` Now fix the failing tests and run Playwright again with `--last-failed` option: ```sh $ npx playwright test --last-failed Running 2 tests using 2 workers 2 passed (1.2s) ``` #### Browser Versions - Chromium 125.0.6422.14 - Mozilla Firefox 125.0.1 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 124 - Microsoft Edge 124
reduxjs/redux-toolkit (@​reduxjs/toolkit) ### [`v2.2.5`](https://togithub.com/reduxjs/redux-toolkit/releases/tag/v2.2.5) [Compare Source](https://togithub.com/reduxjs/redux-toolkit/compare/v2.2.4...v2.2.5) This **bugfix release** fixes an issue in the recent `createEntityAdapter` sorting perf improvements that could (in specific cases) cause Immer to throw an error when trying to read a plain JS value instead of a proxy-wrapped value. #### What's Changed - Fix missed spot where use of `current` may fail if the value is not a draft by [@​markerikson](https://togithub.com/markerikson) in [https://github.com/reduxjs/redux-toolkit/pull/4412](https://togithub.com/reduxjs/redux-toolkit/pull/4412) **Full Changelog**: https://github.com/reduxjs/redux-toolkit/compare/v2.2.4...v2.2.5 ### [`v2.2.4`](https://togithub.com/reduxjs/redux-toolkit/compare/v2.2.3...72b3ac65a2adc510280f19ec6689aebbf2bf1df4) [Compare Source](https://togithub.com/reduxjs/redux-toolkit/compare/v2.2.3...v2.2.4)
testing-library/cypress-testing-library (@​testing-library/cypress) ### [`v10.0.2`](https://togithub.com/testing-library/cypress-testing-library/releases/tag/v10.0.2) [Compare Source](https://togithub.com/testing-library/cypress-testing-library/compare/v10.0.1...v10.0.2) ##### Bug Fixes - **deps:** update testing-library/dom version ([#​276](https://togithub.com/testing-library/cypress-testing-library/issues/276)) ([b31c5c8](https://togithub.com/testing-library/cypress-testing-library/commit/b31c5c8d95c058d7deb28d74450e693271baad7b))
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. ### [`v7.11.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7110-2024-05-27) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.10.0...v7.11.0) ##### 🚀 Features - **eslint-plugin:** deprecate prefer-ts-expect-error in favor of ban-ts-comment ##### 🩹 Fixes - **eslint-plugin:** \[consistent-type-assertions] prevent syntax errors on arrow functions ##### ❤️ Thank You - Abraham Guo - auvred - Dom Armstrong - Kirk Waiblinger 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. ### [`v7.10.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7100-2024-05-20) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.9.0...v7.10.0) ##### 🚀 Features - **eslint-plugin:** \[sort-type-constituents] support case sensitive sorting ##### 🩹 Fixes - **eslint-plugin:** \[prefer-regexp-exec] fix heuristic to check whether regex may contain global flag ##### ❤️ Thank You - auvred - Emanuel Hoogeveen - jsfm01 - Kirk Waiblinger 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. ### [`v7.9.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#790-2024-05-13) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.8.0...v7.9.0) ##### 🩹 Fixes - **eslint-plugin:** \[explicit-function-return-types] fix false positive on default parameters ##### ❤️ Thank You - Kirk Waiblinger - Sheetal Nandi - Vinccool96 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. ### [`v7.8.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#780-2024-04-29) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.7.1...v7.8.0) ##### 🩹 Fixes - **eslint-plugin:** \[no-unsafe-argument] handle tagged templates - **eslint-plugin:** \[prefer-optional-chain] suggests optional chaining during strict null equality check - **eslint-plugin:** \[consistent-type-assertions] handle tagged templates - **eslint-plugin:** \[no-unsafe-return] handle union types - **eslint-plugin:** \[no-unused-vars] clear error report range ##### ❤️ Thank You - auvred - Josh Goldberg ✨ - jsfm01 - Kim Sang Du - 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. ### [`v7.11.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7110-2024-05-27) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.10.0...v7.11.0) 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](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v7.10.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7100-2024-05-20) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.9.0...v7.10.0) 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](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v7.9.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#790-2024-05-13) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.8.0...v7.9.0) 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](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v7.8.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#780-2024-04-29) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.7.1...v7.8.0) 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](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
vitejs/vite-plugin-react (@​vitejs/plugin-react) ### [`v4.3.0`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#430-2024-05-22) [Compare Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.2.1...v4.3.0) ##### Fix support for React compiler Don't set `retainLines: true` when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like [vite-plugin-react-click-to-component](https://togithub.com/ArnaudBarre/vite-plugin-react-click-to-component) to work, you should update your config to something like: ```ts export default defineConfig(({ command }) => { const babelPlugins = [['babel-plugin-react-compiler', {}]] if (command === 'serve') { babelPlugins.push(['@​babel/plugin-transform-react-jsx-development', {}]) } return { plugins: [react({ babel: { plugins: babelPlugins } })], } }) ``` ##### Support HMR for class components This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
iamkun/dayjs (dayjs) ### [`v1.11.11`](https://togithub.com/iamkun/dayjs/releases/tag/v1.11.11) [Compare Source](https://togithub.com/iamkun/dayjs/compare/v1.11.10...v1.11.11) ##### Bug Fixes - day of week type literal ([#​2630](https://togithub.com/iamkun/dayjs/issues/2630)) ([f68d73e](https://togithub.com/iamkun/dayjs/commit/f68d73efe562fdedd9e288ecb0ce6565e602f507)) - improve locale "zh-hk" format and meridiem ([#​2419](https://togithub.com/iamkun/dayjs/issues/2419)) ([a947a51](https://togithub.com/iamkun/dayjs/commit/a947a5171aad5695eaf593bc95fe073de0f0894a)) - Update 'da' locale to match correct first week of year ([#​2592](https://togithub.com/iamkun/dayjs/issues/2592)) ([44b0936](https://togithub.com/iamkun/dayjs/commit/44b0936ad709212b63e48672d8b9c225e2c3b830)) - update locale Bulgarian monthsShort Jan ([#​2538](https://togithub.com/iamkun/dayjs/issues/2538)) ([f0c9a41](https://togithub.com/iamkun/dayjs/commit/f0c9a41c6ec91528f3790e442b0c5dff15a4e640))
eslint/eslint (eslint) ### [`v9.4.0`](https://togithub.com/eslint/eslint/compare/v9.3.0...a5f7e589eca05a8a30bd2532380c304759cc8225) [Compare Source](https://togithub.com/eslint/eslint/compare/v9.3.0...v9.4.0) ### [`v9.3.0`](https://togithub.com/eslint/eslint/compare/v9.2.0...41a871cf43874e2f27ad08554c7900daf0e94b06) [Compare Source](https://togithub.com/eslint/eslint/compare/v9.2.0...v9.3.0) ### [`v9.2.0`](https://togithub.com/eslint/eslint/compare/v9.1.1...271e7ab1adc45a7b2f66cfea55a54e6048d9749a) [Compare Source](https://togithub.com/eslint/eslint/compare/v9.1.1...v9.2.0)
cypress-io/eslint-plugin-cypress (eslint-plugin-cypress) ### [`v3.3.0`](https://togithub.com/cypress-io/eslint-plugin-cypress/releases/tag/v3.3.0) [Compare Source](https://togithub.com/cypress-io/eslint-plugin-cypress/compare/v3.2.0...v3.3.0) ##### Features - add flat configurations ([0e434c7](https://togithub.com/cypress-io/eslint-plugin-cypress/commit/0e434c7e8f60f68e7f059f0110f72465dc97e92a)) ### [`v3.2.0`](https://togithub.com/cypress-io/eslint-plugin-cypress/releases/tag/v3.2.0) [Compare Source](https://togithub.com/cypress-io/eslint-plugin-cypress/compare/v3.1.1...v3.2.0) ##### Features - support eslint v9 through [@​eslint/eslintrc](https://togithub.com/eslint/eslintrc) ([25e092e](https://togithub.com/cypress-io/eslint-plugin-cypress/commit/25e092e3cf46b4cf6103b7fb081e0f20d70053a4)) ### [`v3.1.1`](https://togithub.com/cypress-io/eslint-plugin-cypress/releases/tag/v3.1.1) [Compare Source](https://togithub.com/cypress-io/eslint-plugin-cypress/compare/v3.1.0...v3.1.1) ##### Bug Fixes - issue with unsafe to chain command that is not an action ([93824e4](https://togithub.com/cypress-io/eslint-plugin-cypress/commit/93824e49b34db920a4ea83abbdcc60341550c175))
eslint-community/eslint-plugin-n (eslint-plugin-n) ### [`v17.8.1`](https://togithub.com/eslint-community/eslint-plugin-n/blob/HEAD/CHANGELOG.md#1781-2024-06-06) [Compare Source](https://togithub.com/eslint-community/eslint-plugin-n/compare/v17.8.0...v17.8.1) ##### 🩹 Fixes - hashbang + eslint v8 compat issue ([e82974f](https://togithub.com/eslint-community/eslint-plugin-n/commit/e82974fc724e4a410f85459f4cd3e5367939cc9c)) - hashbang + eslint v8 compat issue ([#​290](https://togithub.com/eslint-community/eslint-plugin-n/issues/290)) ([e82974f](https://togithub.com/eslint-community/eslint-plugin-n/commit/e82974fc724e4a410f85459f4cd3e5367939cc9c)) ### [`v17.8.0`](https://togithub.com/eslint-community/eslint-plugin-n/blob/HEAD/CHANGELOG.md#1780-2024-06-05) [Compare Source](https://togithub.com/eslint-community/eslint-plugin-n/compare/v17.7.0...v17.8.0) ##### 🌟 Features - **node-builtin:** Add node 22.2.0 support ([#​282](https://togithub.com/eslint-community/eslint-plugin-n/issues/282)) ([5221c40](https://togithub.com/eslint-community/eslint-plugin-n/commit/5221c4015fb939cfb33231b7b6f4669cf1197ef7)) ##### 🩹 Fixes - Allow for misconfigured default exports ([#​288](https://togithub.com/eslint-community/eslint-plugin-n/issues/288)) ([92e18b5](https://togithub.com/eslint-community/eslint-plugin-n/commit/92e18b572f7bd2427f050eab8484cb393e1dac7a)) ##### 🧹 Chores - add a test for self-ref ([#​280](https://togithub.com/eslint-community/eslint-plugin-n/issues/280)) ([4f50dfe](https://togithub.com/eslint-community/eslint-plugin-n/commit/4f50dfe6528e32749aac315e53b351345cfc8c13)) - update dependency markdownlint-cli to ^0.41.0 ([#​287](https://togithub.com/eslint-community/eslint-plugin-n/issues/287)) ([0efe751](https://togithub.com/eslint-community/eslint-plugin-n/commit/0efe751b1fa1194ddc58b0934a1299d982e93d35)) ### [`v17.7.0`](https://togithub.com/eslint-community/eslint-plugin-n/blob/HEAD/CHANGELOG.md#1770-2024-05-14) [Compare Source](https://togithub.com/eslint-community/eslint-plugin-n/compare/v17.6.0...v17.7.0) ##### 🌟 Features - **hashbang:** Add support to map extensions to executables ([#​278](https://togithub.com/eslint-community/eslint-plugin-n/issues/278)) ([3fd7639](https://togithub.com/eslint-community/eslint-plugin-n/commit/3fd7639e4d98d2cd936682197ef4004d59adadfd)) - **node-builtin:** Add node 20.13.0, 22.0.0, and 22.1.0 support ([#​276](https://togithub.com/eslint-community/eslint-plugin-n/issues/276)) ([4a685c0](https://togithub.com/eslint-community/eslint-plugin-n/commit/4a685c05e2d5770e22c46dcb78267fa8c484f725)) ##### 🩹 Fixes - **node-builtins:** Remove "node:" prefix from "ignores" message ([#​277](https://togithub.com/eslint-community/eslint-plugin-n/issues/277)) ([704f0b9](https://togithub.com/eslint-community/eslint-plugin-n/commit/704f0b9373542e03b42102d30bc44cb7e30fc5d8)) ##### 📚 Documentation - **node-builtins:** Specify that only static properties are supported ([#​272](https://togithub.com/eslint-community/eslint-plugin-n/issues/272)) ([735a520](https://togithub.com/eslint-community/eslint-plugin-n/commit/735a5207aee828e324835bdb0c7fa743347ef4b9)) - Provide an example with eslint-plugin-n to Playground ([#​275](https://togithub.com/eslint-community/eslint-plugin-n/issues/275)) ([cb8ffa6](https://togithub.com/eslint-community/eslint-plugin-n/commit/cb8ffa62d07869dd23985f7d861ad3c60deec4f8)) ### [`v17.6.0`](https://togithub.com/eslint-community/eslint-plugin-n/blob/HEAD/CHANGELOG.md#1760-2024-05-10) [Compare Source](https://togithub.com/eslint-community/eslint-plugin-n/compare/v17.5.1...v17.6.0) ##### 🌟 Features - Add support for ignoring experemental features ([#​269](https://togithub.com/eslint-community/eslint-plugin-n/issues/269)) ([c046376](https://togithub.com/eslint-community/eslint-plugin-n/commit/c046376fb52bef8104502ffab3c457412d1a1e27)) ##### 📚 Documentation - add maintainance info ([#​271](https://togithub.com/eslint-community/eslint-plugin-n/issues/271)) ([b454488](https://togithub.com/eslint-community/eslint-plugin-n/commit/b454488bd63c046d101305c40d24bf44ae83971e)), closes [#​194](https://togithub.com/eslint-community/eslint-plugin-n/issues/194) ### [`v17.5.1`](https://togithub.com/eslint-community/eslint-plugin-n/blob/HEAD/CHANGELOG.md#1751-2024-05-07) [Compare Source](https://togithub.com/eslint-community/eslint-plugin-n/compare/v17.5.0...v17.5.1) ##### 🩹 Fixes - Add supported version to Buffer constructor ([#​266](https://togithub.com/eslint-community/eslint-plugin-n/issues/266)) ([030f51b](https://togithub.com/eslint-community/eslint-plugin-n/commit/030f51bacd21918ef6d5b2bba9ec77cd701c3eba)) ### [`v17.5.0`](https://togithub.com/eslint-community/eslint-plugin-n/blob/HEAD/CHANGELOG.md#1750-2024-05-07) [Compare Source](https://togithub.com/eslint-community/eslint-plugin-n/compare/v17.4.0...v17.5.0) ##### 🌟 Features - **import-target:** Add resolution error reason ([#​264](https://togithub.com/eslint-community/eslint-plugin-n/issues/264)) ([982a723](https://togithub.com/eslint-community/eslint-plugin-n/commit/982a723dfb81dc141b093e27b41cd67f82ba8587)) - **node-builtins:** Add node globals ([#​261](https://togithub.com/eslint-community/eslint-plugin-n/issues/261)) ([9466731](https://togithub.com/eslint-community/eslint-plugin-n/commit/946673149b51b84581f91890495c810a496e0022)) ##### 🩹 Fixes - remove invalid es-builtins ([#​258](https://togithub.com/eslint-community/eslint-plugin-n/issues/258)) ([ecdf019](https://togithub.com/eslint-community/eslint-plugin-n/commit/ecdf019c54c5bd720c20d2ea21886559c15f3205)) ##### 🧹 Chores - update dependency markdownlint-cli to ^0.40.0 ([#​263](https://togithub.com/eslint-community/eslint-plugin-n/issues/263)) ([1e41e7c](https://togithub.com/eslint-community/eslint-plugin-n/commit/1e41e7cf5328df05d07aeab8bc9c5d0f27d33695)) ### [`v17.4.0`](https://togithub.com/eslint-community/eslint-plugin-n/blob/HEAD/CHANGELOG.md#1740-2024-04-30) [Compare Source](https://togithub.com/eslint-community/eslint-plugin-n/compare/v17.3.1...v17.4.0) ##### 🌟 Features - no-deprecated-api support removed api ([#​240](https://togithub.com/eslint-community/eslint-plugin-n/issues/240)) ([36fd35d](https://togithub.com/eslint-community/eslint-plugin-n/commit/36fd35d9bbbaec43dd911e06bd83625cd1650fb3)) ##### 🩹 Fixes - unsupported-features/node-builtins-modules version comparation ([#​257](https://togithub.com/eslint-community/eslint-plugin-n/issues/257)) ([5c67787](https://togithub.com/eslint-community/eslint-plugin-n/commit/5c67787cb191ff7409fa17ec5b12cfdc3a7a26d3)) ##### 🧹 Chores - Update release manifest (17.3.1) ([#​255](https://togithub.com/eslint-community/eslint-plugin-n/issues/255)) ([cf576cb](https://togithub.com/eslint-community/eslint-plugin-n/commit/cf576cb45bd1f13b675b1612e79f571acfb780af))
eslint-community/eslint-plugin-promise (eslint-plugin-promise) ### [`v6.2.0`](https://togithub.com/eslint-community/eslint-plugin-promise/compare/v6.1.1...5e4546d83b45eae41637f0c13b1c9748421098aa) [Compare Source](https://togithub.com/eslint-community/eslint-plugin-promise/compare/v6.1.1...v6.2.0)
jsx-eslint/eslint-plugin-react (eslint-plugin-react) ### [`v7.34.2`](https://togithub.com/jsx-eslint/eslint-plugin-react/releases/tag/v7.34.2) [Compare Source](https://togithub.com/jsx-eslint/eslint-plugin-react/compare/v7.34.1...v7.34.2) ##### Fixed - [`boolean-prop-naming`][boolean-prop-naming]: avoid a crash with a non-TSTypeReference type ([#​3718][] [@​developer-bandi](https://togithub.com/developer-bandi)) - [`jsx-no-leaked-render`][jsx-no-leaked-render]: invalid report if left side is boolean ([#​3746][] [@​akulsr0](https://togithub.com/akulsr0)) - [`jsx-closing-bracket-location`][jsx-closing-bracket-location]: message shows `{{details}}` when there are no details ([#​3759][] [@​mdjermanovic](https://togithub.com/mdjermanovic)) - [`no-invalid-html-attribute`][no-invalid-html-attribute]: ensure error messages are correct ([#​3759][] [@​mdjermanovic](https://togithub.com/mdjermanovic), [@​ljharb](https://togithub.com/ljharb)) ##### Changed - \[Refactor] create various eslint utils to fix eslint deprecations ([#​3759][] [@​mdjermanovic](https://togithub.com/mdjermanovic), [@​ljharb](https://togithub.com/ljharb)) [7.34.2]: https://togithub.com/jsx-eslint/eslint-plugin-react/compare/v7.34.1...v7.34.2 [#​3759]: https://togithub.com/jsx-eslint/eslint-plugin-react/pull/3759 [#​3746]: https://togithub.com/jsx-eslint/eslint-plugin-react/pull/3746 [#​3718]: https://togithub.com/jsx-eslint/eslint-plugin-react/pull/3718 [`boolean-prop-naming`]: docs/rules/boolean-prop-naming.md [`jsx-no-leaked-render`]: docs/rules/jsx-no-leaked-render.md [`jsx-closing-bracket-location`]: docs/rules/jsx-closing-bracket-location.md [`no-invalid-html-attribute`]: docs/rules/no-invalid-html-attribute.md
i18next/i18next (i18next) ### [`v23.11.5`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#23115) [Compare Source](https://togithub.com/i18next/i18next/compare/v23.11.4...v23.11.5) - perf: use Array.isArray() [2193](https://togithub.com/i18next/i18next/pull/2193) - perf: trim keys once [2194](https://togithub.com/i18next/i18next/pull/2194) ### [`v23.11.4`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#23114) [Compare Source](https://togithub.com/i18next/i18next/compare/v23.11.3...v23.11.4) - perf(interpolator): use object deconstruction [2181](https://togithub.com/i18next/i18next/pull/2181) ### [`v23.11.3`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#23113) [Compare Source](https://togithub.com/i18next/i18next/compare/v23.11.2...v23.11.3) - fix: Unsupported language is automatically added to preload option [2178](https://togithub.com/i18next/i18next/issues/2178)
bhovhannes/junit-report-merger (junit-report-merger) ### [`v6.0.4`](https://togithub.com/bhovhannes/junit-report-merger/releases/tag/v6.0.4) [Compare Source](https://togithub.com/bhovhannes/junit-report-merger/compare/v6.0.3...v6.0.4) #### What's Changed ##### Bug fixes: fix (closes [https://github.com/bhovhannes/junit-report-merger/issues/318](https://togithub.com/bhovhannes/junit-report-merger/issues/318)): preserve empty xml tags (https://github.com/bhovhannes/junit-report-merger/commit/1951408dffac5b3e654e9e42e09c67cd957e0737) ##### Dependency upgrades: - chore(deps): update dependency prettier to v3.1.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/290](https://togithub.com/bhovhannes/junit-report-merger/pull/290) - chore(deps): update dependency typescript to v5.3.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/291](https://togithub.com/bhovhannes/junit-report-merger/pull/291) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.5.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/292](https://togithub.com/bhovhannes/junit-report-merger/pull/292) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.5.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/293](https://togithub.com/bhovhannes/junit-report-merger/pull/293) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.5.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/294](https://togithub.com/bhovhannes/junit-report-merger/pull/294) - chore(deps): update dependency typescript to v5.3.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/295](https://togithub.com/bhovhannes/junit-report-merger/pull/295) - chore(deps): update dependency prettier to v3.1.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/296](https://togithub.com/bhovhannes/junit-report-merger/pull/296) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.5.6 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/297](https://togithub.com/bhovhannes/junit-report-merger/pull/297) - chore(deps): update dependency prettier to v3.2.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/298](https://togithub.com/bhovhannes/junit-report-merger/pull/298) - chore(deps): update dependency prettier to v3.2.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/299](https://togithub.com/bhovhannes/junit-report-merger/pull/299) - chore(deps): update dependency prettier to v3.2.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/300](https://togithub.com/bhovhannes/junit-report-merger/pull/300) - chore(deps): update dependency prettier to v3.2.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/301](https://togithub.com/bhovhannes/junit-report-merger/pull/301) - chore(deps): update dependency prettier to v3.2.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/302](https://togithub.com/bhovhannes/junit-report-merger/pull/302) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.5.7 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/303](https://togithub.com/bhovhannes/junit-report-merger/pull/303) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.6.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/304](https://togithub.com/bhovhannes/junit-report-merger/pull/304) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.6.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/305](https://togithub.com/bhovhannes/junit-report-merger/pull/305) - chore(deps): update dependency prettier to v3.2.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/308](https://togithub.com/bhovhannes/junit-report-merger/pull/308) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.6.4 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/309](https://togithub.com/bhovhannes/junit-report-merger/pull/309) - chore(deps): update dependency typescript to v5.4.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/310](https://togithub.com/bhovhannes/junit-report-merger/pull/310) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.6.5 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/311](https://togithub.com/bhovhannes/junit-report-merger/pull/311) - chore(deps): update dependency [@​evilmartians/lefthook](https://togithub.com/evilmartians/lefthook) to v1.6.7 by [@​renovate](https://togithub.com/renovate) in [https://github.com/bhovhannes/junit-report-merger/pull/312](https://togithub.com/bhovhannes/jun

Configuration

📅 Schedule: Branch creation - "before 07:00 on Thursday" in timezone Europe/Oslo, 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 has been generated by Mend Renovate. View repository job log here.