Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

chore(deps): update devdependencies (non-major) #118

Merged
merged 4 commits into from
Feb 25, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@emotion/react (source) 11.10.5 -> 11.10.6 age adoption passing confidence
@emotion/styled (source) 11.10.5 -> 11.10.6 age adoption passing confidence
@mui/material (source) 5.11.7 -> 5.11.10 age adoption passing confidence
@playwright/experimental-ct-react (source) 1.30.0 -> 1.31.1 age adoption passing confidence
@playwright/test (source) 1.30.0 -> 1.31.1 age adoption passing confidence
@storybook/addon-essentials (source) 7.0.0-beta.43 -> 7.0.0-beta.54 age adoption passing confidence
@storybook/addon-links (source) 7.0.0-beta.43 -> 7.0.0-beta.54 age adoption passing confidence
@storybook/builder-vite 7.0.0-beta.43 -> 7.0.0-beta.54 age adoption passing confidence
@storybook/manager-api (source) 7.0.0-beta.43 -> 7.0.0-beta.54 age adoption passing confidence
@storybook/react-vite (source) 7.0.0-beta.43 -> 7.0.0-beta.54 age adoption passing confidence
@storybook/theming (source) 7.0.0-beta.43 -> 7.0.0-beta.54 age adoption passing confidence
@types/react (source) 18.0.27 -> 18.0.28 age adoption passing confidence
@types/react-dom (source) 18.0.10 -> 18.0.11 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.50.0 -> 5.53.0 age adoption passing confidence
@typescript-eslint/parser 5.50.0 -> 5.53.0 age adoption passing confidence
eslint (source) 8.33.0 -> 8.34.0 age adoption passing confidence
eslint-plugin-storybook 0.6.10 -> 0.6.11 age adoption passing confidence
happy-dom 8.2.6 -> 8.9.0 age adoption passing confidence
prettier (source) 2.8.3 -> 2.8.4 age adoption passing confidence
storybook (source) 7.0.0-beta.43 -> 7.0.0-beta.54 age adoption passing confidence
vitest 0.28.4 -> 0.29.1 age adoption passing confidence

Release Notes

emotion-js/emotion

v11.10.6

Compare Source

Patch Changes
mui/material-ui

v5.11.10

Compare Source

Feb 20, 2023

A big thanks to the 11 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.11.10
@mui/joy@5.0.0-alpha.68
Docs
Core

All contributors of this release in alphabetical order: @​Aleff13, @​dani-mp, @​danilo-leal, @​hbjORbj, @​mj12albert, @​oliviertassinari, @​PunitSoniME, @​sai6855, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

v5.11.9

Compare Source

Feb 14, 2023

A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.11.9
@mui/styled-engine@5.11.9
@mui/joy@5.0.0-alpha.67
@mui/base@5.0.0-alpha.118
@mui/material-next@6.0.0-alpha.75
Docs
Examples
Core

All contributors of this release in alphabetical order: @​danilo-leal, @​donaldnevermore, @​flaviendelangle, @​hbjORbj, @​LadyBluenotes, @​LukasTy, @​m4theushw, @​michaldudak, @​mj12albert, @​mnajdova, @​oliv37, @​oliviertassinari, @​petyosi, @​rangoo94, @​sai6855, @​Shorifpatwary, @​siriwatknp

v5.11.8

Compare Source

Feb 7, 2023

A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.11.8
@mui/joy@5.0.0-alpha.66
@mui/system@5.11.8
@mui/styled-engine@5.11.8
Docs
Core

All contributors of this release in alphabetical order: @​alexownejazayeri, @​ArthurPedroti, @​badalsaibo, @​chuanyu0201, @​joserodolfofreitas, @​m4theushw, @​michaldudak, @​mj12albert, @​mnajdova, @​oliviertassinari, @​sai6855, @​siriwatknp, @​yoskeoka, @​ZeeshanTamboli

Microsoft/playwright

v1.31.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/21093 - [Regression v1.31] Headless Windows shows cascading cmd windowshttps://github.com/microsoft/playwright/pull/211066 - fix(loader): experimentalLoader with node@18

Browser Versions
  • Chromium 111.0.5563.19
  • Mozilla Firefox 109.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 110
  • Microsoft Edge 110

v1.31.0

Compare Source

New APIs
  • New property TestProject.dependencies to configure dependencies between projects.

    Using dependencies allows global setup to produce traces and other artifacts,
    see the setup steps in the test report and more.

    // playwright.config.ts
    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      projects: [
        {
          name: 'setup',
          testMatch: /global.setup\.ts/,
        },
        {
          name: 'chromium',
          use: devices['Desktop Chrome'],
          dependencies: ['setup'],
        },
        {
          name: 'firefox',
          use: devices['Desktop Firefox'],
          dependencies: ['setup'],
        },
        {
          name: 'webkit',
          use: devices['Desktop Safari'],
          dependencies: ['setup'],
        },
      ],
    });
  • New assertion expect(locator).toBeInViewport() ensures that locator points to an element that intersects viewport, according to the intersection observer API.

    const button = page.getByRole('button');
    
    // Make sure at least some part of element intersects viewport.
    await expect(button).toBeInViewport();
    
    // Make sure element is fully outside of viewport.
    await expect(button).not.toBeInViewport();
    
    // Make sure that at least half of the element intersects viewport.
    await expect(button).toBeInViewport({ ratio: 0.5 });
Miscellaneous
  • DOM snapshots in trace viewer can be now opened in a separate window.
  • New method defineConfig to be used in playwright.config.
  • New option maxRedirects for method Route.fetch.
  • Playwright now supports Debian 11 arm64.
  • Official docker images now include Node 18 instead of Node 16.
⚠️ Breaking change in component tests

Note: component tests only, does not affect end-to-end tests.

playwright-ct.config configuration file for component testing now requires calling defineConfig.

// Before

import { type PlaywrightTestConfig, devices } from '@​playwright/experimental-ct-react';
const config: PlaywrightTestConfig = {
  // ... config goes here ...
};
export default config;

Replace config variable definition with defineConfig call:

// After

import { defineConfig, devices } from '@​playwright/experimental-ct-react';
export default defineConfig({
  // ... config goes here ...
});
Browser Versions
  • Chromium 111.0.5563.19
  • Mozilla Firefox 109.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 110
  • Microsoft Edge 110
storybookjs/storybook

v7.0.0-beta.54

Compare Source

Features
  • Core: Add preview.js default export support #​21227
  • TypeScript: Add preview type and update CLI template #​21205
  • Autodocs: Hide Stories block when only primary story exists #​21178
  • CLI: Add automigration for GFM in MDX #​21186
Bug Fixes
  • Docs: Remove react-dom@18 warning in docs #​21197
  • mdx-to-csf codemod: Fix wrong export referenced in generated mdx #​21226
  • Preact: Enable ts plugin by default #​21225
  • pnpm: Fix run command for pnpm API #​21165
  • Angular: Properly destroy component when switching to another Story #​21219
  • CLI: Fix SvelteKit automigration package name #​21210
  • Angular: Initialize .storybook without references to root in sub projects #​21202
Maintenance
  • CLI: Only run useful automigrations on init #​21203
Build

v7.0.0-beta.53

Compare Source

Features
  • Codemod: Convert .stories.mdx to MDX and CSF #​21073
Bug Fixes
  • Csf Tools: Fix overriding scalar named export values #​21190
  • Csf Tools: Support satisfies and as TS operator with module.exports #​21188
  • Core: try harder to resolve .mjs files for the browser entries #​21161
  • CLI: Fix jscodeshift error: env: node\r: No such file or directory #​21180
  • Angular: Fix NG0800 error #​21181
  • Addon-docs: Fix style bleeding #​21150
  • CLI: Improve how automigrations read main.js #​21168
Build
  • Build: Add check step to ci:daily workflow #​21169

v7.0.0-beta.52

Compare Source

Features
  • Core: Coalesce multiple indexing errors into one #​21114
  • Core: Don't crash when there are errors indexing #​21112
Bug Fixes
  • CLI: Fix CRA init, ensure the new version of the preset #​21166
  • Angular: Fix 'isStandalone' function not available error #​21167
  • Angular: Fix constructor dependencies #​21059
  • NextJS: Add missing dependencies to fix pnpm #​21162

v7.0.0-beta.51

Compare Source

Features
  • CLI: Improve monorepo support in automigrate and revamp framework-related migrations #​20647
Bug Fixes
  • UI: Correctly detect Safari in browser supports CSS Zoom #​21163
  • Web-components: Fix StorybookConfig of webcomponents-webpack5 #​21144
  • Storysource: Fallback to the docs.source.originalSource parameter #​21159
  • UI: Fix skip to canvas link style #​21021
  • Vue2: Fix events to use bracket notation #​20754
Maintenance
  • Maintenance: Fix type errors on automigrate check step #​21164
  • Core: Rename framework parameter to renderer #​21108
  • Docs: Remove DocsOptions.disable #​21098

v7.0.0-beta.50

Compare Source

Bug Fixes
  • Revert upgrade to react-docgen-typescript-plugin #​21147
  • Revert Vite fix storysource addon support #​21146
  • UI: Fix Canvas zoom height #​21138
  • Addon-interaction: Fix tooltips don't disappear correctly #​21105
  • UI: Fix CSS zoom in Safari #​21069
Maintenance
  • Storysource: Rename "Story" tab to "Code" #​21132
  • TypeScript: Fix @ts-expect-error strict types #​20981
  • UI: Update border color to match Design System proposal #​20660
  • CLI: Don't render issue template reproduction section with shell #​21128
