sortablejs-vue3 icon indicating copy to clipboard operation
sortablejs-vue3 copied to clipboard

Update all non-major dependencies

Open renovate[bot] opened this issue 2 years ago • 21 comments

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.

renovate[bot] avatar Mar 02 '23 06:03 renovate[bot]

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

vercel[bot] avatar Mar 02 '23 06:03 vercel[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 01 '23 12:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 10 '23 18:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 18 '23 09:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 18 '23 16:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 19 '23 02:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 20 '23 00:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 20 '23 15:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 20 '23 19:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 21 '23 05:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 21 '23 11:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 22 '23 19:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 22 '23 23:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 23 '23 07:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 23 '23 11:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 25 '23 13:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 25 '23 19:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 26 '23 01:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 26 '23 09:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 26 '23 18:04 github-actions[bot]

📦 Bundle size: The bundle size increased by 36 bytes.

github-actions[bot] avatar Apr 27 '23 00:04 github-actions[bot]