electron-trpc
electron-trpc copied to clipboard
Update dev dependencies
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| @changesets/cli (source) | 2.27.1 -> 2.27.8 |
||||
| @playwright/test (source) | 1.43.1 -> 1.47.1 |
||||
| @tanstack/react-query (source) | 5.32.1 -> 5.56.2 |
||||
| @types/node (source) | 20.12.8 -> 20.16.5 |
||||
| @types/react (source) | 18.3.1 -> 18.3.7 |
||||
| @vitejs/plugin-react (source) | 4.2.1 -> 4.3.1 |
||||
| prettier (source) | 3.2.5 -> 3.3.3 |
||||
| typescript (source) | 5.4.5 -> 5.6.2 |
||||
| vite (source) | 5.2.11 -> 5.4.6 |
||||
| vite-plugin-electron | 0.28.7 -> 0.28.8 |
||||
| wrangler (source) | 3.58.0 -> 3.78.5 |
||||
| zod (source) | 3.23.6 -> 3.23.8 |
Release Notes
changesets/changesets (@changesets/cli)
v2.27.8
v2.27.7
Patch Changes
-
#1047
d108fa6Thanks @patzick! - Fixed a crash that could occur when depending on a tagged version of another workspace package. -
#1400
dd6e5bbThanks @Andarist! - Fixed a crash that prevented the CLI from running in a scenario when a workspace depends on the root workspace
v2.27.6
Patch Changes
-
#1392
f295b3eThanks @bluwy! - Replacemeowdependency withmrito reduce the number of transitive dependencies -
#1390
6a3452eThanks @bluwy! - Displaychangeset status --verbosein list form and removetty-tabledependency
v2.27.5
Patch Changes
-
#1370
5e9d33aThanks @Andarist! - Fixed a regression that causedchangeset versionto fail on packages having a dev dependency on a skipped package. -
Updated dependencies [
5e9d33a]:
v2.27.4
Patch Changes
-
#1361
954a16aThanks @jakebailey! - Ensure thatversion/tagdo not touch private packages with when versioning/tagging is turned off usingversionPackagesconfig -
#1369
d729d8cThanks @Andarist! -changeset tagshould now correctly skip tags that exist on the remote -
Updated dependencies [
954a16a]:
v2.27.3
Patch Changes
- #1357
18c966aThanks @Andarist! - Fixed an issue withchangeset statusexecuted withoutsinceargument. It should now correctly use the configured base branch as the default value.
v2.27.2
Patch Changes
-
#1354
69be7dcThanks @Andarist! - Fixed an issue withchangeset statusincorrectly returning an error status in two cases:- for changed ignored packages
- for changed private packages when
privatePackage.versionwas set tofalse
-
#1351
c6da182Thanks @TheHolyWaffle! - Fix an issue with not applying a custom.prettierrcconfiguration withprettier@>= 3.1.1 -
Updated dependencies [
c6da182]:
microsoft/playwright (@playwright/test)
v1.47.1
v1.47.0
v1.46.1
v1.46.0
v1.45.3
v1.45.2
v1.45.1
v1.45.0
v1.44.1
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
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
noWaitAfteroption. - You can use new
timesoption 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
-
multipartoption inapiRequestContext.fetch()now acceptsFormDataand 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 byexpect.toPass.inervalsoption globally in testConfig.expect or per project in testProject.expect. -
expect(page).toHaveURL(url)now supportsignoreCaseoption. -
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 asPLAYWRIGHT_BLOB_OUTPUT_FILEenvironment variable that might be more convenient on CI/CD. - JUnit reporter now supports
includeProjectInTestNameoption.
Command line
-
--last-failedCLI 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-failedoption:$ 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.56.2
Version 5.56.2 - 9/12/24, 6:05 PM
Changes
Fix
- core: make sure infiniteQuery always fetches the first page (#8051) (
7624785) by Dominik Dorfmeister
Packages
- @tanstack/query-core@5.56.2
- @tanstack/query-broadcast-client-experimental@5.56.2
- @tanstack/query-persist-client-core@5.56.2
- @tanstack/query-sync-storage-persister@5.56.2
- @tanstack/react-query@5.56.2
- @tanstack/react-query-devtools@5.56.2
- @tanstack/react-query-persist-client@5.56.2
- @tanstack/react-query-next-experimental@5.56.2
- @tanstack/solid-query@5.56.2
- @tanstack/solid-query-devtools@5.56.2
- @tanstack/solid-query-persist-client@5.56.2
- @tanstack/svelte-query@5.56.2
- @tanstack/svelte-query-devtools@5.56.2
- @tanstack/svelte-query-persist-client@5.56.2
- @tanstack/vue-query@5.56.2
- @tanstack/vue-query-devtools@5.56.2
- @tanstack/angular-query-experimental@5.56.2
- @tanstack/query-async-storage-persister@5.56.2
- @tanstack/angular-query-devtools-experimental@5.56.2
v5.56.1
Version 5.56.1 - 9/12/24, 2:38 PM
Changes
Fix
Chore
- trigger release (
6a17069) by Dominik Dorfmeister
Packages
- @tanstack/eslint-plugin-query@5.56.1
- @tanstack/query-async-storage-persister@5.56.1
- @tanstack/query-broadcast-client-experimental@5.56.1
- @tanstack/query-core@5.56.1
- @tanstack/query-devtools@5.56.1
- @tanstack/query-persist-client-core@5.56.1
- @tanstack/query-sync-storage-persister@5.56.1
- @tanstack/react-query@5.56.1
- @tanstack/react-query-devtools@5.56.1
- @tanstack/react-query-persist-client@5.56.1
- @tanstack/react-query-next-experimental@5.56.1
- @tanstack/solid-query@5.56.1
- @tanstack/solid-query-devtools@5.56.1
- @tanstack/solid-query-persist-client@5.56.1
- @tanstack/svelte-query@5.56.1
- @tanstack/svelte-query-devtools@5.56.1
- @tanstack/svelte-query-persist-client@5.56.1
- @tanstack/vue-query@5.56.1
- @tanstack/vue-query-devtools@5.56.1
- @tanstack/angular-query-devtools-experimental@5.56.1
- @tanstack/angular-query-experimental@5.56.1
v5.56.0
Version 5.56.0 - 9/12/24, 9:56 AM
Changes
Feat
Docs
- react-query: recommend against throwing errors in
select(#8041) (9608f80) by @DogPawHat
Packages
- @tanstack/query-core@5.56.0
- @tanstack/react-query@5.56.0
- @tanstack/query-broadcast-client-experimental@5.56.0
- @tanstack/query-persist-client-core@5.56.0
- @tanstack/query-sync-storage-persister@5.56.0
- @tanstack/react-query-devtools@5.56.0
- @tanstack/react-query-persist-client@5.56.0
- @tanstack/react-query-next-experimental@5.56.0
- @tanstack/solid-query@5.56.0
- @tanstack/solid-query-devtools@5.56.0
- @tanstack/solid-query-persist-client@5.56.0
- @tanstack/svelte-query@5.56.0
- @tanstack/svelte-query-devtools@5.56.0
- @tanstack/svelte-query-persist-client@5.56.0
- @tanstack/vue-query@5.56.0
- @tanstack/vue-query-devtools@5.56.0
- @tanstack/angular-query-experimental@5.56.0
- @tanstack/query-async-storage-persister@5.56.0
- @tanstack/angular-query-devtools-experimental@5.56.0
v5.55.4
Version 5.55.4 - 9/9/24, 6:38 AM
Changes
Fix
- query-core: jsdoc of notifyManager (#8031) (
2c1be7b) by @manudeli
Packages
- @tanstack/query-core@5.55.4
- @tanstack/query-broadcast-client-experimental@5.55.4
- @tanstack/query-persist-client-core@5.55.4
- @tanstack/query-sync-storage-persister@5.55.4
- @tanstack/react-query@5.55.4
- @tanstack/react-query-devtools@5.55.4
- @tanstack/react-query-persist-client@5.55.4
- @tanstack/react-query-next-experimental@5.55.4
- @tanstack/solid-query@5.55.4
- @tanstack/solid-query-devtools@5.55.4
- @tanstack/solid-query-persist-client@5.55.4
- @tanstack/svelte-query@5.55.4
- @tanstack/svelte-query-devtools@5.55.4
- @tanstack/svelte-query-persist-client@5.55.4
- @tanstack/vue-query@5.55.4
- @tanstack/vue-query-devtools@5.55.4
- @tanstack/angular-query-experimental@5.55.4
- @tanstack/query-async-storage-persister@5.55.4
- @tanstack/angular-query-devtools-experimental@5.55.4
v5.55.3
Version 5.55.3 - 9/9/24, 6:16 AM
Changes
Fix
- replace
JSON.stringifywithreplaceDeepEqualin structural sharing integrity check (#8030) (1bffc78) by jxom
Chore
Docs
Packages
- @tanstack/query-core@5.55.3
- @tanstack/angular-query-devtools-experimental@5.55.3
- @tanstack/angular-query-experimental@5.55.3
- @tanstack/query-broadcast-client-experimental@5.55.3
- @tanstack/query-persist-client-core@5.55.3
- @tanstack/query-sync-storage-persister@5.55.3
- @tanstack/react-query@5.55.3
- @tanstack/react-query-devtools@5.55.3
- @tanstack/react-query-persist-client@5.55.3
- @tanstack/react-query-next-experimental@5.55.3
- @tanstack/solid-query@5.55.3
- @tanstack/solid-query-devtools@5.55.3
- @tanstack/solid-query-persist-client@5.55.3
- @tanstack/svelte-query@5.55.3
- @tanstack/svelte-query-devtools@5.55.3
- @tanstack/svelte-query-persist-client@5.55.3
- @tanstack/vue-query@5.55.3
- @tanstack/vue-query-devtools@5.55.3
- @tanstack/query-async-storage-persister@5.55.3
v5.55.2
Version 5.55.2 - 9/8/24, 4:10 PM
Changes
Refactor
- query-core: move Override type to core (#7916) (
f0c5022) by @manudeli
Packages
- @tanstack/query-core@5.55.2
- @tanstack/react-query@5.55.2
- @tanstack/solid-query@5.55.2
- @tanstack/svelte-query@5.55.2
- @tanstack/angular-query-experimental@5.55.2
- @tanstack/query-broadcast-client-experimental@5.55.2
- @tanstack/query-persist-client-core@5.55.2
- @tanstack/query-sync-storage-persister@5.55.2
- @tanstack/react-query-devtools@5.55.2
- @tanstack/react-query-persist-client@5.55.2
- @tanstack/react-query-next-experimental@5.55.2
- @tanstack/solid-query-devtools@5.55.2
- @tanstack/solid-query-persist-client@5.55.2
- @tanstack/svelte-query-devtools@5.55.2
- @tanstack/svelte-query-persist-client@5.55.2
- @tanstack/vue-query@5.55.2
- @tanstack/vue-query-devtools@5.55.2
- @tanstack/angular-query-devtools-experimental@5.55.2
- @tanstack/query-async-storage-persister@5.55.2
v5.55.1
Version 5.55.1 - 9/8/24, 1:19 PM
Changes
Fix
Refactor
- react-query: split prefetch.ts (#8028) (
42715e7) by @manudeli
Docs
Packages
- @tanstack/query-devtools@5.55.1
- @tanstack/react-query@5.55.1
- @tanstack/react-query-devtools@5.55.1
- @tanstack/react-query-persist-client@5.55.1
- @tanstack/react-query-next-experimental@5.55.1
- @tanstack/solid-query-devtools@5.55.1
- @tanstack/svelte-query-devtools@5.55.1
- @tanstack/vue-query-devtools@5.55.1
- @tanstack/angular-query-devtools-experimental@5.55.1
v5.55.0
v5.54.1
Version 5.54.1 - 9/3/24, 8:50 PM
Changes
Fix
- query-core: accept generics on setQueryDefaults and setMutationDefaults (#7903) (
a85382f) by Simone Cervini
Packages
- @tanstack/query-core@5.54.1
- @tanstack/vue-query@5.54.1
- @tanstack/query-broadcast-client-experimental@5.54.1
- @tanstack/query-persist-client-core@5.54.1
- @tanstack/query-sync-storage-persister@5.54.1
- @tanstack/react-query@5.54.1
- @tanstack/react-query-devtools@5.54.1
- @tanstack/react-query-persist-client@5.54.1
- @tanstack/react-query-next-experimental@5.54.1
- @tanstack/solid-query@5.54.1
- @tanstack/solid-query-devtools@5.54.1
- @tanstack/solid-query-persist-client@5.54.1
- @tanstack/svelte-query@5.54.1
- @tanstack/svelte-query-devtools@5.54.1
- @tanstack/svelte-query-persist-client@5.54.1
- @tanstack/vue-query-devtools@5.54.1
- @tanstack/angular-query-experimental@5.54.1
- @tanstack/query-async-storage-persister@5.54.1
- @tanstack/angular-query-devtools-experimental@5.54.1
v5.53.3
Version 5.53.3 - 9/2/24, 12:32 PM
Changes
Fix
Docs
Packages
- @tanstack/query-core@5.53.3
- @tanstack/query-broadcast-client-experimental@5.53.3
- @tanstack/query-persist-client-core@5.53.3
- @tanstack/query-sync-storage-persister@5.53.3
- @tanstack/react-query@5.53.3
- @tanstack/react-query-devtools@5.53.3
- @tanstack/react-query-persist-client@5.53.3
- @tanstack/react-query-next-experimental@5.53.3
- @tanstack/solid-query@5.53.3
- @tanstack/solid-query-devtools@5.53.3
- @tanstack/solid-query-persist-client@5.53.3
- @tanstack/svelte-query@5.53.3
- @tanstack/svelte-query-devtools@5.53.3
- @tanstack/svelte-query-persist-client@5.53.3
- @tanstack/vue-query@5.53.3
- @tanstack/vue-query-devtools@5.53.3
- @tanstack/angular-query-experimental@5.53.3
- @tanstack/query-async-storage-persister@5.53.3
- @tanstack/angular-query-devtools-experimental@5.53.3
v5.53.2
Version 5.53.2 - 9/1/24, 8:41 PM
Changes
Fix
- vue-query: invalidate queries immediately after calling
invalidateQueries(#7930) (c91c720) by @Mini-ghost
Chore
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 is behind base branch, 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 was generated by Mend Renovate. View the repository job log.
Deploy Preview for electron-trpc ready!
| Name | Link |
|---|---|
| Latest commit | 30c0d1c3714b0ef6ddd02e3fd7e4cf5686beca68 |
| 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...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 56.69%. Comparing base (
784bbb0) to head (9510e98).
:exclamation: 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
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.