Dependency Upgrades

v7.0.0-beta.49

Compare Source

Bug Fixes
  • NextJS: Fix static dirs lookup #​21119
  • Svelte/Vue: Use Vite by default #​21002
  • Storyshots: Fix issue with default export in main.js #​21097
  • Args: Fix boolean arg types parsing and encoding #​21102
Maintenance
  • CRA: Add CRA preset to monorepo #​21107
  • Web-components: Drop lit1 support #​21106
  • NextJS: Fix some dependency warnings #​21117
  • Types: Remove unnecessary dependencies #​20993
Build

v7.0.0-beta.48

Compare Source

Features
  • Interactions: Add debugger to the addon panel #​21088
Bug Fixes
  • CLI: Fix pnp support & add auto-detection #​21046
  • Vite: Fix storysource addon support #​21096
  • NextJS: Fix dynamic source snippets #​21029
  • Addon-docs: Fix source snippets for duplicate source blocks #​20915
Maintenance
  • TypeScript: Fix some unsound type check errors #​21081
Build
Dependency Upgrades
  • Remove unused dependencies from core-common #​20994
  • Upgrade react-docgen-typescript-plugin #​21095

v7.0.0-beta.47

Compare Source

Features
  • Vite: Support legacyMdx1 fallback flag #​20823
  • CLI: Automigration to update mdx stories config #​21035
Bug Fixes
  • Vue3: Fix CSF2 support with decorators #​20995
  • CLI: Do not use modern TS assets in legacy TS projects #​20458
  • CLI: Fix conflicts in static dirs #​21064
Maintenance
  • CLI: Update init script for react-native v6.5 #​20719
  • CLI: Re-enable vue-vite in new-frameworks automigration #​20970

v7.0.0-beta.46

Compare Source

Features
  • CLI: Add Solid integration #​20991
  • Viewport: Add defaultOrientation parameter #​21048
Bug Fixes
  • CLI: Account for pnp when creating main.js in storybook init #​21049
  • Core: Detect mdx2 errors and provide guidance to fix them #​20917
  • Angular: provideHttpClient when HttpClientModule is present in the imports array #​21028
Build
  • Build: Allow stories folder to be served by vite sandboxes #​21022

v7.0.0-beta.45

Compare Source

Features
Bug Fixes
Maintenance

v7.0.0-beta.44

Compare Source

Features
  • Feature: Add woff2 support for builder-manager #​20962
  • Feature: Add super early node version check #​20964
  • Csf-tools: Add satisfies support to ConfigFile #​20936
Bug Fixes
  • Angular: Fix changeDetectorRef should be defined #​20984
  • Angular: Fix standalone components to be included in the imports array #​20983
  • CLI: Fix Introduction MDX for Next.js and Typescript #​20798
  • CLI: Fix detection of JS projects with type checking #​20944
  • UI: Fix fonts missing/warnings #​20957
  • Core: Undo AST main.js check in validateConfigFile #​20952
  • Csf-tools: Fix error handling for storySort variable references #​20930
Maintenance
  • Core: Fix missing dependency for core-server #​20989
  • CLI: Add a default background to newly initialized storybooks #​20982
  • Svelte/Vite: Remove svelte-options #​20942
  • Vite: Correctly preserve existing vite envPrefix config #​20918
Dependencies
Build
storybookjs/builder-vite

v7.0.0-beta.54

Compare Source

v7.0.0-beta.53

[Compare Source](https://togithub.com/storybookjs/builder-vite/compare/1f559ed69a4fdd8


Configuration

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

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@vercel
Copy link

vercel bot commented Feb 6, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Ignored Deployment
Name Status Preview Comments Updated
react-fluent-edit ⬜️ Ignored (Inspect) Feb 25, 2023 at 2:02PM (UTC)

@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 8b7acf8 to 94f593f Compare February 7, 2023 12:06
@renovate renovate bot changed the title chore(deps): update devdependencies (non-major) to v5.51.0 chore(deps): update devdependencies (non-major) Feb 7, 2023
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 9 times, most recently from 67811a3 to adab5d1 Compare February 14, 2023 18:53
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 15 times, most recently from fb65fdf to e87ff38 Compare February 21, 2023 19:38
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from 317b176 to 67f9fac Compare February 24, 2023 16:43
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch 4 times, most recently from ca76ee8 to 3adec2d Compare February 25, 2023 13:50
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 3adec2d to afca01d Compare February 25, 2023 13:54
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from afca01d to 496ba6a Compare February 25, 2023 13:57
@renovate
Copy link
Contributor Author

renovate bot commented Feb 25, 2023

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.

@sodenn sodenn merged commit 970358a into main Feb 25, 2023
@sodenn sodenn deleted the renovate/devdependencies-(non-major) branch February 25, 2023 14:06
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant