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

Update all non-major dependencies #41

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 30, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@edge-runtime/vm (source) 3.0.2 -> 3.2.0 age adoption passing confidence devDependencies minor
@playwright/test (source) 1.35.1 -> 1.44.0 age adoption passing confidence devDependencies minor 1.44.1
@sentry/sveltekit (source) 7.55.2 -> 7.116.0 age adoption passing confidence dependencies minor
@supabase/auth-helpers-sveltekit (source) 0.10.1 -> 0.13.0 age adoption passing confidence devDependencies minor
@supabase/supabase-js 2.25.0 -> 2.43.3 age adoption passing confidence devDependencies minor 2.43.4
@sveltejs/adapter-vercel (source) 3.0.1 -> 3.1.0 age adoption passing confidence devDependencies minor
@sveltejs/kit (source) 1.20.2 -> 1.30.4 age adoption passing confidence devDependencies minor
@tailwindcss/forms 0.5.3 -> 0.5.7 age adoption passing confidence devDependencies patch
@tailwindcss/typography 0.5.9 -> 0.5.13 age adoption passing confidence devDependencies patch
@testing-library/dom 9.3.1 -> 9.3.4 age adoption passing confidence devDependencies patch
@testing-library/jest-dom 5.16.5 -> 5.17.0 age adoption passing confidence devDependencies minor
@testing-library/user-event 14.4.3 -> 14.5.2 age adoption passing confidence devDependencies minor
@types/jest (source) 29.5.2 -> 29.5.12 age adoption passing confidence devDependencies patch
@types/lodash (source) 4.14.195 -> 4.17.4 age adoption passing confidence devDependencies minor
@​types/testing-library__jest-dom 5.14.6 -> 5.14.9 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) 5.59.11 -> 5.62.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 5.59.11 -> 5.62.0 age adoption passing confidence devDependencies minor
@vercel/analytics (source) 1.0.1 -> 1.2.2 age adoption passing confidence devDependencies minor 1.3.1 (+1)
@vitest/coverage-c8 (source) 0.31.4 -> 0.33.0 age adoption passing confidence devDependencies minor
@vitest/coverage-istanbul (source) 0.32.0 -> 0.34.6 age adoption passing confidence devDependencies minor
@vitest/coverage-v8 (source) 0.32.0 -> 0.34.6 age adoption passing confidence devDependencies minor
@vitest/ui (source) 0.31.4 -> 0.34.7 age adoption passing confidence devDependencies minor
autoprefixer 10.4.14 -> 10.4.19 age adoption passing confidence devDependencies patch
axios (source) 1.4.0 -> 1.7.2 age adoption passing confidence devDependencies minor
daisyui (source) 3.1.0 -> 3.9.4 age adoption passing confidence devDependencies minor
dayjs (source) 1.11.8 -> 1.11.11 age adoption passing confidence devDependencies patch
echarts (source) 5.4.2 -> 5.5.0 age adoption passing confidence devDependencies minor
eslint (source) 8.42.0 -> 8.57.0 age adoption passing confidence devDependencies minor
eslint-config-prettier 8.8.0 -> 8.10.0 age adoption passing confidence devDependencies minor
hint (source) 7.1.9 -> 7.1.11 age adoption passing confidence devDependencies patch
iconify-icon (source) 1.0.7 -> 1.0.8 age adoption passing confidence devDependencies patch
msw (source) 1.2.2 -> 1.3.3 age adoption passing confidence devDependencies minor
node (source) v18.19.1 -> 18.20.3 age adoption passing confidence minor
postcss (source) 8.4.24 -> 8.4.38 age adoption passing confidence devDependencies patch
prettier-plugin-tailwindcss 0.3.0 -> 0.5.14 age adoption passing confidence devDependencies minor
sharp (source, changelog) 0.32.1 -> 0.33.4 age adoption passing confidence devDependencies minor
svelte (source) 4.0.0-next.0 -> 4.2.17 age adoption passing confidence devDependencies minor
svelte-check 3.4.3 -> 3.7.1 age adoption passing confidence devDependencies minor
tailwindcss (source) 3.3.2 -> 3.4.3 age adoption passing confidence devDependencies minor
terser (source) 5.18.0 -> 5.31.0 age adoption passing confidence devDependencies minor
tslib (source) 2.5.3 -> 2.6.2 age adoption passing confidence devDependencies minor
typescript (source) 5.1.3 -> 5.4.5 age adoption passing confidence devDependencies minor
vite (source) 4.3.9 -> 4.5.3 age adoption passing confidence devDependencies minor
vite-plugin-inspect 0.7.28 -> 0.8.4 age adoption passing confidence devDependencies minor
vite-tsconfig-paths 4.2.0 -> 4.3.2 age adoption passing confidence devDependencies minor
vitest (source) 0.31.4 -> 0.34.6 age adoption passing confidence devDependencies minor

Release Notes

vercel/edge-runtime (@​edge-runtime/vm)

v3.2.0

Compare Source

Minor Changes
  • Expose context.waitUntil for Node.js (#​805)
Patch Changes

v3.1.8

Compare Source

Patch Changes

v3.1.7

Compare Source

Patch Changes

v3.1.6

Compare Source

Patch Changes

v3.1.5

Compare Source

Patch Changes

v3.1.4

Compare Source

Patch Changes

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes

v3.1.1

Compare Source

Patch Changes

v3.1.0

Compare Source

Minor Changes
Patch Changes

v3.0.4

Compare Source

Patch Changes

v3.0.3

Compare Source

Patch Changes
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

v1.43.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30300 - [REGRESSION]: UI mode restarts if keep storage statehttps://github.com/microsoft/playwright/issues/303399 - [REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode

Browser Versions
  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

v1.43.0

Compare Source

New APIs

  • Method browserContext.clearCookies() now supports filters to remove only some cookies.

    // Clear all cookies.
    await context.clearCookies();
    // New: clear cookies with a particular name.
    await context.clearCookies({ name: 'session-id' });
    // New: clear cookies for a particular domain.
    await context.clearCookies({ domain: 'my-origin.com' });
  • New mode retain-on-first-failure for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      use: {
        trace: 'retain-on-first-failure',
      },
    });
  • New property testInfo.tags exposes test tags during test execution.

    test('example', async ({ page }) => {
      console.log(test.info().tags);
    });
  • New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

    const locator = page.locator('iframe[name="embedded"]');
    // ...
    const frameLocator = locator.contentFrame();
    await frameLocator.getByRole('button').click();
  • New method frameLocator.owner() converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the iframe element.

    const frameLocator = page.frameLocator('iframe[name="embedded"]');
    // ...
    const locator = frameLocator.owner();
    await expect(locator).toBeVisible();

UI Mode Updates

Playwright UI Mode

  • See tags in the test list.
  • Filter by tags by typing @fast or clicking on the tag itself.
  • New shortcuts:
    • F5 to run tests.
    • Shift F5 to stop running tests.
    • Ctrl ` to toggle test output.

Browser Versions

  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

v1.42.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29732 - [Regression]: HEAD requests to webServer.url since v1.42.0https://github.com/microsoft/playwright/issues/297466 - [Regression]: Playwright CT CLI scripts fail due to broken initializePlugin imporhttps://github.com/microsoft/playwright/issues/2973939 - [Bug]: Component tests fails when imported a module with a dot in a nahttps://github.com/microsoft/playwright/issues/29731731 - [Regression]: 1.42.0 breaks some import statemehttps://github.com/microsoft/playwright/issues/297609760 - [Bug]: Possible regression with chained locators in v1.42

Browser Versions
  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123

v1.42.0

Compare Source

New APIs

  • Test tags

    New tag syntax for adding tags to the tests (@​-tokens in the test title are still supported).

    test('test customer login', { tag: ['@​fast', '@​login'] }, async ({ page }) => {
      // ...
    });

    Use --grep command line option to run only tests with certain tags.

    npx playwright test --grep @​fast
  • Annotating skipped tests

    New annotation syntax for test annotations allows annotating the tests that do not run.

    test('test full report', {
      annotation: [
        { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23180' },
        { type: 'docs', description: 'https://playwright.dev/docs/test-annotations#tag-tests' },
      ],
    }, async ({ page }) => {
      // ...
    });
  • page.addLocatorHandler()

    New method page.addLocatorHandler() registers a callback that will be invoked when specified element becomes visible and may block Playwright actions. The callback can get rid of the overlay. Here is an example that closes a cookie dialog when it appears.

    // Setup the handler.
    await page.addLocatorHandler(
        page.getByRole('heading', { name: 'Hej! You are in control of your cookies.' }),
        async () => {
          await page.getByRole('button', { name: 'Accept all' }).click();
        });
    // Write the test as usual.
    await page.goto('https://www.ikea.com/');
    await page.getByRole('link', { name: 'Collection of blue and white' }).click();
    await expect(page.getByRole('heading', { name: 'Light and easy' })).toBeVisible();
  • Project wildcard filter
    Playwright command line flag now supports '*' wildcard when filtering by project.

    npx playwright test --project='*mobile*'
  • Other APIs

    • expect(callback).toPass({ timeout })
      The timeout can now

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone Asia/Bangkok, 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.

@vercel
Copy link

vercel bot commented Apr 30, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
wakastats ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 26, 2024 2:59am

@codecov
Copy link

codecov bot commented Apr 30, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 64.28%. Comparing base (c32cecc) to head (5087847).
Report is 20 commits behind head on main.

Current head 5087847 differs from pull request most recent head 6ae1cdd

Please upload reports for the commit 6ae1cdd to get more accurate results.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #41   +/-   ##
=======================================
  Coverage   64.28%   64.28%           
=======================================
  Files          78       78           
  Lines        3601     3601           
  Branches      196      196           
=======================================
  Hits         2315     2315           
  Misses       1286     1286           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed May 1, 2023
@renovate renovate bot closed this May 1, 2023
@renovate renovate bot deleted the renovate/all-minor-patch branch May 1, 2023 08:57
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies May 1, 2023
@renovate renovate bot reopened this May 1, 2023
@renovate renovate bot restored the renovate/all-minor-patch branch May 1, 2023 17:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 32c9b75 to f3c38a1 Compare May 1, 2023 19:57
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update dependency sharp to v0.32.1 May 1, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f3c38a1 to 089f7eb Compare May 2, 2023 00:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 089f7eb to 401a0d2 Compare May 2, 2023 03:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 401a0d2 to d34a035 Compare May 2, 2023 07:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d34a035 to c1bfa57 Compare May 2, 2023 17:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c1bfa57 to 47f2617 Compare May 3, 2023 04:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 47f2617 to c64dd18 Compare May 3, 2023 09:23
@cesarnml cesarnml added the enhancement New feature or request label May 3, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c64dd18 to 015b833 Compare May 3, 2023 12:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 015b833 to 6e3af64 Compare May 3, 2023 19:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c7b36e to 382575a Compare April 29, 2024 23:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 382575a to 62fd3d2 Compare May 2, 2024 14:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 62fd3d2 to a1fe26b Compare May 4, 2024 14:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a1fe26b to 365a41c Compare May 5, 2024 14:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 365a41c to c47614d Compare May 6, 2024 05:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c47614d to aa0b846 Compare May 7, 2024 02:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aa0b846 to 49e92e4 Compare May 7, 2024 04:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 49e92e4 to 641ecba Compare May 9, 2024 05:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 641ecba to a342df6 Compare May 10, 2024 23:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a342df6 to 4f4a032 Compare May 11, 2024 20:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4f4a032 to 583e19f Compare May 23, 2024 05:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 583e19f to 4de4251 Compare May 24, 2024 02:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4de4251 to 609189a Compare May 25, 2024 05:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant