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

chore(deps): update all non-major dependencies #832

Merged
merged 2 commits into from May 8, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 25, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@cucumber/cucumber 10.5.1 -> 10.6.0 age adoption passing confidence devDependencies minor
@nuxt/eslint-config (source) 0.3.9 -> 0.3.10 age adoption passing confidence devDependencies patch
@nuxt/module-builder 0.5.5 -> 0.6.0 age adoption passing confidence devDependencies minor
@playwright/test (source) 1.43.1 -> 1.44.0 age adoption passing confidence devDependencies minor
@vue/test-utils 2.4.5 -> 2.4.6 age adoption passing confidence devDependencies patch
actions/checkout v4.1.3 -> v4.1.4 age adoption passing confidence action patch
eslint (source) 9.1.1 -> 9.2.0 age adoption passing confidence devDependencies minor
playwright-core (source) 1.43.1 -> 1.44.0 age adoption passing confidence devDependencies minor
pnpm (source) 9.0.6 -> 9.1.0 age adoption passing confidence packageManager minor
rollup (source) 4.16.4 -> 4.17.2 age adoption passing confidence resolutions minor
rollup (source) 4.16.4 -> 4.17.2 age adoption passing confidence devDependencies minor
semver 7.6.0 -> 7.6.1 age adoption passing confidence devDependencies patch
vite (source) 5.2.10 -> 5.2.11 age adoption passing confidence resolutions patch
vite (source) 5.2.10 -> 5.2.11 age adoption passing confidence devDependencies patch
vue (source) ^3.4.25 -> ^3.4.27 age adoption passing confidence resolutions patch
vue-tsc (source) 2.0.14 -> 2.0.16 age adoption passing confidence devDependencies patch

Release Notes

cucumber/cucumber-js (@​cucumber/cucumber)

v10.6.0

Compare Source

Added
  • Add loader option for ESM loader hooks #​2399
nuxt/eslint (@​nuxt/eslint-config)

v0.3.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
nuxt/module-builder (@​nuxt/module-builder)

v0.6.0

Compare Source

compare changes

🚀 Enhancements
  • Generate runtime/ dts based on nuxt tsconfig options (#​255)
  • Add builder versions to module.json (f8567a3)
  • Support transforming jsx (4841f2e)
🩹 Fixes
  • ⚠️ Remove support for deprecated RuntimeModuleHooks interface (#​228)
  • Add -nightly versions to externals (0a88a87)
  • Ignore exporting type if it is not defined (c308cc5)
  • Mark runtime/ directory as external (7a68e1e)
🏡 Chore
  • release: V0.5.5 (f158ffa)
  • Dedupe kit/schema/vue versions (aa0a710)
  • Add root dev:prepare command (c308a68)
  • Migrate to eslint v9 (#​250)
  • Improve internal type safety and enable strict mode (78aa088)
  • Tweak tsconfig settings (404aae7)
  • Add more type annotations (ba0614b)
✅ Tests
  • Update type testing step (#​256)
  • Add inline snapshots for runtime/ transforms (#​257)
  • Update snapshot (a39c183)
🎨 Styles
⚠️ Breaking Changes
  • ⚠️ Remove support for deprecated RuntimeModuleHooks interface (#​228)
❤️ Contributors
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
vuejs/test-utils (@​vue/test-utils)

v2.4.6

Compare Source

What's Changed

New Contributors

Full Changelog: vuejs/test-utils@v2.4.5...v2.4.6

actions/checkout (actions/checkout)

v4.1.4

Compare Source

eslint/eslint (eslint)

v9.2.0

Compare Source

pnpm/pnpm (pnpm)

v9.1.0

Compare Source

rollup/rollup (rollup)

v4.17.2

Compare Source

2024-04-30

Bug Fixes
  • Fix tree-shaking problems when using spread arguments (#​5503)
Pull Requests

v4.17.1

Compare Source

2024-04-29

Bug Fixes
  • Prevent infinite recursions for certain constructor invocations (#​5500)
Pull Requests

v4.17.0

Compare Source

2024-04-27

Features
  • Track function call arguments to optimize functions only called once or with the same literal values (re-release from 4.16.0) (#​5483)
Bug Fixes
  • Reduce browser WASM size to a fraction by changing optimization settings (#​5494)
Pull Requests
npm/node-semver (semver)

v7.6.1

Compare Source

Bug Fixes
Dependencies
Chores
vitejs/vite (vite)

v5.2.11

Compare Source

vuejs/core (vue)

v3.4.27

Compare Source

Bug Fixes

v3.4.26

Compare Source

Bug Fixes
vuejs/language-tools (vue-tsc)

v2.0.16

Compare Source

Bug Fixes
Other Changes

v2.0.15

Compare Source

Features
  • Redesign additional extensions, VitePress, PetiteVue support (#​4321)
    • Fix custom file extensions not working in Hybrid Mode (#​4251)
  • vscode: prompt when Hybrid Mode is explicitly enabled but known incompatible extensions are installed
  • language-core: use internal options for directly exposing user props/emits types (vuejs/core#10801)
  • language-core: support defineSlots destructuring (#​4312) - Thanks @​zhiyuanzmj
Bug Fixes
  • vscode: when enabled VitePress support, extension not activated when opening markdown files
  • language-core: auto-complete not working in v-bind
Performance
  • language-service: emmet completion should not be blocked by TS type evaluation (#​4298)
  • language-core: simplify virtual code for intrinsic elements
Other Changes
  • Upgrade Volar from v2.2.0-alpha.10 to v2.2.0-alpha.12:
    • Avoid extension crash when workspace TSDK does not exist
    • Fix template variables cannot be renamed at the first character in Hybrid Mode (#​4297)
    • Fix template virtual code mapping is misaligned in Windows in Hybrid Mode (#​4297)
  • Add svelte.svelte-vscode (>=108.4.0) to Hybrid Mode compatibility whitelist (sveltejs/language-tools#2317)
  • component-meta: convert source code to TS
  • language-core: export allCodeFeatures (#​4320) - Thanks @​zhiyuanzmj

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.

@dosubot dosubot bot added the size:S This PR changes 10-29 lines, ignoring generated files. label Apr 25, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 714149c to 52a742e Compare May 2, 2024 10:53
@dosubot dosubot bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:S This PR changes 10-29 lines, ignoring generated files. labels May 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2fa6cfb to 389479f Compare May 7, 2024 00:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 389479f to 0c8aed4 Compare May 7, 2024 19:59
Copy link
Contributor Author

renovate bot commented May 8, 2024

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.

@danielroe danielroe merged commit 1ebcd12 into main May 8, 2024
3 checks passed
@danielroe danielroe deleted the renovate/all-minor-patch branch May 8, 2024 13:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size:M This PR changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant