magne4000 / vite-plugin-vercel

Vercel adapter for vite
https://test-vite-vercel-plugin.vercel.app
98 stars 14 forks source link

chore(deps): update all non-major dependencies #91

Closed renovate[bot] closed 3 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@typescript-eslint/eslint-plugin (source) ^7.15.0 -> ^7.16.0 age adoption passing confidence
@typescript-eslint/parser (source) ^7.15.0 -> ^7.16.0 age adoption passing confidence
@vercel/build-utils (source) ^8.3.0 -> ^8.3.1 age adoption passing confidence
@vercel/nft ^0.27.2 -> ^0.27.3 age adoption passing confidence
@vercel/node (source) ^3.2.1 -> ^3.2.2 age adoption passing confidence
prettier (source) ^3.3.2 -> ^3.3.3 age adoption passing confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`v7.16.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7160-2024-07-08) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.15.0...v7.16.0) ##### 🚀 Features - **rule-tester:** stricter rule test validations - **eslint-plugin:** \[no-unnecessary-parameter-property-assignment] add new rule - **eslint-plugin:** add support for nested namespaces to unsafe-member-access - **eslint-plugin:** \[no-floating-promises] add checkThenables option ##### 🩹 Fixes - **deps:** update dependency [@​eslint-community/regexpp](https://togithub.com/eslint-community/regexpp) to v4.11.0 - **eslint-plugin:** \[no-floating-promises] add `suggestions` to tests from [#​9263](https://togithub.com/typescript-eslint/typescript-eslint/issues/9263) `checkThenables` - **website:** react key error on internal pages of website - **eslint-plugin:** \[restrict-template-expressions] don't report tuples if `allowArray` option is enabled ##### ❤️ Thank You - Abraham Guo - auvred - Josh Goldberg ✨ - Juan Sanchez - Vinccool96 - YeonJuan - Yukihiro Hasegawa You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typescript-eslint/typescript-eslint (@​typescript-eslint/parser) ### [`v7.16.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7160-2024-07-08) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.15.0...v7.16.0) ##### 🩹 Fixes - **deps:** update dependency [@​eslint-community/regexpp](https://togithub.com/eslint-community/regexpp) to v4.11.0 - **website:** react key error on internal pages of website ##### ❤️ Thank You - Abraham Guo - auvred - Josh Goldberg ✨ - Juan Sanchez - Vinccool96 - YeonJuan - Yukihiro Hasegawa You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
vercel/vercel (@​vercel/build-utils) ### [`v8.3.1`](https://togithub.com/vercel/vercel/releases/tag/%40vercel/build-utils%408.3.1) [Compare Source](https://togithub.com/vercel/vercel/compare/@vercel/build-utils@8.3.0...@vercel/build-utils@8.3.1) ##### Patch Changes - Add build callback handling ([#​11807](https://togithub.com/vercel/vercel/pull/11807))
vercel/nft (@​vercel/nft) ### [`v0.27.3`](https://togithub.com/vercel/nft/releases/tag/0.27.3) [Compare Source](https://togithub.com/vercel/nft/compare/0.27.2...0.27.3) ##### Bug Fixes - Handle the scenario where a package.json#browser field could be `false` ([#​427](https://togithub.com/vercel/nft/issues/427)) ([099608f](https://togithub.com/vercel/nft/commit/099608f28ba1af5b8f6f98ac5ab05261ad45b42f)), closes [/github.com/inspect-js/object-inspect/blob/main/package.json#L82](https://togithub.com//github.com/inspect-js/object-inspect/blob/main/package.json/issues/L82) [/github.com/inspect-js/object-inspect/blob/main/index.js#L68-L70](https://togithub.com//github.com/inspect-js/object-inspect/blob/main/index.js/issues/L68-L70)
vercel/vercel (@​vercel/node) ### [`v3.2.2`](https://togithub.com/vercel/vercel/blob/HEAD/packages/node/CHANGELOG.md#322) [Compare Source](https://togithub.com/vercel/vercel/compare/@vercel/node@3.2.1...@vercel/node@3.2.2) ##### Patch Changes - Updated dependencies \[[`fc82c3dac`](https://togithub.com/vercel/vercel/commit/fc82c3dac762c38ee74d6586c9bfe2f402b3fe57)]: - [@​vercel/build-utils](https://togithub.com/vercel/build-utils)[@​8](https://togithub.com/8).3.1
prettier/prettier (prettier) ### [`v3.3.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#333) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) [diff](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) ##### Add parentheses for nullish coalescing in ternary ([#​16391](https://togithub.com/prettier/prettier/pull/16391) by [@​cdignam-segment](https://togithub.com/cdignam-segment)) This change adds clarity to operator precedence. ```js // 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](https://togithub.com/prettier/prettier/pull/16458) by [@​y-schneider](https://togithub.com/y-schneider)) Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5. ```ts // 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](https://togithub.com/prettier/prettier/pull/16474) by [@​sosukesuzuki](https://togithub.com/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: ```html @​let name = 'Frodo';

Dashboard for {{name}}

Hello, {{name}} ``` For more details, please refer to the excellent blog post by the Angular Team: [Introducing @​let in Angular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f). We also appreciate the Angular Team for kindly answering our questions to implement this feature.

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (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.



This PR has been generated by Mend Renovate. View repository job log here.

vercel[bot] commented 3 months ago

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

Name Status Preview Updated (UTC)
test-vite-vercel-plugin ✅ Ready (Inspect) Visit Preview Jul 15, 2024 2:04am