Altinn / altinn-studio

Next generation open source Altinn platform and applications.
https://docs.altinn.studio
BSD 3-Clause "New" or "Revised" License
114 stars 70 forks source link

chore(deps): update npm non-major dependencies #12937

Closed renovate[bot] closed 3 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) 1.43.1 -> 1.44.1 age adoption passing confidence
@storybook/addon-essentials (source) 8.0.9 -> 8.1.6 age adoption passing confidence
@storybook/addon-interactions (source) 8.0.9 -> 8.1.6 age adoption passing confidence
@storybook/addon-links (source) 8.0.9 -> 8.1.6 age adoption passing confidence
@storybook/addon-onboarding (source) 8.0.9 -> 8.1.6 age adoption passing confidence
@storybook/blocks (source) 8.1.3 -> 8.1.6 age adoption passing confidence
@storybook/react (source) 8.1.3 -> 8.1.6 age adoption passing confidence
@storybook/react-webpack5 (source) 8.0.9 -> 8.1.6 age adoption passing confidence
@storybook/test (source) 8.1.3 -> 8.1.6 age adoption passing confidence
@swc/core (source) 1.5.24 -> 1.5.25 age adoption passing confidence
@tanstack/react-query (source) 5.40.0 -> 5.40.1 age adoption passing confidence
@tanstack/react-query-devtools (source) 5.40.0 -> 5.40.1 age adoption passing confidence
@types/node (source) 20.12.7 -> 20.14.2 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
ajv (source) 8.14.0 -> 8.16.0 age adoption passing confidence
cypress (source) 13.10.0 -> 13.11.0 age adoption passing confidence
nodemon (source) 3.1.2 -> 3.1.3 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.1 age adoption passing confidence
reselect 5.1.0 -> 5.1.1 age adoption passing confidence
storybook (source) 8.0.9 -> 8.1.6 age adoption passing confidence
ts-jest (source) 29.1.2 -> 29.1.4 age adoption passing confidence

[!WARNING] Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

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
storybookjs/storybook (@​storybook/addon-essentials) ### [`v8.1.6`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#816) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.5...v8.1.6) - CLI: Only log the UpgradeStorybookToSameVersionError but continue the upgrade as normal - [#​27217](https://togithub.com/storybookjs/storybook/pull/27217), thanks [@​kasperpeulen](https://togithub.com/kasperpeulen)! - Core: Replace ip function with a small helper function to address security concerns - [#​27529](https://togithub.com/storybookjs/storybook/pull/27529), thanks [@​tony19](https://togithub.com/tony19)! - Tags: Fix unsafe project-level tags lookup - [#​27511](https://togithub.com/storybookjs/storybook/pull/27511), thanks [@​shilman](https://togithub.com/shilman)! - Vite: Fix stats-plugin to normalize file names with posix paths - [#​27218](https://togithub.com/storybookjs/storybook/pull/27218), thanks [@​AlexAtVista](https://togithub.com/AlexAtVista)! ### [`v8.1.5`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#815) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.4...v8.1.5) - CSF-Tools: Fix export specifier bug - [#​27418](https://togithub.com/storybookjs/storybook/pull/27418), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Dependency: Upgrade tempy - [#​27366](https://togithub.com/storybookjs/storybook/pull/27366), thanks [@​mnigh](https://togithub.com/mnigh)! - Tags: Refine composition behavior - [#​27379](https://togithub.com/storybookjs/storybook/pull/27379), thanks [@​shilman](https://togithub.com/shilman)! - Theming: Fix self-referencing type - [#​27155](https://togithub.com/storybookjs/storybook/pull/27155), thanks [@​SimenB](https://togithub.com/SimenB)! ### [`v8.1.4`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#814) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.3...v8.1.4) - Angular: Revert style adjustments - [#​27361](https://togithub.com/storybookjs/storybook/pull/27361), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Svelte: Support latest prerelease - [#​27378](https://togithub.com/storybookjs/storybook/pull/27378), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Tags: Fix composition with older storybooks - [#​27358](https://togithub.com/storybookjs/storybook/pull/27358), thanks [@​shilman](https://togithub.com/shilman)! - Vite: Fix HMR issue for Storybook preview files - [#​27256](https://togithub.com/storybookjs/storybook/pull/27256), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! ### [`v8.1.3`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#813) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.2...v8.1.3) - Angular: Support v18 - [#​27237](https://togithub.com/storybookjs/storybook/pull/27237), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Telemetry: Add test packages - [#​27226](https://togithub.com/storybookjs/storybook/pull/27226), thanks [@​shilman](https://togithub.com/shilman)! ### [`v8.1.2`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#812) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.1...v8.1.2) - Angular: Fix filtering of workspace config styles - [#​27108](https://togithub.com/storybookjs/storybook/pull/27108), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Next.js: Avoid interfering with the svgr loader - [#​27198](https://togithub.com/storybookjs/storybook/pull/27198), thanks [@​seanparmelee](https://togithub.com/seanparmelee)! ### [`v8.1.1`](https://togithub.com/storybookjs/storybook/compare/v8.1.0...bb059a9bfb92236fd6a232584fcad800323f97e1) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.0...v8.1.1) ### [`v8.1.0`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#810) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.0.10...v8.1.0) Storybook 8.1 is here with a tone of new features and bug fixes: - 🏷️ Static tag-based filtering - 🦺 Type-safe, standards-based module mocking - 🐣 New `beforeEach` test hook - 🧳 Portable Stories API for Playwright Component Testing - 🐕‍🦺 Support the new signal-based input & output functions in Angular - 2️⃣ Two new ways to create stories: generating them from story controls or from your components directly!
List of all updates - Addon-actions: Fix falsy args printing as object - 22163 - [#​26917](https://togithub.com/storybookjs/storybook/pull/26917), thanks [@​Fatcat560](https://togithub.com/Fatcat560)! - Addon-docs: Fix MDX compilation with `@vitejs/plugin-react-swc` and plugins - [#​26837](https://togithub.com/storybookjs/storybook/pull/26837), thanks [@​JReinhold](https://togithub.com/JReinhold)! - Addon-docs: Fix `providerImportSource` extension - [#​26868](https://togithub.com/storybookjs/storybook/pull/26868), thanks [@​bashmish](https://togithub.com/bashmish)! - Addon-docs: Fix `react-dom/server` imports breaking stories and docs - [#​26557](https://togithub.com/storybookjs/storybook/pull/26557), thanks [@​JReinhold](https://togithub.com/JReinhold)! - Addon-docs: Support Stencil based display names in source snippets - [#​26592](https://togithub.com/storybookjs/storybook/pull/26592), thanks [@​yannbf](https://togithub.com/yannbf)! - Addon-docs: Fix `[Object object]` displayName in some JSX components - [#​26566](https://togithub.com/storybookjs/storybook/pull/26566), thanks [@​yannbf](https://togithub.com/yannbf)! - Angular: Add type support for Angular's input signals - [#​26413](https://togithub.com/storybookjs/storybook/pull/26413), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Angular: Add type support for Angular's output signals - [#​26546](https://togithub.com/storybookjs/storybook/pull/26546), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - API: Add API access to sidebar renderLabel - [#​27099](https://togithub.com/storybookjs/storybook/pull/27099), thanks [@​shilman](https://togithub.com/shilman)! - Args: Add possibility to mark controls as read-only - [#​26577](https://togithub.com/storybookjs/storybook/pull/26577), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Automigrations: Fix name of VTA addon - [#​26816](https://togithub.com/storybookjs/storybook/pull/26816), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Automigrations: Add migration note about new react-docgen default - [#​26620](https://togithub.com/storybookjs/storybook/pull/26620), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Automigrations: Fix missing support for mts vite config - [#​26441](https://togithub.com/storybookjs/storybook/pull/26441), thanks [@​drik98](https://togithub.com/drik98)! - Automigrations: Improve react-docgen automigration prompt - [#​27106](https://togithub.com/storybookjs/storybook/pull/27106), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Blocks: Add `of` prop to `Subtitle` - [#​22552](https://togithub.com/storybookjs/storybook/pull/22552), thanks [@​joaonunomota](https://togithub.com/joaonunomota)! - Blocks: Add `of` prop to `Title` - [#​23728](https://togithub.com/storybookjs/storybook/pull/23728), thanks [@​Sidnioulz](https://togithub.com/Sidnioulz)! - CLI: Add --config-dir flag to add command - [#​26771](https://togithub.com/storybookjs/storybook/pull/26771), thanks [@​eric-blue](https://togithub.com/eric-blue)! - CLI: Add --config-dir flag to migrate command - [#​26721](https://togithub.com/storybookjs/storybook/pull/26721), thanks [@​yannbf](https://togithub.com/yannbf)! - CLI: Add main.js `docs.autodocs` automigration - [#​27089](https://togithub.com/storybookjs/storybook/pull/27089), thanks [@​shilman](https://togithub.com/shilman)! - CLI: Add Visual Tests addon install auto-migration when upgrading to 8.0.x - [#​26766](https://togithub.com/storybookjs/storybook/pull/26766), thanks [@​ndelangen](https://togithub.com/ndelangen)! - CLI: Automigrate improve upgrade storybook related packages - [#​26497](https://togithub.com/storybookjs/storybook/pull/26497), thanks [@​ndelangen](https://togithub.com/ndelangen)! - CLI: Automigrations copy edits - [#​26342](https://togithub.com/storybookjs/storybook/pull/26342), thanks [@​joevaugh4n](https://togithub.com/joevaugh4n)! - CLI: Fix eslint configuration for string `extends` - [#​27097](https://togithub.com/storybookjs/storybook/pull/27097), thanks [@​shilman](https://togithub.com/shilman)! - CLI: Improve Yarn berry error parsing - [#​26616](https://togithub.com/storybookjs/storybook/pull/26616), thanks [@​yannbf](https://togithub.com/yannbf)! - CLI: Improve `vite-config-file.ts` - [#​26375](https://togithub.com/storybookjs/storybook/pull/26375), thanks [@​joevaugh4n](https://togithub.com/joevaugh4n)! - CLI: Instruct the correct auto-migration command - [#​26515](https://togithub.com/storybookjs/storybook/pull/26515), thanks [@​ndelangen](https://togithub.com/ndelangen)! - CLI: Introduce package manager fallback for initializing Storybook in an empty directory with yarn1 - [#​26500](https://togithub.com/storybookjs/storybook/pull/26500), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - CLI: Throw an error when running upgrade command in incorrect cwd - [#​26585](https://togithub.com/storybookjs/storybook/pull/26585), thanks [@​yannbf](https://togithub.com/yannbf)! - Codemods: Escape filename given as argument - [#​26430](https://togithub.com/storybookjs/storybook/pull/26430), thanks [@​YukiKitagata](https://togithub.com/YukiKitagata)! - Controls: Add Channels API to search for files in the project root - [#​26726](https://togithub.com/storybookjs/storybook/pull/26726), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Controls: Added server channel to create a new story - [#​26769](https://togithub.com/storybookjs/storybook/pull/26769), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Controls: Add UI to create new story files - [#​26875](https://togithub.com/storybookjs/storybook/pull/26875), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Controls: Fix crashing when docgen extraction partially fails - [#​26862](https://togithub.com/storybookjs/storybook/pull/26862), thanks [@​yannbf](https://togithub.com/yannbf)! - Controls: Fix disable condition in ArgControl component - [#​26567](https://togithub.com/storybookjs/storybook/pull/26567), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Controls: Fix number controls do not reset - [#​26372](https://togithub.com/storybookjs/storybook/pull/26372), thanks [@​jiyiru](https://togithub.com/jiyiru)! - Core: Add `duration` and `onClick` support to Notification API and improve Notification UI - [#​26696](https://togithub.com/storybookjs/storybook/pull/26696), thanks [@​ghengeveld](https://togithub.com/ghengeveld)! - Core: Drop unneeded `UPDATE_STORY_ARGS` which was for SSv6 - [#​25993](https://togithub.com/storybookjs/storybook/pull/25993), thanks [@​tmeasday](https://togithub.com/tmeasday)! - Core: Ensure that simultaneous onStoriesChanged don't clobber each other - [#​26882](https://togithub.com/storybookjs/storybook/pull/26882), thanks [@​tmeasday](https://togithub.com/tmeasday)! - Core: Fix filters not being applied in WebKit - [#​26949](https://togithub.com/storybookjs/storybook/pull/26949), thanks [@​JReinhold](https://togithub.com/JReinhold)! - Core: Fix preloading too early - [#​26442](https://togithub.com/storybookjs/storybook/pull/26442), thanks [@​ndelangen](https://togithub.com/ndelangen)! - Core: Implement file formatter - [#​26809](https://togithub.com/storybookjs/storybook/pull/26809), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Core: Optimize clearNotification - [#​26415](https://togithub.com/storybookjs/storybook/pull/26415), thanks [@​ndelangen](https://togithub.com/ndelangen)! - Core: Save from controls - [#​26827](https://togithub.com/storybookjs/storybook/pull/26827), thanks [@​ndelangen](https://togithub.com/ndelangen)! - CSF: Allow default export without title or component attributes - [#​26516](https://togithub.com/storybookjs/storybook/pull/26516), thanks [@​kasperpeulen](https://togithub.com/kasperpeulen)! - CSF: Fix typings for control and other properties of argTypes - [#​26824](https://togithub.com/storybookjs/storybook/pull/26824), thanks [@​kasperpeulen](https://togithub.com/kasperpeulen)! - CSF: Make sure loaders/decorators can be used as array - [#​26514](https://togithub.com/storybookjs/storybook/pull/26514), thanks [@​kasperpeulen](https://togithub.com/kasperpeulen)! - Dependencies: Upgrade [@​storybook/csf](https://togithub.com/storybook/csf) to 0.1.5 - [#​26958](https://togithub.com/storybookjs/storybook/pull/26958), thanks [@​Cherry](https://togithub.com/Cherry)! - Dependencies: Upgrade `@joshwooding/vite-plugin-react-docgen-typescript` to `0.3.1` - [#​26673](https://togithub.com/storybookjs/storybook/pull/26673), thanks [@​joshwooding](https://togithub.com/joshwooding)! - Dependencies: Upgrade `ejs` to `3.1.10` - [#​27054](https://togithub.com/storybookjs/storybook/pull/27054), thanks [@​RiuSalvi](https://togithub.com/RiuSalvi)! - Dependencies: Bump es-module-lexer - [#​26737](https://togithub.com/storybookjs/storybook/pull/26737), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Dependencies: Update globby dependency - [#​26733](https://togithub.com/storybookjs/storybook/pull/26733), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Dependencies: Update postcss-loader in Next.js framework - [#​26707](https://togithub.com/storybookjs/storybook/pull/26707), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Doc Tools: Signature Type Error Handling - [#​26774](https://togithub.com/storybookjs/storybook/pull/26774), thanks [@​ethriel3695](https://togithub.com/ethriel3695)! - Indexer: Escape special characters in storyImport regex - [#​22545](https://togithub.com/storybookjs/storybook/pull/22545), thanks [@​VojGin](https://togithub.com/VojGin)! - Maintenance: Fix performance regressions - [#​26411](https://togithub.com/storybookjs/storybook/pull/26411), thanks [@​kasperpeulen](https://togithub.com/kasperpeulen)! - MDX: Do not transform `http://` links - [#​26488](https://togithub.com/storybookjs/storybook/pull/26488), thanks [@​JReinhold](https://togithub.com/JReinhold)! - Next.js: Fix Compatibility with \ ### [`v8.0.10`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#8010) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.0.9...v8.0.10) - MDX: Don't transform `http://` links - [#​26488](https://togithub.com/storybookjs/storybook/pull/26488), thanks [@​JReinhold](https://togithub.com/JReinhold)! - React: Support v19 in `react-dom-shim` - [#​26898](https://togithub.com/storybookjs/storybook/pull/26898), thanks [@​Tobbe](https://togithub.com/Tobbe)! - Vite: Merge assetsInclude property with Storybook default values - [#​26860](https://togithub.com/storybookjs/storybook/pull/26860), thanks [@​yuemori](https://togithub.com/yuemori)!
storybookjs/storybook (@​storybook/addon-onboarding) ### [`v8.1.6`](https://togithub.com/storybookjs/storybook/releases/tag/v8.1.6) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.5...v8.1.6) #### 8.1.6 - CLI: Only log UpgradeStorybookToSameVersionError but continue upgrade as normal - [#​27217](https://togithub.com/storybookjs/storybook/pull/27217), thanks [@​kasperpeulen](https://togithub.com/kasperpeulen)! - Core: Replace ip function with a small helper function to address security concerns - [#​27529](https://togithub.com/storybookjs/storybook/pull/27529), thanks [@​tony19](https://togithub.com/tony19)! - Tags: Fix unsafe project-level tags lookup - [#​27511](https://togithub.com/storybookjs/storybook/pull/27511), thanks [@​shilman](https://togithub.com/shilman)! - Vite: Fix stats-plugin to normalize file names with posix paths - [#​27218](https://togithub.com/storybookjs/storybook/pull/27218), thanks [@​AlexAtVista](https://togithub.com/AlexAtVista)! ### [`v8.1.5`](https://togithub.com/storybookjs/storybook/releases/tag/v8.1.5) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.4...v8.1.5) #### 8.1.5 - CSF-Tools: Fix export specifier bug - [#​27418](https://togithub.com/storybookjs/storybook/pull/27418), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Dependency: Upgrade tempy - [#​27366](https://togithub.com/storybookjs/storybook/pull/27366), thanks [@​mnigh](https://togithub.com/mnigh)! - Tags: Refine composition behavior - [#​27379](https://togithub.com/storybookjs/storybook/pull/27379), thanks [@​shilman](https://togithub.com/shilman)! - Theming: Fix self-referencing type - [#​27155](https://togithub.com/storybookjs/storybook/pull/27155), thanks [@​SimenB](https://togithub.com/SimenB)! ### [`v8.1.4`](https://togithub.com/storybookjs/storybook/releases/tag/v8.1.4) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.3...v8.1.4) #### 8.1.4 - Angular: Revert style adjustments - [#​27361](https://togithub.com/storybookjs/storybook/pull/27361), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Svelte: Support latest prerelease - [#​27378](https://togithub.com/storybookjs/storybook/pull/27378), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Tags: Fix composition with older storybooks - [#​27358](https://togithub.com/storybookjs/storybook/pull/27358), thanks [@​shilman](https://togithub.com/shilman)! - Vite: Fix HMR issue for Storybook preview files - [#​27256](https://togithub.com/storybookjs/storybook/pull/27256), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! ### [`v8.1.3`](https://togithub.com/storybookjs/storybook/releases/tag/v8.1.3) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.2...v8.1.3) #### 8.1.3 - Angular: Support v18 - [#​27237](https://togithub.com/storybookjs/storybook/pull/27237), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Telemetry: Add test packages - [#​27226](https://togithub.com/storybookjs/storybook/pull/27226), thanks [@​shilman](https://togithub.com/shilman)! ### [`v8.1.2`](https://togithub.com/storybookjs/storybook/releases/tag/v8.1.2) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.1...v8.1.2) #### 8.1.2 - Angular: Fix filtering of workspace config styles - [#​27108](https://togithub.com/storybookjs/storybook/pull/27108), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Next.js: Avoid interfering with the svgr loader - [#​27198](https://togithub.com/storybookjs/storybook/pull/27198), thanks [@​seanparmelee](https://togithub.com/seanparmelee)! ### [`v8.1.1`](https://togithub.com/storybookjs/storybook/releases/tag/v8.1.1) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.0...v8.1.1) #### 8.1.1 - Docgen: Only add react-docgen info when a component is defined in the file - [#​26967](https://togithub.com/storybookjs/storybook/pull/26967), thanks [@​glenjamin](https://togithub.com/glenjamin)! - Docs: Fix MDX Stories block tag-filtering behavior - [#​27144](https://togithub.com/storybookjs/storybook/pull/27144), thanks [@​shilman](https://togithub.com/shilman)! - Docs: Fix Subtitle block when no `of` prop passed - [#​27147](https://togithub.com/storybookjs/storybook/pull/27147), thanks [@​JReinhold](https://togithub.com/JReinhold)! - Next.js: Add typing for NextImage to main framework options type - [#​27105](https://togithub.com/storybookjs/storybook/pull/27105), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Next.js: Avoid conflicts with the raw loader - [#​27093](https://togithub.com/storybookjs/storybook/pull/27093), thanks [@​seanparmelee](https://togithub.com/seanparmelee)! - Types: Fix typing for main.framework/builder fields - [#​27088](https://togithub.com/storybookjs/storybook/pull/27088), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! ### [`v8.1.0`](https://togithub.com/storybookjs/storybook/releases/tag/v8.1.0) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.0.10...v8.1.0) #### 8.1.0 Storybook 8.1 is here with a ton of new features and bug fixes: - 🏷️ Static tag-based filtering - 🦺 Type-safe, standards-based module mocking - 🐣 New `beforeEach` test hook - 🧳 Portable Stories API for Playwright Component Testing - 🐕‍🦺 Support the new signal-based input & output functions in Angular - 2️⃣ Two new ways to create stories: generating them from story controls or from your components directly!
List of all updates - Addon-actions: Fix falsy args printing as object - 22163 - [#​26917](https://togithub.com/storybookjs/storybook/pull/26917), thanks [@​Fatcat560](https://togithub.com/Fatcat560)! - Addon-docs: Fix MDX compilation with `@vitejs/plugin-react-swc` and plugins - [#​26837](https://togithub.com/storybookjs/storybook/pull/26837), thanks [@​JReinhold](https://togithub.com/JReinhold)! - Addon-docs: Fix `providerImportSource` extension - [#​26868](https://togithub.com/storybookjs/storybook/pull/26868), thanks [@​bashmish](https://togithub.com/bashmish)! - Addon-docs: Fix `react-dom/server` imports breaking stories and docs - [#​26557](https://togithub.com/storybookjs/storybook/pull/26557), thanks [@​JReinhold](https://togithub.com/JReinhold)! - Addon-docs: Support Stencil based display names in source snippets - [#​26592](https://togithub.com/storybookjs/storybook/pull/26592), thanks [@​yannbf](https://togithub.com/yannbf)! - Addon-docs: Fix `[Object object]` displayName in some JSX components - [#​26566](https://togithub.com/storybookjs/storybook/pull/26566), thanks [@​yannbf](https://togithub.com/yannbf)! - Angular: Add type support for Angular's input signals - [#​26413](https://togithub.com/storybookjs/storybook/pull/26413), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Angular: Add type support for Angular's output signals - [#​26546](https://togithub.com/storybookjs/storybook/pull/26546), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - API: Add API access to sidebar renderLabel - [#​27099](https://togithub.com/storybookjs/storybook/pull/27099), thanks [@​shilman](https://togithub.com/shilman)! - Args: Add possibility to mark controls as read-only - [#​26577](https://togithub.com/storybookjs/storybook/pull/26577), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Automigrations: Fix name of VTA addon - [#​26816](https://togithub.com/storybookjs/storybook/pull/26816), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Automigrations: Add migration note about new react-docgen default - [#​26620](https://togithub.com/storybookjs/storybook/pull/26620), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Automigrations: Fix missing support for mts vite config - [#​26441](https://togithub.com/storybookjs/storybook/pull/26441), thanks [@​drik98](https://togithub.com/drik98)! - Automigrations: Improve react-docgen automigration prompt - [#​27106](https://togithub.com/storybookjs/storybook/pull/27106), thanks [@​valentinpalkovic](https://togithub.com/valentinpalkovic)! - Blocks: Add `of` prop to `Subtitle` - [#​22552](https://togithub.com/storybookjs/storybook/pull/22552), thanks [@​joaonunomota](https://togithub.com/joaonunomota)! - Blocks: Add `of` prop to `Title` - [#​23728](https://togithub.com/storybookjs/storybook/pull/23728), thanks [@​Sidnioulz](https://togithub.com/Sidnioulz)! - CLI: Add --config-dir flag to add command - [#​26771](https://togithub.com/storybookjs/storybook/pull/26771), thanks [@​eric-blue](https://togithub.com/eric-blue)! - CLI: Add --config-dir flag to migrate command - [#​26721](https://togithub.com/storybookjs/st
--- ### Configuration 📅 **Schedule**: Branch creation - "before 07:00 on Monday" 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](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Altinn/altinn-studio).
codecov[bot] commented 3 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 91.11%. Comparing base (0367ba2) to head (0c91935).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #12937 +/- ## ======================================= Coverage 91.11% 91.11% ======================================= Files 1394 1394 Lines 19758 19758 Branches 2395 2395 ======================================= Hits 18003 18003 Misses 1493 1493 Partials 262 262 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.