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

Merged
merged 2 commits into from
Feb 11, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 11, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@eslint/js (source) 9.18.0 -> 9.19.0 age adoption passing confidence
@formatjs/icu-messageformat-parser (source) 2.10.0 -> 2.11.0 age adoption passing confidence
@​immich/ui ^0.15.0 -> ^0.16.0 age adoption passing confidence
@nestjs/bullmq 11.0.1 -> 11.0.2 age adoption passing confidence
@nestjs/common (source) 11.0.6 -> 11.0.8 age adoption passing confidence
@nestjs/core (source) 11.0.6 -> 11.0.8 age adoption passing confidence
@nestjs/platform-express (source) 11.0.6 -> 11.0.8 age adoption passing confidence
@nestjs/platform-socket.io (source) 11.0.6 -> 11.0.8 age adoption passing confidence
@nestjs/schedule 5.0.0 -> 5.0.1 age adoption passing confidence
@nestjs/testing (source) 11.0.6 -> 11.0.8 age adoption passing confidence
@nestjs/websockets (source) 11.0.6 -> 11.0.8 age adoption passing confidence
@opentelemetry/auto-instrumentations-node (source) ^0.55.0 -> ^0.56.0 age adoption passing confidence
@playwright/test (source) 1.49.1 -> 1.50.1 age adoption passing confidence
@sveltejs/kit (source) 2.16.0 -> 2.17.1 age adoption passing confidence
@swc/core (source) 1.10.7 -> 1.10.14 age adoption passing confidence
@testcontainers/postgresql 10.16.0 -> 10.18.0 age adoption passing confidence
@testing-library/user-event 14.6.0 -> 14.6.1 age adoption passing confidence
@types/lodash (source) 4.17.14 -> 4.17.15 age adoption passing confidence
@types/pg (source) 8.11.10 -> 8.11.11 age adoption passing confidence
@types/react (source) 19.0.7 -> 19.0.8 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.20.0 -> 8.23.0 age adoption passing confidence
@typescript-eslint/parser (source) 8.20.0 -> 8.23.0 age adoption passing confidence
@vitest/coverage-v8 (source) 3.0.3 -> 3.0.5 age adoption passing confidence
eslint (source) 9.18.0 -> 9.19.0 age adoption passing confidence
eslint-plugin-prettier 5.2.2 -> 5.2.3 age adoption passing confidence
fastq 1.18.0 -> 1.19.0 age adoption passing confidence
geo-tz 8.1.2 -> 8.1.3 age adoption passing confidence
intl-messageformat 10.7.12 -> 10.7.14 age adoption passing confidence
mock-fs 5.4.1 -> 5.5.0 age adoption passing confidence
nestjs-cls (source) 5.0.0 -> 5.0.1 age adoption passing confidence
nodemailer (source) 6.9.16 -> 6.10.0 age adoption passing confidence
oidc-provider 8.6.0 -> 8.6.1 age adoption passing confidence
semver 7.6.3 -> 7.7.1 age adoption passing confidence
socket.io-client (source) ~4.7.5 -> ~4.8.0 age adoption passing confidence
sql-formatter 15.4.9 -> 15.4.10 age adoption passing confidence
svelte (source) 5.19.0 -> 5.19.8 age adoption passing confidence
vite (source) 6.0.11 -> 6.1.0 age adoption passing confidence

Release Notes

eslint/eslint (@​eslint/js)

v9.19.0

Compare Source

formatjs/formatjs (@​formatjs/icu-messageformat-parser)

v2.11.0

Compare Source

Features

2.10.1 (2025-01-20)

Bug Fixes

v2.10.1

Compare Source

Bug Fixes
nestjs/bull (@​nestjs/bullmq)

v11.0.2

Compare Source

What's Changed

Full Changelog: https://github.com/nestjs/bull/compare/[@​nestjs/bull-shared](https://redirect.github.com/nestjs/bull-shared)[@​11](https://redirect.github.com/11).0.0...[@​nestjs/bullmq](https://redirect.github.com/nestjs/bullmq)[@​11](https://redirect.github.com/11).0.2

nestjs/nest (@​nestjs/common)

v11.0.8

Compare Source

v11.0.8 (2025-02-06)
Bug fixes
Committers: 4

v11.0.7

Compare Source

v11.0.7 (2025-01-31)
Bug fixes
Committers: 1
nestjs/schedule (@​nestjs/schedule)

v5.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: nestjs/schedule@5.0.0...5.0.1

open-telemetry/opentelemetry-js-contrib (@​opentelemetry/auto-instrumentations-node)

v0.56.0

Compare Source

microsoft/playwright (@​playwright/test)

v1.50.1

Compare Source

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
sveltejs/kit (@​sveltejs/kit)

v2.17.1

Compare Source

Patch Changes
  • fix: make route resolution imports root-relative if paths.relative option is false (#​13412)

v2.17.0

Compare Source

Minor Changes
  • feat: validate values for cache-control and content-type headers in dev mode (#​13114)

  • feat: support server-side route resolution (#​13379)

Patch Changes
  • chore: don't error during development when using use:enhance with +server as some third party libraries make it possible to POST forms to it (#​13397)

  • fix: skip hooks for server fetch to prerendered routes (#​13377)

  • fix: ignore non-entry-point CSS files during inlining (#​13395)

  • fix: default server fetch to use prerendered paths (#​13377)

v2.16.1

Compare Source

Patch Changes
  • fix: avoid overwriting headers for sub-requests made while loading the error page (#​13341)

  • fix: correctly resolve index file entrypoints such as src/service-worker/index.js (#​13354)

  • fix: correctly handle relative anchors when using the hash router (#​13356)

swc-project/swc (@​swc/core)

v1.10.14

Compare Source

Bug Fixes
Features
Performance

v1.10.12

Compare Source

Bug Fixes
  • (es/parser) Remove wrong check about const without init (#​9970) (1b57261)
Performance
  • (es/minifier) Make analyzer not call collect_infects_from recursively (#​9924) (37616c3)

  • (es/minifier) Skip complex inline operations if possible (#​9972) (772cc30)

  • (es/minifier) Merge binding analyzer into infection analyzer (#​9973) (ca8a71f)

v1.10.11

Compare Source

Bug Fixes
  • (es) Restore JSON config & Adjust feature renaming (#​9967) (72e5455)

  • (es/minifier) Avoid paren when compressing ternary (#​9920) (9d6fe37)

  • (es/parser) Parse yield<T> (v: T)=>v (#​9915) (04333aa)

  • (ts/fast-strip) More robust generic arrow handling (#​9913) (f7faa7c)

  • (typescript) Allow references to the global Symbol in computed property names under isolatedDeclarations (#​9869) (e4c1e03)

Features
Miscellaneous Tasks
Performance
Refactor

v1.10.9

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
  • (es/minifier) Print slow files from minify-all example (#​9899) (2d87b89)
Performance

v1.10.8

Compare Source

Bug Fixes
Features
  • (typescript) Check computed property names of ts signatures (#​9867) (caed78a)
Performance
Refactor
testcontainers/testcontainers-node (@&#

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from danieldietzler as a code owner February 11, 2025 13:00
@renovate renovate bot added changelog:skip dependencies Pull requests that update a dependency file labels Feb 11, 2025
@alextran1502 alextran1502 enabled auto-merge (squash) February 11, 2025 17:22
@renovate renovate bot force-pushed the renovate/typescript-projects branch from d2a7730 to 38bffd5 Compare February 11, 2025 17:25
@danieldietzler danieldietzler enabled auto-merge (squash) February 11, 2025 18:44
@danieldietzler danieldietzler merged commit d2575d8 into main Feb 11, 2025
38 checks passed
@danieldietzler danieldietzler deleted the renovate/typescript-projects branch February 11, 2025 18:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog:skip dependencies Pull requests that update a dependency file 🖥️web
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants