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

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 16, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@photo-sphere-viewer/core (source) 5.8.2 -> 5.8.3 age adoption passing confidence
@photo-sphere-viewer/equirectangular-video-adapter (source) 5.8.2 -> 5.8.3 age adoption passing confidence
@photo-sphere-viewer/video-plugin (source) 5.8.2 -> 5.8.3 age adoption passing confidence
@playwright/test (source) 1.45.1 -> 1.45.2 age adoption passing confidence
@swc/core (source) 1.6.13 -> 1.7.0 age adoption passing confidence
@testcontainers/postgresql 10.10.3 -> 10.10.4 age adoption passing confidence
@types/lodash (source) 4.17.6 -> 4.17.7 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.16.0 -> 7.16.1 age adoption passing confidence
@typescript-eslint/parser (source) 7.16.0 -> 7.16.1 age adoption passing confidence
eslint-plugin-prettier 5.1.3 -> 5.2.1 age adoption passing confidence
eslint-plugin-svelte (source) 2.41.0 -> 2.43.0 age adoption passing confidence
i18n-iso-countries 7.11.2 -> 7.11.3 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
prettier-plugin-svelte 3.2.5 -> 3.2.6 age adoption passing confidence
semver 7.6.2 -> 7.6.3 age adoption passing confidence
tailwindcss (source) 3.4.4 -> 3.4.6 age adoption passing confidence
vite (source) 5.3.3 -> 5.3.4 age adoption passing confidence
vitest-fetch-mock ^0.2.2 -> ^0.3.0 age adoption passing confidence

Release Notes

mistic100/Photo-Sphere-Viewer (@​photo-sphere-viewer/core)

v5.8.3

Compare Source

Full changelog: 5.8.2...5.8.3

WARNING : removed the deprecated UMD files, the package only contains ESM and CJS files to align with ThreeJS builds. This was planned in 5.8.0 but was forgotten.

Bug fixes
  • #​1375 map: cone size on high DPI screens
  • #​1357 map: broken when used without config object
New features
  • #​1369 map: add setZoom method and view-changed event
Other changes
  • #​1372 compatibility between gallery, plan & map
  • #​1374 compatibility between gallery & virtual-tour
  • gallery: force hideOnClick on small screens
microsoft/playwright (@​playwright/test)

v1.45.2

Compare Source

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

v1.7.0

Compare Source

Bug Fixes
Documentation
  • (allocator) Mention oxc_allocator (be99ce0)

  • (contributing) Fix deno installation url (#​9249) (ff5bbda)

  • (es/minifier) Add contributing section (e22f3ba)

Features
Miscellaneous Tasks
Performance
Refactor
Testing
Pers
testcontainers/testcontainers-node (@​testcontainers/postgresql)

v10.10.4

Compare Source

Changes

🐛 Bug Fixes

🧹 Maintenance

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.16.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-parameters] descend into all parts of mapped types in no-unnecessary-type-parameters
❤️ Thank You
  • Dan Vanderkam

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.16.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.1

Compare Source

Patch Changes
sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v2.43.0

Compare Source

Minor Changes

v2.42.0

Compare Source

Minor Changes
michaelwittig/node-i18n-iso-countries (i18n-iso-countries)

v7.11.3

Compare Source

prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

sveltejs/prettier-plugin-svelte (prettier-plugin-svelte)

v3.2.6

Compare Source

  • (feat) Svelte 5: never quote single-expression-attributes
npm/node-semver (semver)

v7.6.3

Compare Source

Bug Fixes
Documentation
tailwindlabs/tailwindcss (tailwindcss)

v3.4.6

Compare Source

Fixed
  • Fix detection of some utilities in Slim/Pug templates (#​14006)
Changed
  • Loosen :is() wrapping rules when using an important selector (#​13900)

v3.4.5

Compare Source

vitejs/vite (vite)

v5.3.4

Compare Source

IanVS/vitest-fetch-mock (vitest-fetch-mock)

v0.3.0

Compare Source

Breaking changes

  • Support Vitest 2
  • Require Node 18 and above

Fixes

  • Better TypeScript support

PRs:

New Contributors

Full Changelog: IanVS/vitest-fetch-mock@v0.2.2...v0.3.0


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 added dependencies Pull requests that update a dependency file renovate labels Jul 16, 2024
@renovate renovate bot force-pushed the renovate/typescript-projects branch from b1c67aa to 745e781 Compare July 16, 2024 18:29
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-svelte to v2.42.0 chore(deps): update typescript-projects Jul 16, 2024
Copy link
Contributor Author

renovate bot commented Jul 16, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: cli/package-lock.json
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: @immich/[email protected]
npm error Found: [email protected]
npm error node_modules/vitest
npm error   dev vitest@"^1.2.2" from the root project
npm error   peer vitest@"1.6.0" from @vitest/[email protected]
npm error   node_modules/@vitest/browser
npm error     peerOptional @vitest/browser@"1.6.0" from [email protected]
npm error   1 more (@vitest/ui)
npm error
npm error Could not resolve dependency:
npm error peer vitest@">=2.0.0" from [email protected]
npm error node_modules/vitest-fetch-mock
npm error   dev vitest-fetch-mock@"^0.3.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2024-07-26T21_36_19_168Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-07-26T21_36_19_168Z-debug-0.log

@renovate renovate bot force-pushed the renovate/typescript-projects branch from 745e781 to 4bd85fb Compare July 18, 2024 13:34
@renovate renovate bot requested a review from danieldietzler as a code owner July 18, 2024 13:34
@renovate renovate bot force-pushed the renovate/typescript-projects branch 11 times, most recently from 9136c89 to 7413f12 Compare July 22, 2024 21:45
@renovate renovate bot changed the title chore(deps): update typescript-projects fix(deps): update typescript-projects Jul 22, 2024
@renovate renovate bot force-pushed the renovate/typescript-projects branch 3 times, most recently from 8a7d5c9 to b5d92dd Compare July 24, 2024 03:47
@renovate renovate bot force-pushed the renovate/typescript-projects branch from b5d92dd to 125ef93 Compare July 25, 2024 19:15
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant