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

[skip netlify] Update Bumped minor version of packages #10072

Merged
merged 2 commits into from
May 13, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 15, 2024

Bumped minor version of packages, check if builds are still passing, please 🥺

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@google/model-viewer ^3.4.0 -> ^3.5.0 age adoption passing confidence
@nuxt/image (source) ^1.5.0 -> ^1.7.0 age adoption passing confidence
@nuxtjs/color-mode ^3.3.3 -> ^3.4.1 age adoption passing confidence
@nuxtjs/i18n (source) ^8.3.0 -> ^8.3.1 age adoption passing confidence
@nuxtjs/sitemap ^5.1.3 -> ^5.1.5 age adoption passing confidence
@playwright/test (source) ^1.43.0 -> ^1.44.0 age adoption passing confidence
@types/lodash (source) ^4.17.0 -> ^4.17.1 age adoption passing confidence
@types/markdown-it (source) ^13.0.7 -> ^13.0.8 age adoption passing confidence
@types/node (source) ^20.12.5 -> ^20.12.11 age adoption passing confidence
@types/prismjs (source) ^1.26.3 -> ^1.26.4 age adoption passing confidence
@vite-pwa/nuxt ^0.6.0 -> ^0.7.0 age adoption passing confidence
eslint-config-unjs ^0.2.1 -> ^0.3.1 age adoption passing confidence
sass ^1.74.1 -> ^1.77.1 age adoption passing confidence
three (source) ^0.163.0 -> ^0.164.1 age adoption passing confidence
typescript (source) ^5.4.4 -> ^5.4.5 age adoption passing confidence
viem (source) ^2.9.31 -> ^2.10.5 age adoption passing confidence
vitest (source) ^1.4.0 -> ^1.6.0 age adoption passing confidence
vue (source) ^3.4.21 -> ^3.4.27 age adoption passing confidence
vue-chartjs (source) ^5.3.0 -> ^5.3.1 age adoption passing confidence
wavesurfer.js (source) ^7.7.10 -> ^7.7.14 age adoption passing confidence

Release Notes

google/model-viewer (@​google/model-viewer)

v3.5.0

Compare Source

Features

🆕 Added localization API for a11y for WCAG compliance, thanks @​cybmiper! #​4715
🆕 Added Khronos PBR Neutral tone mapping standard ("neutral") - "commerce" is now an alias for this. #​4716, #​4760

Bug fixes
Examples

✨ Added example of a11y localization, thanks @​cybmiper! #​4715

Other notable changes
Editor
nuxt/image (@​nuxt/image)

v1.7.0

Compare Source

compare changes

🚀 Enhancements
  • Allow specifying fetchpriority when preloading images (#​989)
🩹 Fixes
  • Ensure src comes after loading when rendering image (#​1338)
📖 Documentation
  • Fix typo in get-started/installation (#​1344)
🤖 CI
❤️ Contributors

v1.6.0

Compare Source

compare changes

🚀 Enhancements
  • Configure domains with NUXT_IMAGE_DOMAINS (#​1332)
  • nuxt-img: Add placeholderClass prop (#​1111)
🩹 Fixes
  • hygraph: Support new hygraph asset system (#​1321)
  • uploadcare: Omit base when resolved URL is returned (#​1254)
  • Handle undefined or empty image source values (#​1300)
  • Reduce warnings about density values > 2 (dad493a)
  • netlify: Normalise jpeg format to jpg (a59e57c)
📖 Documentation
  • Use new nuxi module add command in installation (#​1310)
  • Warn <NuxtPicture> doesn't support different sources (#​1326)
🏡 Chore
✅ Tests
❤️ Contributors
nuxt-modules/color-mode (@​nuxtjs/color-mode)

v3.4.1

Compare Source

v3.4.0

Compare Source

Features
3.3.3 (2024-03-19)
Bug Fixes
3.3.2 (2023-11-15)
Bug Fixes
  • use ref for island color-mode stub and check it is truthy (486c28f)
3.3.1 (2023-11-15)
Bug Fixes
  • avoid setting color-mode when rendering islands (#​200) (d856d7a)
  • check when localStorage is available (e4e84fe), closes #​202
  • initialise helper to empty object when testing (34c4e0e)
nuxt-community/i18n-module (@​nuxtjs/i18n)

v8.3.1

Compare Source

This changelog is generated by GitHub Releases

   🐞 Bug Fixes
    View changes on GitHub
nuxt-modules/sitemap (@​nuxtjs/sitemap)

v5.1.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
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
vite-pwa/nuxt (@​vite-pwa/nuxt)

v0.7.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub
unjs/eslint-config (eslint-config-unjs)

v0.3.1

Compare Source

compare changes

🩹 Fixes
  • markdown: Override default rules (4765dd5)
🏡 Chore
  • Remove prerelease script (pnpm why ?!) (a98c465)
❤️ Contributors

v0.3.0

Compare Source

compare changes

sass/dart-sass (sass)

v1.77.1

Compare Source

  • Fix a crash that could come up with importers in certain contexts.

v1.77.0

Compare Source

  • Don't throw errors for at-rules in keyframe blocks.

v1.76.0

Compare Source

  • Throw errors for misplaced statements in keyframe blocks.

  • Mixins and functions whose names begin with -- are now deprecated for
    forwards-compatibility with the in-progress CSS functions and mixins spec.
    This deprecation is named css-function-mixin.

v1.75.0

Compare Source

  • Fix a bug in which stylesheet canonicalization could be cached incorrectly
    when custom importers or the Node.js package importer made decisions based on
    the URL of the containing stylesheet.
JS API
  • Allow importer to be passed without url in StringOptionsWithImporter.
mrdoob/three.js (three)

v0.164.1

Compare Source

v0.164.0

Compare Source

wevm/viem (viem)

v2.10.5

Compare Source

Patch Changes

v2.10.3

Compare Source

Patch Changes

v2.10.2

Compare Source

Patch Changes

v2.10.1

Compare Source

Patch Changes

v2.10.0

Compare Source

Minor Changes

v2.9.32

Compare Source

Patch Changes
vitest-dev/vitest (vitest)

v1.6.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.5.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/core (vue)

v3.4.27

Compare Source

Bug Fixes

v3.4.26

Compare Source

Bug Fixes

v3.4.25

Compare Source

Bug Fixes

v3.4.24

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

@renovate renovate bot requested a review from a team as a code owner April 15, 2024 00:17
@renovate renovate bot requested review from daiagi and hassnian and removed request for a team April 15, 2024 00:17
Copy link
Contributor Author

renovate bot commented Apr 15, 2024

lgtm

@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch 13 times, most recently from 1e89248 to a32de22 Compare April 20, 2024 15:13
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch 10 times, most recently from e9ecf4e to 4b2dcbf Compare April 23, 2024 18:00
Copy link

socket-security bot commented Apr 23, 2024

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch 4 times, most recently from 8a06f64 to 9fad931 Compare May 8, 2024 08:17
Copy link

cloudflare-pages bot commented May 8, 2024

Deploying kodaart-production with  Cloudflare Pages  Cloudflare Pages

Latest commit: f387313
Status: ✅  Deploy successful!
Preview URL: https://90b4515b.kodaart-production.pages.dev
Branch Preview URL: https://renovate-bumped-minor-versio.kodaart-production.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch 10 times, most recently from 2e870c5 to c3d8c8c Compare May 13, 2024 03:49
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from c3d8c8c to d430358 Compare May 13, 2024 11:37
@vikiival
Copy link
Member

vikiival commented May 13, 2024

Prob revert eslint version? cc @kodadot/internal-dev

Screenshot 2024-05-13 at 15 40 25

Copy link
Contributor Author

renovate bot commented May 13, 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.

Copy link

codeclimate bot commented May 13, 2024

Code Climate has analyzed commit f387313 and detected 0 issues on this pull request.

View more on Code Climate.

Copy link

sonarcloud bot commented May 13, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@Jarsen136
Copy link
Contributor

Prob revert eslint version? cc @kodadot/internal-dev

Screenshot 2024-05-13 at 15 40 25

✅ FIXED
image

@vikiival vikiival added this pull request to the merge queue May 13, 2024
Merged via the queue into main with commit ae1bb8d May 13, 2024
16 checks passed
@vikiival vikiival deleted the renovate/bumped-minor-version-of-packages branch May 13, 2024 14:13
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

3 participants