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.5 age adoption passing confidence
@playwright/test (source) 1.43.1 -> 1.44.1 age adoption passing confidence
@tanstack/react-query (source) 5.32.1 -> 5.40.1 age adoption passing confidence
@types/node (source) 20.12.8 -> 20.14.1 age adoption passing confidence
@types/react (source) 18.3.1 -> 18.3.3 age adoption passing confidence
@vitejs/plugin-react (source) 4.2.1 -> 4.3.0 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.0 age adoption passing confidence
vite (source) 5.2.11 -> 5.2.12 age adoption passing confidence
zod (source) 3.23.6 -> 3.23.8 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.27.5

Compare Source

Patch Changes

v2.27.4

Compare Source

Patch Changes

v2.27.3

Compare Source

Patch Changes
  • #​1357 18c966a Thanks @​Andarist! - Fixed an issue with changeset status executed without since argument. It should now correctly use the configured base branch as the default value.

v2.27.2

Compare Source

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

v1.44.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30779 - [REGRESSION]: When using video: 'on' with VSCode extension the browser got closed
https://github.com/microsoft/playwright/issues/30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't workhttps://github.com/microsoft/playwright/issues/307700 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't worhttps://github.com/microsoft/playwright/issues/3085858 - [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

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.40.1

Version 5.40.1 - 6/4/2024, 8:18 AM

Changes
Refactor
  • *: improved type inference for useQueries with skipToken (#​7484) (6f08200) by 김관식
Chore
Ci
Docs
Other
  • Revert "chore: add CODECOV_TOKEN" (ee02838) by Dominik Dorfmeister
Test
Packages

v5.40.0

Compare Source

v5.39.0

Compare Source

Version 5.39.0 - 5/25/2024, 6:33 PM

Changes
Feat
  • react-query: support React 19 (41ec572) by Dominik Dorfmeister
Packages

v5.38.0

Compare Source

Version 5.38.0 - 5/25/2024, 12:34 PM

Changes
Feat
Docs
Packages

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.

prettier/prettier (prettier)

v3.3.0

Compare Source

diff

🔗 Release Notes

vitejs/vite (vite)

v5.2.12

Compare Source

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 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 7 times, most recently from 9731ea2 to 6633dfa Compare May 23, 2024 22:57
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 7 times, most recently from b65b45b to 80d8ebb Compare June 1, 2024 09:58
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 3 times, most recently from ac25305 to 0ed6675 Compare June 3, 2024 05:24
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 0ed6675 to 97eb19d Compare June 3, 2024 05:29
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