Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dev dependencies #172

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Update dev dependencies #172

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 14, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/cli (source) 2.27.1 -> 2.27.3 age adoption passing confidence
@playwright/test (source) 1.43.1 -> 1.44.0 age adoption passing confidence
@tanstack/react-query (source) 5.32.1 -> 5.37.1 age adoption passing confidence
@types/node (source) 20.12.8 -> 20.12.12 age adoption passing confidence
@types/react (source) 18.3.1 -> 18.3.2 age adoption passing confidence
@vitejs/plugin-react (source) 4.2.1 -> 4.3.0 age adoption passing confidence
unocss ^0.59.4 -> ^0.60.0 age adoption passing confidence
vitepress (source) 1.1.4 -> 1.2.2 age adoption passing confidence
vue (source) 3.4.26 -> 3.4.27 age adoption passing confidence
zod (source) 3.23.6 -> 3.23.8 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.27.3

Compare Source

v2.27.2

Compare Source

Patch Changes
microsoft/playwright (@​playwright/test)

v1.44.0

Compare Source

New APIs

Accessibility assertions

  • expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleName('Submit');
  • expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleDescription('Upload a photo');
  • expect(locator).toHaveRole() checks if the element has the specified ARIA role:

    const locator = page.getByTestId('save-button');
    await expect(locator).toHaveRole('button');

Locator handler

  • After executing the handler added with page.addLocatorHandler(), 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() to specify maximum number of times the handler should be run.
  • The handler in page.addLocatorHandler() now accepts the locator as argument.
  • New page.removeLocatorHandler() method for removing previously added locator handlers.
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 option in apiRequestContext.fetch() now accepts FormData and supports repeating fields with the same name.

    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 or per project in testProject.expect.

  • expect(page).toHaveURL(url) now supports ignoreCase option.

  • testProject.ignoreSnapshots allows to configure per project whether to skip screenshot expectations.

Reporter API

  • New method suite.entries() returns child test suites and test cases in their declaration order. suite.type and testCase.type can be used to tell apart test cases and suites in the list.
  • Blob 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 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:

    $ 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:

    $ 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
TanStack/query (@​tanstack/react-query)

v5.37.1

Compare Source

Version 5.37.1 - 5/18/2024, 8:42 AM

Changes

Fix
Chore

Packages

v5.36.2

Compare Source

v5.36.1

Compare Source

Version 5.36.1 - 5/15/2024, 2:22 PM

Changes

