alixlahuec / zotero-roam

Connector extension between Roam Research & Zotero
https://alix-lahuec.gitbook.io/zotero-roam/
Apache License 2.0
62 stars 6 forks source link

chore(deps): update dependency msw-storybook-addon to v2 #635

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
msw-storybook-addon (source) ^1.10.0 -> ^2.0.2 age adoption passing confidence

Release Notes

mswjs/msw-storybook-addon (msw-storybook-addon) ### [`v2.0.2`](https://togithub.com/mswjs/msw-storybook-addon/blob/HEAD/packages/msw-addon/CHANGELOG.md#v202-Sun-May-05-2024) [Compare Source](https://togithub.com/mswjs/msw-storybook-addon/compare/v2.0.1...v2.0.2) ##### 🐛 Bug Fix - Fix `MswParameters` handlers type [#​146](https://togithub.com/mswjs/msw-storybook-addon/pull/146) ([@​jarojasm95](https://togithub.com/jarojasm95)) ##### Authors: 1 - Jose Rojas ([@​jarojasm95](https://togithub.com/jarojasm95)) *** ### [`v2.0.1`](https://togithub.com/mswjs/msw-storybook-addon/blob/HEAD/packages/msw-addon/CHANGELOG.md#v201-Fri-May-03-2024) [Compare Source](https://togithub.com/mswjs/msw-storybook-addon/compare/v2.0.0...v2.0.1) ##### 🐛 Bug Fix - Fix: Use CJS for node entrypoint [#​152](https://togithub.com/mswjs/msw-storybook-addon/pull/152) ([@​yannbf](https://togithub.com/yannbf)) - Maintenance: Migrate monorepo to Yarn 4 [#​151](https://togithub.com/mswjs/msw-storybook-addon/pull/151) ([@​yannbf](https://togithub.com/yannbf)) - Add package.json to exports map [#​150](https://togithub.com/mswjs/msw-storybook-addon/pull/150) ([@​yannbf](https://togithub.com/yannbf)) - update install instructions [#​144](https://togithub.com/mswjs/msw-storybook-addon/pull/144) ([@​yannbf](https://togithub.com/yannbf)) ##### Authors: 1 - Yann Braga ([@​yannbf](https://togithub.com/yannbf)) *** ### [`v2.0.0`](https://togithub.com/mswjs/msw-storybook-addon/releases/tag/v2.0.0) [Compare Source](https://togithub.com/mswjs/msw-storybook-addon/compare/v1.10.0...v2.0.0) ##### Release Notes ##### BREAKING CHANGE: Support MSW 2.0 ([#​122](https://togithub.com/mswjs/msw-storybook-addon/pull/122)) ##### MSW required version is now ^2.0.0 The addon now requires your MSW version to be 2.0.0 or higher. This means you will have to change the format of your handlers as well. More info on how to migrate to MSW 2.0.0: https://mswjs.io/docs/migrations/1.x-to-2.x/ ##### mswDecorator is deprecated in favor of mswLoader Using MSW in a decorator worked for most scenarios, but there's a slight chance the service worker will not get registered in time. As a result, a story that requests data might actually request real data. **Since v1.7.0**, this addon provided a `mswLoader` to use instead of the `mswDecorator`. Loaders get executed before a story renders, differently than decorators, which execute as the story renders. Please replace your `mswDecorator` with `mswLoader`, as the `mswDecorator` will be removed in the next major release. It works the same, respecting the parameters you set, so there's no need to change anything else in your codebase. ```diff // .storybook/preview.js -import { initialize, mswDecorator } from 'msw-storybook-addon' +import { initialize, mswLoader } from 'msw-storybook-addon' initialize() const preview = { - decorators: [mswDecorator] + loaders: [mswLoader] } export default preview ``` ##### parameters.msw Array notation deprecated in favor of Object notation **Since v1.5.0**, this addon started supporting the `parameters.msw.handlers` object format instead of using `parameters.msw` as an Array. This change was done to follow convention for Storybook addon parameters, but also allows for more advanced usage and make the addon more future proof for upcoming features. You can find [more information here](./README.md#composing-request-handlers). Please migrate to this format, and the previous format will be removed in the next major release. ```ts // ❌ Instead of defining the msw parameter like so: export const MyStory = { parameters: { msw: [...] // some handlers here } } // ✅ You should set them like so: export const MyStory = { parameters: { msw: { handlers: [...] // some handlers here } } } // ✅ Or like so: export const MyStory = { parameters: { msw: { handlers: { someHandlerName: [...] // some handlers here } } } } ``` *** ##### 💥 Breaking Change - BREAKING CHANGE: Support MSW 2.0 [#​122](https://togithub.com/mswjs/msw-storybook-addon/pull/122) ([@​yannbf](https://togithub.com/yannbf) [@​mattcosta7](https://togithub.com/mattcosta7) [@​kettanaito](https://togithub.com/kettanaito) [@​ChristianMurphy](https://togithub.com/ChristianMurphy) [@​AlexMunoz](https://togithub.com/AlexMunoz)) ##### 🐛 Bug Fix - Docs: Minor updates to links and navigation issue [#​126](https://togithub.com/mswjs/msw-storybook-addon/pull/126) ([@​jonniebigodes](https://togithub.com/jonniebigodes)) ##### ⚠️ Pushed to `main` - update readme ([@​yannbf](https://togithub.com/yannbf)) ##### Authors: 6 - [@​jonniebigodes](https://togithub.com/jonniebigodes) - Alex Muñoz ([@​AlexMunoz](https://togithub.com/AlexMunoz)) - Artem Zakharchenko ([@​kettanaito](https://togithub.com/kettanaito)) - Christian Murphy ([@​ChristianMurphy](https://togithub.com/ChristianMurphy)) - Matthew Costabile ([@​mattcosta7](https://togithub.com/mattcosta7)) - Yann Braga ([@​yannbf](https://togithub.com/yannbf))

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/Toronto, 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



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

renovate[bot] commented 3 months ago

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

The artifact failure details are included below:

File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: @alixlahuec/zotero-roam@0.7.21
npm ERR! Found: msw@1.3.3
npm ERR! node_modules/msw
npm ERR!   dev msw@"^1.3.3" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer msw@"^2.0.0" from msw-storybook-addon@2.0.2
npm ERR! node_modules/msw-storybook-addon
npm ERR!   dev msw-storybook-addon@"^2.0.2" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-05-19T19_00_54_481Z-debug-0.log
codecov[bot] commented 3 months ago

Codecov Report

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

Project coverage is 83.71%. Comparing base (278443d) to head (278443d).

:exclamation: Current head 278443d differs from pull request most recent head 947bf00

Please upload reports for the commit 947bf00 to get more accurate results.

Additional details and impacted files [![Impacted file tree graph](https://app.codecov.io/gh/alixlahuec/zotero-roam/pull/635/graphs/tree.svg?width=650&height=150&src=pr&token=32DK4326KK&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Alix+Lahuec)](https://app.codecov.io/gh/alixlahuec/zotero-roam/pull/635?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Alix+Lahuec) ```diff @@ Coverage Diff @@ ## beta #635 +/- ## ======================================= Coverage 83.71% 83.71% ======================================= Files 158 158 Lines 4915 4915 Branches 1409 1409 ======================================= Hits 4114 4114 Misses 776 776 Partials 25 25 ```
renovate[bot] commented 3 months ago

Edited/Blocked Notification

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

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

⚠️ Warning: custom changes will be lost.