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 devdeps non-major #106

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@ownclouders/eslint-config (source) 11.0.4 -> 11.1.2 age adoption passing confidence
@ownclouders/extension-sdk (source) 11.0.4 -> 11.1.2 age adoption passing confidence
@ownclouders/web-client (source) 11.0.4 -> 11.1.2 age adoption passing confidence
@ownclouders/web-pkg (source) 11.0.4 -> 11.1.2 age adoption passing confidence
@ownclouders/web-test-helpers (source) 11.0.4 -> 11.1.2 age adoption passing confidence
@playwright/test (source) 1.49.0 -> 1.50.0 age adoption passing confidence
@types/chromecast-caf-sender (source) 1.0.10 -> 1.0.11 age adoption passing confidence
@types/node (source) 22.9.1 -> 22.12.0 age adoption passing confidence
@uppy/core (source) 4.3.1 -> 4.4.1 age adoption passing confidence
@uppy/core (source) 3.3.0 -> 3.13.1 age adoption passing confidence
@vueuse/core (source) 12.0.0 -> 12.5.0 age adoption passing confidence
eslint (source) 9.15.0 -> 9.19.0 age adoption passing confidence
happy-dom 15.11.6 -> 15.11.7 age adoption passing confidence
p-queue 8.0.1 -> 8.1.0 age adoption passing confidence
pinia 2.2.6 -> 2.3.1 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence
qs 6.13.1 -> 6.14.0 age adoption passing confidence
typescript (source) 5.6.3 -> 5.7.3 age adoption passing confidence
uuid 11.0.3 -> 11.0.5 age adoption passing confidence
vitest (source) 3.0.2 -> 3.0.4 age adoption passing confidence
vue-router 4.4.5 -> 4.5.0 age adoption passing confidence
vue-tsc (source) 2.1.10 -> 2.2.0 age adoption passing confidence
zod (source) 3.23.8 -> 3.24.1 age adoption passing confidence

Release Notes

owncloud/web (@​ownclouders/eslint-config)

v11.1.2: 11.1.2

Compare Source

Changelog for ownCloud Web 11.1.2 (2025-01-27)

Summary

Details

v11.1.1

Compare Source

=======================================
The following sections list the changes in ownCloud web 11.1.1 relevant to
ownCloud admins and users.

Summary

  • Bugfix - Optionally access preview app route query: #​12112
  • Bugfix - Change federated share icon: #​12118
  • Bugfix - Improve federated share icon contrast: #​12118
  • Bugfix - Show external share indicator: #​12119

Details

v11.1.0

Compare Source

=======================================
The following sections list the changes in ownCloud web 11.1.0 relevant to
ownCloud admins and users.

Summary

  • Bugfix - Preview app files visibility: #​12040
  • Bugfix - Disable paste action in same folder: #​12044
  • Bugfix - Do not push sidebar close action away: #​12045
  • Bugfix - Update sidebar width on resize: #​12045
  • Bugfix - Use correct breakpoints in sidebar: #​12045
  • Bugfix - Show indirect shares on search page: #​12050
  • Bugfix - Add more padding to input when clear action is visible: #​12055
  • Bugfix - Use local state in sidebar in embed mode: #​12058
  • Bugfix - Change opacity of disabled checkboxes: #​12063
  • Bugfix - Refetch notifications settings on locale change: #​12074
  • Enhancement - Add notifications settings: #​12010
  • Enhancement - Use generic private link error: #​12054

Details

v11.0.6

Compare Source

=======================================
The following sections list the changes in ownCloud web 11.0.6 relevant to
ownCloud admins and users.

Summary

  • Bugfix - OCM invite flow: #​11992
  • Bugfix - Change search scope without search term: #​11997
  • Bugfix - Do not load version when sidebar is closed: #​11998
  • Bugfix - Use only space resource with driveType "project" as space in sidebar: #​12000
  • Bugfix - OCM share editing: #​12002
  • Bugfix - OCM share recipient issuer: #​12002
  • Bugfix - Missing activities on Shared with me page: #​12008
  • Bugfix - Sidebar file info for shares: #​12010
  • Bugfix - Show missing role name in link share panel: #​12012
  • Bugfix - Missing translations for share type filters: #​12013
  • Bugfix - Permanent link for shares: #​12022

Details

v11.0.5

Compare Source

=======================================
The following sections list the changes in ownCloud web 11.0.5 relevant to
ownCloud admins and users.

Summary

  • Bugfix - Preview app Shared with me page: #​11883
  • Bugfix - Export request ID when delete fails: #​11951

Details

microsoft/playwright (@​playwright/test)

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.49.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33802 - [Bug]: Codegen's Clear button doesn't work if not recordinghttps://github.com/microsoft/playwright/issues/338066 - [Bug]: playwright hangs while waiting for pending navigationhttps://github.com/microsoft/playwright/issues/3378787 - [Bug]: VSC extension isn't capturing all entered tehttps://github.com/microsoft/playwright/issues/33788788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actihttps://github.com/microsoft/playwright/issues/337723772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attrhttps://github.com/microsoft/playwright/issues/3379133791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snahttps://github.com/microsoft/playwright/issues/33644/33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is nothttps://github.com/microsoft/playwright/issues/33660s/33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions
  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130
transloadit/uppy (@​uppy/core)

v4.4.1

Compare Source

Released: 2024-09-30

Package Version Package Version
@​uppy/core 4.2.1 uppy 4.4.1
@​uppy/transloadit 4.1.2
  • @​uppy/transloadit: fix multiple upload batches & run again (Merlijn Vos / #​5478)
  • meta: build(deps): bump docker/build-push-action from 6.7.0 to 6.8.0 (dependabot[bot] / #​5477)
  • meta: build(deps): bump vite from 5.2.11 to 5.4.8 (dependabot[bot] / #​5471)
  • @​uppy/svelte: build(deps-dev): bump rollup from 4.18.0 to 4.22.4 (dependabot[bot] / #​5470)
  • meta: build(deps): bump vite from 5.2.11 to 5.4.6 (dependabot[bot] / #​5466)

v4.4.0

Compare Source

Released: 2024-09-20

Package Version Package Version
@​uppy/companion 5.1.1 @​uppy/tus 4.1.1
@​uppy/svelte 4.0.2 @​uppy/xhr-upload 4.2.0
@​uppy/transloadit 4.1.1 uppy 4.4.0
  • @​uppy/tus: fix retry check for status code 400 (Merlijn Vos / #​5461)
  • meta: Merge branch 'main' of https://github.com/transloadit/uppy (Murderlon)
  • meta: fix AwsS3 endpoint option in private/dev (Murderlon)
  • examples: build(deps): bump body-parser from 1.20.2 to 1.20.3 (dependabot[bot] / #​5462)
  • examples: build(deps-dev): bump vite from 5.3.1 to 5.3.6 (dependabot[bot] / #​5459)
  • @​uppy/tus: set response from tus-js-client (Merlijn Vos / #​5456)
  • docs: fix assemblyOptions example for React (Merlijn Vos / #​5450)
  • docs: rename Edgly to Smart CDN (Merlijn Vos / #​5449)
  • @​uppy/tus: correctly type tus on UppyFile (Merlijn Vos / #​5454)
  • docs: remove old legacy CDN reference (Murderlon)
  • @​uppy/xhr-upload: pass files to onBeforeRequest (Merlijn Vos / #​5447)
  • @​uppy/svelte: fix generated module to not bundle Svelte (Antoine du Hamel / #​5446)
  • examples,@​uppy/svelte: Bump svelte from 4.2.18 to 4.2.19 (dependabot[bot] / #​5440)
  • meta: bump Yarn to 4.4.1 (Antoine du Hamel / #​5445)
  • docs: fix broken links in locale docs (Serghei Cebotari / #​5441)

v4.3.2

Compare Source

vueuse/vueuse (@​vueuse/core)

v12.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v12.4.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v12.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

@renovate renovate bot force-pushed the renovate/devdeps-non-major branch 24 times, most recently from 36a815b to 6b6ae85 Compare December 2, 2024 11:17
@renovate renovate bot force-pushed the renovate/devdeps-non-major branch 4 times, most recently from 7bfd820 to 4ae47c7 Compare December 4, 2024 04:11
@mmattel mmattel requested a review from JammingBen December 4, 2024 08:25
@renovate renovate bot force-pushed the renovate/devdeps-non-major branch from 4ae47c7 to e81c2b7 Compare December 4, 2024 09:55
@renovate renovate bot force-pushed the renovate/devdeps-non-major branch 22 times, most recently from 00552c9 to 838e130 Compare January 25, 2025 01:16
@renovate renovate bot force-pushed the renovate/devdeps-non-major branch 6 times, most recently from ae4c5d1 to ea6f24d Compare January 30, 2025 01:51
@renovate renovate bot force-pushed the renovate/devdeps-non-major branch from ea6f24d to 3931c51 Compare January 30, 2025 15:00
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.

2 participants