Fix
  • types: make TVariables default to unknown on Mutation (#​7433) (c2861c4) by Dominik Dorfmeister
Docs
  • not using useState in creating queryClient when use ReactQueryStreamedHydration in suspense-example (#​7431) (3a9e046) by polee
Other
  • Update overview.md (10c7527) by Tanner Linsley

Packages

v5.36.0

Compare Source

v5.35.5

Compare Source

v5.35.4

Compare Source

Version 5.35.4 - 5/10/2024, 2:10 PM

Changes

Fix
  • deprecate direction passed to QueryFunctionContext (#​7410) (fbe3b44) by Dominik Dorfmeister
Docs

Packages

v5.35.1

Compare Source

Version 5.35.1 - 5/6/2024, 6:38 AM

Changes

Fix
Docs

Packages

v5.34.2

Compare Source

v5.34.1

Compare Source

Version 5.34.1 - 5/4/2024, 8:30 AM

Changes

Fix
Docs

Packages

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.0

Compare Source

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 to work, you should update your config to something like:

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.

unocss/unocss (unocss)

v0.60.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
  • preset-mini: Improve performance of resolveBreakpoints  -  by @​antfu (05d90)
    View changes on GitHub

v0.60.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.60.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.60.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/vitepress (vitepress)

v1.2.2

Compare Source

Bug Fixes
  • dont escape ampersand twice in title (7ea3572)

v1.2.1

Compare Source

Bug Fixes
  • a11y: make code blocks accessible with keyboard (#​3902) (cb308b9)
  • escape title properly in build (49b1233)
  • theme: remove unnecessary navigation role on nav element (af4717d)

v1.2.0

Compare Source

Bug Fixes
  • build: show file info on error (f0debd2)
  • dev: match dev and prod routing behavior (#​3837) (b360ac8)
  • markdown: entities and escapes not working properly (#​3882) (d5dbd70)
  • render 404 page completely on client to infer locale from browser path (#​3858) (728cb15)
  • style: prefer YaHei over DengXian (f0a37b4)
  • theme/regression: custom font not applying in Chinese docs because of specificity (fa2f38a), closes #​3864
  • theme: external link icon not visible for target _blank links (d08eeed), closes #​3327
  • theme: fix invalid vp-offset in ssr (9794877)
Features

1.1.4 (2024-04-27)

Bug Fixes
  • dev: multiple server instances being created when editing config too quickly (#​3835) (729a890)
  • theme/a11y: add unique name to footer prev / next navigation landmark (e60c101)
  • theme/a11y: remove duplicate assistive text from outline nav (#​3803) (733d986)
  • theme/i18n: 404 page not showing localized text (#​3833) (cc11b8e)
  • theme: disable keypress effect on search button (ccc37bb)
  • theme: don't use Chinese quotes on non-Chinese documents (#​3834) (75115f4)
  • theme: leaking event listener when going back/forward on Safari on iOS (#​3658) (#​3671) (1a72181)

1.1.3 (2024-04-18)

Bug Fixes
  • build/regression: markdown backslash escapes not working (d02d1e9), closes #​3808

1.1.1 (2024-04-18)

Bug Fixes
vuejs/core (vue)

v3.4.27

Compare Source

Bug Fixes
colinhacks/zod (zod)

v3.23.8

Compare Source

Commits:

v3.23.7

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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.

@netlify
Copy link

netlify bot commented Aug 14, 2023

Deploy Preview for electron-trpc ready!

Name Link
🔨 Latest commit 30c0d1c
🔍 Latest deploy log https://app.netlify.com/sites/electron-trpc/deploys/65dd0567303e9d0009d273f8
😎 Deploy Preview https://deploy-preview-172--electron-trpc.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@codecov-commenter
Copy link

codecov-commenter commented Aug 14, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 56.69%. Comparing base (784bbb0) to head (9510e98).

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #172   +/-   ##
=======================================
  Coverage   56.69%   56.69%           
=======================================
  Files          11       11           
  Lines         448      448           
  Branches       51       51           
=======================================
  Hits          254      254           
  Misses        194      194           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/dev-dependencies branch 6 times, most recently from 4ff79b5 to 632f7ae Compare August 19, 2023 12:30
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 12 times, most recently from 9779f2a to 3765774 Compare August 28, 2023 17:36
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 6 times, most recently from 88c0744 to 9de448c Compare September 7, 2023 09:53
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from e225e24 to fab2640 Compare September 10, 2023 13:26
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 5 times, most recently from cfe44c9 to e147fc8 Compare May 3, 2024 21:07
@renovate renovate bot changed the title Update dev dependencies Update dev dependencies - autoclosed May 3, 2024
@renovate renovate bot closed this May 3, 2024
@renovate renovate bot deleted the renovate/dev-dependencies branch May 3, 2024 21:29
@renovate renovate bot restored the renovate/dev-dependencies branch May 4, 2024 10:28
@renovate renovate bot changed the title Update dev dependencies - autoclosed Update dev dependencies May 4, 2024
@renovate renovate bot reopened this May 4, 2024
@renovate renovate bot changed the title Update dev dependencies Update dependency @tanstack/react-query to v5.34.1 May 4, 2024
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from e147fc8 to 47e58e2 Compare May 4, 2024 12:54
@renovate renovate bot changed the title Update dependency @tanstack/react-query to v5.34.1 Update dependency @tanstack/react-query to v5.34.2 May 5, 2024
@renovate renovate bot changed the title Update dependency @tanstack/react-query to v5.34.2 Update dependency @tanstack/react-query to v5.35.1 May 6, 2024
@renovate renovate bot changed the title Update dependency @tanstack/react-query to v5.35.1 Update dev dependencies May 6, 2024
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 8 times, most recently from b447fbb to f7b0c62 Compare May 15, 2024 20:38
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from 961ef9b to 2670d7c Compare May 21, 2024 04:08
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 2670d7c to 2c71d79 Compare May 22, 2024 22:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant