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

fix(deps): update typescript-projects #9454

Merged
merged 1 commit into from
May 14, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 14, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@docusaurus/core (source) 3.2.1 -> 3.3.2 age adoption passing confidence dependencies minor
@docusaurus/module-type-aliases (source) 3.2.1 -> 3.3.2 age adoption passing confidence devDependencies minor
@docusaurus/preset-classic (source) 3.2.1 -> 3.3.2 age adoption passing confidence dependencies minor
@opentelemetry/context-async-hooks (source) 1.24.0 -> 1.24.1 age adoption passing confidence dependencies patch
@opentelemetry/exporter-prometheus (source) 0.51.0 -> 0.51.1 age adoption passing confidence dependencies patch
@opentelemetry/sdk-node (source) 0.51.0 -> 0.51.1 age adoption passing confidence dependencies patch
@playwright/test (source) 1.43.1 -> 1.44.0 age adoption passing confidence devDependencies minor
@swc/core (source) 1.4.17 -> 1.5.5 age adoption passing confidence devDependencies minor
@testing-library/jest-dom 6.4.2 -> 6.4.5 age adoption passing confidence devDependencies patch
@types/lodash (source) 4.17.0 -> 4.17.1 age adoption passing confidence devDependencies patch
@types/node (source) 20.12.8 -> 20.12.11 age adoption passing confidence devDependencies patch
@types/pg (source) 8.11.5 -> 8.11.6 age adoption passing confidence devDependencies patch
@vitest/coverage-v8 (source) 1.5.3 -> 1.6.0 age adoption passing confidence devDependencies minor
docusaurus-lunr-search (source) 3.3.2 -> 3.4.0 age adoption passing confidence dependencies minor
node (source) v20.12 -> 20.13 age adoption passing confidence minor
node (source) 20.12.2 -> 20.13.1 age adoption passing confidence volta minor
svelte (source) 4.2.15 -> 4.2.16 age adoption passing confidence devDependencies patch 4.2.17
vitest (source) 1.5.3 -> 1.6.0 age adoption passing confidence devDependencies minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

facebook/docusaurus (@​docusaurus/core)

v3.3.2

Compare Source

🐛 Bug Fix
  • docusaurus-module-type-aliases, docusaurus
Committers: 1

v3.3.1

Compare Source

Failed release

v3.3.0

Compare Source

🚀 New Feature
  • docusaurus-plugin-sitemap
  • docusaurus-mdx-loader, docusaurus-types, docusaurus
  • docusaurus
  • docusaurus-plugin-content-blog, docusaurus-plugin-content-docs, docusaurus-plugin-content-pages, docusaurus-plugin-debug, docusaurus-types, docusaurus
  • docusaurus-plugin-content-pages, docusaurus-theme-classic, docusaurus-theme-common
🐛 Bug Fix
  • docusaurus-cssnano-preset, docusaurus-utils, docusaurus
  • docusaurus-theme-classic
  • docusaurus
    • #​10090 fix(core): docusaurus serve redirects should include the site /baseUrl/ prefix (@​slorber)
  • docusaurus-module-type-aliases, docusaurus-preset-classic, docusaurus-theme-classic, docusaurus-theme-live-codeblock, docusaurus
  • docusaurus-theme-translations
  • docusaurus-theme-search-algolia
  • docusaurus-plugin-content-docs, docusaurus
    • #​10054 fix(core): sortRoutes shouldn't have a default baseUrl value, this led to a bug (@​slorber)
  • docusaurus-plugin-content-docs
  • docusaurus-utils
🏃‍♀️ Performance
  • docusaurus
    • #​10060 refactor(core): optimize App entrypoint, it should not re-render when navigating (@​slorber)
💅 Polish
  • docusaurus-theme-classic
  • docusaurus-theme-common
📝 Documentation
🤖 Dependencies
🔧 Maintenance
  • create-docusaurus, docusaurus-cssnano-preset, docusaurus-logger, docusaurus-mdx-loader, docusaurus-plugin-client-redirects, docusaurus-plugin-content-blog, docusaurus-plugin-content-docs, docusaurus-plugin-content-pages, docusaurus-plugin-debug, docusaurus-plugin-google-analytics, docusaurus-plugin-google-gtag, docusaurus-plugin-google-tag-manager, docusaurus-plugin-ideal-image, docusaurus-plugin-pwa, docusaurus-plugin-sitemap, docusaurus-plugin-vercel-analytics, docusaurus-preset-classic, docusaurus-remark-plugin-npm2yarn, docusaurus-theme-classic, docusaurus-theme-common, docusaurus-theme-live-codeblock, docusaurus-theme-mermaid, docusaurus-theme-search-algolia, docusaurus-theme-translations, docusaurus-utils-common, docusaurus-utils-validation, docusaurus-utils, docusaurus, eslint-plugin, lqip-loader, stylelint-copyright
  • Other
Committers: 20
open-telemetry/opentelemetry-js (@​opentelemetry/context-async-hooks)

v1.24.1

Compare Source

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
swc-project/swc (@​swc/core)

v1.5.5

Compare Source

Bug Fixes
Refactor

v1.5.3

Compare Source

v1.5.2

Compare Source

v1.5.1

Compare Source

Bug Fixes
  • (es/decorator) Support for legacy decorators in class expressions (#​8892) (8fe57ad)

  • (es/helpers) Remove unused export from _using_ctx.js (#​8891) (438d0b3)

  • (es/minifier) Do not add vars if eval exists (#​8888) (be359fa)

v1.5.0

Compare Source

Bug Fixes
Features
testing-library/jest-dom (@​testing-library/jest-dom)

v6.4.5

Compare Source

Bug Fixes

v6.4.4

Compare Source

v6.4.3

Compare Source

vitest-dev/vitest (@​vitest/coverage-v8)

v1.6.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
lelouch77/docusaurus-lunr-search (docusaurus-lunr-search)

v3.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: praveenn77/docusaurus-lunr-search@v3.3.2...v3.4.0

nodejs/node (node)

v20.13.1: 2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito

Compare Source

2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito

Revert "tools: install npm PowerShell scripts on Windows"

Due to a regression in the npm installation on Windows, this commit reverts the change that installed npm PowerShell scripts on Windows.

Commits
  • [b7d80802cc] - Revert "tools: install npm PowerShell scripts on Windows" (marco-ippolito) #​52897

v20.13.0

Compare Source

sveltejs/svelte (svelte)

v4.2.16

Compare Source

Patch Changes
  • fix: check if svelte component exists on custom element destroy (#​11489)

Configuration

📅 Schedule: Branch creation - "on tuesday" (UTC), 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.

@renovate renovate bot requested a review from danieldietzler as a code owner May 14, 2024 01:06
@renovate renovate bot added dependencies Pull requests that update a dependency file renovate labels May 14, 2024
Copy link

Deploying immich with  Cloudflare Pages  Cloudflare Pages

Latest commit: a805524
Status: ✅  Deploy successful!
Preview URL: https://92c53be7.immich.pages.dev
Branch Preview URL: https://renovate-typescript-projects.immich.pages.dev

View logs

@jrasm91 jrasm91 merged commit bf036f2 into main May 14, 2024
28 checks passed
@jrasm91 jrasm91 deleted the renovate/typescript-projects branch May 14, 2024 01:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file renovate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant