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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 2, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) 18.14.2 -> 18.17.14 age adoption passing confidence
@types/sortablejs (source) 1.15.0 -> 1.15.2 age adoption passing confidence
@vitejs/plugin-vue (source) 4.0.0 -> 4.3.4 age adoption passing confidence
prettier (source) 2.8.4 -> 2.8.8 age adoption passing confidence
terser (source) 5.16.5 -> 5.19.4 age adoption passing confidence
vite (source) 4.1.4 -> 4.4.9 age adoption passing confidence
vue-tsc 1.2.0 -> 1.8.8 age adoption passing confidence

Release Notes

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v4.3.4

Compare Source

v4.3.3

Compare Source

v4.3.2

Compare Source

v4.3.1

Compare Source

  • fix: revert "fix(plugin-vue): distinguish HMR and transform descriptor (#​227)" (0c28448), closes #​227

v4.3.0

Compare Source

v4.2.3

Compare Source

  • fix(types): widen allowed script options for 3.3 features (3ac08e4)

v4.2.2

Compare Source

  • fix: ignore generic attribute when generating script import (3170af1)
  • chore: bump vite (ffe74e5)
  • chore: bump vue version (799d875)

v4.2.1

Compare Source

v4.2.0

Compare Source

  • feat: support 3.3 imported types in SFC macros (c891652)

v4.1.0

Compare Source

  • fix: avoid resolving to 2.7 compiler-sfc (cf36b3e)
prettier/prettier (prettier)

v2.8.8

Compare Source

This version is a republished version of v2.8.7.
A bad version was accidentally published and it can't be unpublished, apologies for the churn.

v2.8.7

Compare Source

diff

Allow multiple decorators on same getter/setter (#​14584 by @​fisker)
// Input
class A {
  @​decorator()
  get foo () {}
  
  @​decorator()
  set foo (value) {}
}

// Prettier 2.8.6
SyntaxError: Decorators cannot be applied to multiple get/set accessors of the same name. (5:3)
  3 |   get foo () {}
  4 |   
> 5 |   @​decorator()
    |   ^^^^^^^^^^^^
  6 |   set foo (value) {}
  7 | }

// Prettier 2.8.7
class A {
  @​decorator()
  get foo() {}

  @​decorator()
  set foo(value) {}
}

v2.8.6

Compare Source

diff

Allow decorators on private members and class expressions (#​14548 by @​fisker)
// Input
class A {
  @​decorator()
  #privateMethod () {}
}

// Prettier 2.8.5
SyntaxError: Decorators are not valid here. (2:3)
  1 | class A {
> 2 |   @​decorator()
    |   ^^^^^^^^^^^^
  3 |   #privateMethod () {}
  4 | }

// Prettier 2.8.6
class A {
  @​decorator()
  #privateMethod() {}
}

v2.8.5

Compare Source

diff

Support TypeScript 5.0 (#​14391 by @​fisker, #​13819 by @​fisker, @​sosukesuzuki)

TypeScript 5.0 introduces two new syntactic features:

  • const modifiers for type parameters
  • export type * declarations
Add missing parentheses for decorator (#​14393 by @​fisker)
// Input
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @​myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}
Add parentheses for TypeofTypeAnnotation to improve readability (#​14458 by @​fisker)
// Input
type A = (typeof node.children)[];

// Prettier 2.8.4
type A = typeof node.children[];

// Prettier 2.8.5
type A = (typeof node.children)[];
Support max_line_length=off when parsing .editorconfig (#​14516 by @​josephfrazier)

If an .editorconfig file is in your project and it sets max_line_length=off for the file you're formatting,
it will be interpreted as a printWidth of Infinity rather than being ignored
(which previously resulted in the default printWidth of 80 being applied, if not overridden by Prettier-specific configuration).

<!-- Input -->
<div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/>

<!-- Prettier 2.8.4 -->
<div
  className="HelloWorld"
  title={`You are visitor number ${num}`}
  onMouseOver={onMouseOver}
/>;

<!-- Prettier 2.8.5 -->
<div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />;
terser/terser (terser)

v5.19.4

Compare Source

  • Prevent creating very deeply nested ternaries from a long list of if..return
  • Prevent inlining classes into other functions, to avoid constructors being compared.

v5.19.3

Compare Source

  • Fix side effect detection of optional?.chains.
  • Add roundRect to domprops.js (#​1426)

v5.19.2

Compare Source

  • fix performance hit from avoiding HTML comments in the output

v5.19.1

Compare Source

  • Better avoid outputting </script> and HTML comments.
  • Fix unused variables in class static blocks not being dropped correctly.
  • Fix sourcemap names of methods that are async or static

v5.19.0

Compare Source

  • Allow /*@&#8203;__MANGLE_PROP__*/ annotation in object.property, in addition to property declarations.

v5.18.2

Compare Source

  • Stop using recursion in hoisted defuns fix.

v5.18.1

Compare Source

  • Fix major performance issue caused by hoisted defuns' scopes bugfix.

v5.18.0

Compare Source

  • Add new /*@&#8203;__MANGLE_PROP__*/ annotation, to mark properties that should be mangled.

v5.17.7

Compare Source

  • Update some dependencies
  • Add consistent sorting for v RegExp flag
  • Add inert DOM attribute to domprops

v5.17.6

Compare Source

  • Fixes to mozilla AST input and output, for class properties, private properties and static blocks
  • Fix outputting a shorthand property in quotes when safari10 and ecma=2015 options are enabled
  • configurable and enumerable, used in Object.defineProperty, added to domprops (#​1393)

v5.17.5

Compare Source

  • Take into account the non-deferred bits of a class, such as static properties, while dropping unused code.

v5.17.4

Compare Source

  • Fix crash when trying to negate a class (!class{})
  • Avoid outputting comments between yield/await and its argument
  • Fix detection of left-hand-side of assignment, to avoid optimizing it like any other expression in some edge cases

v5.17.3

Compare Source

  • Fix issue with trimming a static class property's contents accessing the class as this.

v5.17.2

Compare Source

  • Be less conservative when detecting use-before-definition of var in hoisted functions.
  • Support unusual (but perfectly valid) initializers of for-in and for-of loops.
  • Fix issue where hoisted function would be dropped if it was after a continue statement

v5.17.1

Compare Source

  • Fix evaluating .length when the source array might've been mutated

v5.17.0

Compare Source

  • Drop vestigial = undefined default argument in IIFE calls (#​1366)
  • Evaluate known arrays' .length property when statically determinable
  • Add @__KEY__ annotation to mangle string literals (#​1365)

v5.16.9

Compare Source

  • Fix parentheses in output of optional chains (a?.b) (#​1374)
  • More documentation on source maps (#​1368)
  • New lhs_constants option, allowing to stop Terser from swapping comparison operands (#​1361)

v5.16.8

Compare Source

  • Become even less conservative around function definitions for reduce_vars
  • Fix parsing context of import.meta expressions such that method calls are allowed

v5.16.6

Compare Source

  • Become less conservative with analyzing function definitions for reduce_vars
  • Parse import.meta as a real AST node and not an object.property
vitejs/vite (vite)

v4.4.9

Compare Source

v4.4.8

Compare Source

v4.4.7

Compare Source

v4.4.6

Compare Source

v4.4.5

Compare Source

v4.4.4

Compare Source

v4.4.3

Compare Source

v4.4.2

Compare Source

v4.4.1

Compare Source

v4.4.0

Compare Source

Experimental support for Lightning CSS

Starting from Vite 4.4, there is experimental support for Lightning CSS. You can opt into it by adding css.transformer: 'lightningcss' to your config file and install the optional lightningcss dev dependency. If enabled, CSS files will be processed by Lightning CSS instead of PostCSS.

Lightning CSS can also be used as the CSS minifier with build.cssMinify: 'lightningcss'.

See beta docs at the Lighting CSS guide.

esbuild 0.18 update

esbuild 0.18 contains backwards-incompatible changes to esbuild's handling of tsconfig.json files. We think they shouldn't affect Vite users, you can review #​13525 for more information.

Templates for Solid and Qwik in create-vite

New starter templates have been added to create-vite for Solid and Qwik. Try them online at vite.new/solid-ts and vite.new/qwik-ts.

Korean Translation

Vite's docs are now translated to Korean, available at ko.vitejs.dev.

Features
Bug Fixes
Previous Changelogs
4.4.0-beta.4 (2023-07-03)

See 4.4.0-beta.4 changelog

4.4.0-beta.3 (2023-06-25)

See 4.4.0-beta.3 changelog

4.4.0-beta.2 (2023-06-22)

See 4.4.0-beta.2 changelog

4.4.0-beta.1 (2023-06-21)

See 4.4.0-beta.1 changelog

4.4.0-beta.0 (2023-06-20)

See 4.4.0-beta.0 changelog

v4.3.9

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 Mar 2, 2023

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

Name Status Preview Comments Updated (UTC)
demo ❌ Failed (Inspect) Sep 4, 2023 2:57pm
sortablejs-vue3 ❌ Failed (Inspect) Sep 4, 2023 2:57pm

@renovate renovate bot changed the title Update dependency @types/node to v18.14.3 Update dependency @types/node to v18.14.4 Mar 2, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 990cb3e to f6b8450 Compare March 2, 2023 12:02
@renovate renovate bot changed the title Update dependency @types/node to v18.14.4 Update dependency @types/node to v18.14.5 Mar 3, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f6b8450 to 2ea52a3 Compare March 3, 2023 05:29
@renovate renovate bot changed the title Update dependency @types/node to v18.14.5 Update dependency @types/node to v18.14.6 Mar 4, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2ea52a3 to 8d0eb45 Compare March 4, 2023 01:30
@renovate renovate bot changed the title Update dependency @types/node to v18.14.6 Update all non-major dependencies Mar 9, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8d0eb45 to b96f7f6 Compare March 9, 2023 16:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b96f7f6 to 678fca1 Compare March 9, 2023 21:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 678fca1 to 516a362 Compare March 13, 2023 05:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 516a362 to ebbd8e0 Compare March 13, 2023 22:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ebbd8e0 to 12d586a Compare March 14, 2023 09:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 12d586a to 760190a Compare March 15, 2023 07:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 760190a to dea2268 Compare March 16, 2023 13:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dea2268 to 487b7ce Compare March 20, 2023 09:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 487b7ce to 273bf70 Compare March 20, 2023 13:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9e72bc8 to defcd64 Compare August 23, 2023 21:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from defcd64 to 1d2a311 Compare August 25, 2023 01:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1d2a311 to e422a5f Compare August 28, 2023 02:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e422a5f to 68aebe5 Compare August 28, 2023 20:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 68aebe5 to 5fe4c19 Compare August 29, 2023 09:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5fe4c19 to 9c47787 Compare August 29, 2023 16:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants