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 #90

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 9, 2023

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.0 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.2 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.13 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.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.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.

@cloudflare-pages
Copy link

cloudflare-pages bot commented Apr 9, 2023

Deploying nft-gallery with  Cloudflare Pages  Cloudflare Pages

Latest commit: 0e9c2ed
Status:🚫  Build failed.

View logs

@renovate
Copy link
Author

renovate bot commented Apr 10, 2023

lgtm

@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch 8 times, most recently from 7ac0f6e to 6066fdf Compare April 17, 2023 06:32
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch 8 times, most recently from 9f9292b to a6a0f10 Compare April 24, 2023 18:30
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch 10 times, most recently from 72fdb13 to 308b84c Compare May 2, 2023 07:54
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch 2 times, most recently from e283076 to bf505b3 Compare May 3, 2023 01:42
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 5a328c8 to 1c5a4ff Compare April 14, 2024 17:19
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 1c5a4ff to 1cd40f3 Compare April 17, 2024 03:00
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 1cd40f3 to 48b2d26 Compare April 19, 2024 02:35
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 48b2d26 to bd431b3 Compare April 23, 2024 20:50
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from bd431b3 to 3114d6b Compare April 24, 2024 23:46
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 3114d6b to 044cddb Compare April 26, 2024 02:44
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 044cddb to b120fc7 Compare April 27, 2024 20:38
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from b120fc7 to 35a0c36 Compare April 30, 2024 23:59
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 35a0c36 to 7df2183 Compare May 2, 2024 15:00
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 7df2183 to 6c02797 Compare May 4, 2024 02:51
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 6c02797 to 14f8578 Compare May 5, 2024 08:34
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 14f8578 to eacf97e Compare May 7, 2024 05:33
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from eacf97e to 9dc5770 Compare May 7, 2024 14:44
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

0 participants