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

Merged
merged 1 commit into from
Apr 17, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 8, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 17.4.2 -> 17.6.1 age adoption passing confidence
@commitlint/config-conventional (source) 17.4.2 -> 17.6.1 age adoption passing confidence
@trivago/prettier-plugin-sort-imports 4.0.0 -> 4.1.1 age adoption passing confidence
pkg 5.8.0 -> 5.8.1 age adoption passing confidence
pkgroll 1.8.2 -> 1.9.0 age adoption passing confidence
prettier (source) 2.8.3 -> 2.8.7 age adoption passing confidence
ts-jest (source) 29.0.5 -> 29.1.0 age adoption passing confidence
tsd 0.25.0 -> 0.28.1 age adoption passing confidence
tsx 3.12.3 -> 3.12.6 age adoption passing confidence
vite (source) 4.1.1 -> 4.2.1 age adoption passing confidence
vitest 0.28.4 -> 0.30.1 age adoption passing confidence
xo 0.53.1 -> 0.54.1 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v17.6.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v17.6.0

Compare Source

Note: Version bump only for package @​commitlint/cli

17.5.1 (2023-03-28)

Note: Version bump only for package @​commitlint/cli

v17.5.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v17.5.0

Compare Source

Note: Version bump only for package @​commitlint/cli

17.4.4 (2023-02-17)

Note: Version bump only for package @​commitlint/cli

17.4.3 (2023-02-13)

Note: Version bump only for package @​commitlint/cli

17.4.2 (2023-01-12)

Note: Version bump only for package @​commitlint/cli

17.4.1 (2023-01-09)

Note: Version bump only for package @​commitlint/cli

v17.4.4

Compare Source

Note: Version bump only for package @​commitlint/cli

v17.4.3

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v17.6.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v17.6.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

17.4.4 (2023-02-17)

Note: Version bump only for package @​commitlint/config-conventional

17.4.3 (2023-02-13)

Note: Version bump only for package @​commitlint/config-conventional

17.4.2 (2023-01-12)

Note: Version bump only for package @​commitlint/config-conventional

v17.4.4

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v17.4.3

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

trivago/prettier-plugin-sort-imports

v4.1.1

Compare Source

Revert

v4.1.0

Compare Source

New features
vercel/pkg

v5.8.1

Compare Source

Patches
  • Producer: properly call "prebuild-install" if N-API is used: dd9de59
  • Chore: clean up obsolete eslint disable comments: #​1760
  • Chore: add prettier check in linting step: #​1764
  • Chore: separate individual test scripts: #​1759
  • Chore: use @types/babel__generator package: #​1755
  • Chore: remove unused entry: #​1766
  • Chore: upgrade actions runners: #​1767
  • Style: fix typo in test-99-#​1192/main.js: #​1790
  • Chore: bump prebuild-install@7.1.1: #​1788
  • Fix: add force flag to codesign to avoid already signed error: #​1756
Credits

Huge thanks to @​ignatiusmb, @​eltociear, @​PraveenAnaparthi, and @​brianunlam for helping!

privatenumber/pkgroll

v1.9.0

Compare Source

Features
  • warn when [@types](https://togithub.com/types) is in devDeps but couterpart is in deps (#​31) (4a7ec03)
prettier/prettier

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} />;

v2.8.4

Compare Source

diff

Fix leading comments in mapped types with readonly (#​13427 by @​thorn0, @​sosukesuzuki)
// Input
type Type = {
  // comment
  readonly [key in Foo];
};

// Prettier 2.8.3
type Type = {
  readonly // comment
  [key in Foo];
};

// Prettier 2.8.4
type Type = {
  // comment
  readonly [key in Foo];
};
Group params in opening block statements (#​14067 by @​jamescdavis)

This is a follow-up to #​13930 to establish wrapping consistency between opening block statements and else blocks by
grouping params in opening blocks. This causes params to break to a new line together and not be split across lines
unless the length of params exceeds the print width. This also updates the else block wrapping to behave exactly the
same as opening blocks.

{{! Input }}
{{#block param param param param param param param param param param as |blockParam|}}
  Hello
{{else block param param param param param param param param param param as |blockParam|}}
  There
{{/block}}

{{! Prettier 2.8.3 }}
{{#block
  param
  param
  param
  param
  param
  param
  param
  param
  param
  param
  as |blockParam|
}}
  Hello
{{else block param
param
param
param
param
param
param
param
param
param}}
  There
{{/block}}

{{! Prettier 2.8.4 }}
{{#block
  param param param param param param param param param param
  as |blockParam|
}}
  Hello
{{else block
  param param param param param param param param param param
  as |blockParam|
}}
  There
{{/block}}
Ignore files in .sl/ (#​14206 by @​bolinfest)

In Sapling SCM, .sl/ is the folder where it stores its state, analogous to .git/ in Git. It should be ignored in Prettier like the other SCM folders.

Recognize @satisfies in Closure-style type casts (#​14262 by @​fisker)
// Input
const a = /** @&#8203;satisfies {Record<string, string>} */ ({hello: 1337});
const b = /** @&#8203;type {Record<string, string>} */ ({hello: 1337});

// Prettier 2.8.3
const a = /** @&#8203;satisfies {Record<string, string>} */ { hello: 1337 };
const b = /** @&#8203;type {Record<string, string>} */ ({ hello: 1337 });

// Prettier 2.8.4
const a = /** @&#8203;satisfies {Record<string, string>} */ ({hello: 1337});
const b = /** @&#8203;type {Record<string, string>} */ ({hello: 1337});
Fix parens in inferred function return types with extends (#​14279 by @​fisker)
// Input
type Foo<T> = T extends ((a) => a is infer R extends string) ? R : never;

// Prettier 2.8.3 (First format)
type Foo<T> = T extends (a) => a is infer R extends string ? R : never;

// Prettier 2.8.3 (Second format)
SyntaxError: '?' expected. 

// Prettier 2.8.4
type Foo<T> = T extends ((a) => a is infer R extends string) ? R : never;
kulshekhar/ts-jest

v29.1.0

Compare Source

Features

29.0.5 (2023-01-13)

Reverts

29.0.4 (2023-01-10)

Bug Fixes

29.0.3 (2022-09-28)

Bug Fixes
Features
  • add useESM option to pathsToModuleNameMapper options (#​3792) (eabe906)

29.0.2 (2022-09-23)

Bug Fixes

29.0.2 (2022-09-22)

Bug Fixes

29.0.1 (2022-09-13)

Bug Fixes
  • legacy: include existing globals config in cached config (#​3803) (e79be47)
Features
  • add typings for ts-jest options via transform config (#​3805) (664b0f2)
SamVerschueren/tsd

v0.28.1

Compare Source

v0.28.0

Compare Source

v0.27.0

Compare Source

v0.26.1

Compare Source

v0.26.0

Compare Source

esbuild-kit/tsx

v3.12.6

Compare Source

Bug Fixes
  • repl: suppress autocomplete transformation errors (#​205) (8e1958d)

v3.12.5

Compare Source

Bug Fixes
  • watch: ignore hidden files (afa3c78)

v3.12.4

Compare Source

Bug Fixes
vitejs/vite

v4.2.1

Compare Source

v4.2.0

Compare Source

Vite 4.2 is out!

Support env variables replacement in HTML files

Vite now supports replacing env variables in HTML files. Any properties in import.meta.env can be used in HTML files with a special %ENV_NAME% syntax:

<h1>Vite is running in %MODE%</h1>
<p>Using data from %VITE_API_URL%</p>
Sourcemaps improvements

The Chrome Dev Tools team has been working to improve the DX of Vite and Vite-powered frameworks in the dev tools. Vite 4.2 brings an improved experience and tools for framework authors to hide 3rd party code and build artifacts from the user from console log traces using server.sourcemapIgnoreList and build.rollupOptions.output.sourcemapIgnoreList.

ESM subpath imports

Vite 4.2 now supports subpath imports, thanks to @​lukeed05's resolve.exports library.

TypeScript 5 support

Vite 4.2 also supports TypeScript 5's tsconfig extends array format, thanks to tsconfck.

esbuild 0.17

esbuild v0.17.0 improved the design of its incremental, watch, and serve APIs. Check out #​11908 for the rationale of why we didn't consider the backward-incompatible changes breaking for our use cases. The updated esbuild design now allows Vite to properly cancel in-fly builds and improve server restarts.

Use Rollup types from the vite package

Expose Rollup types as a namespace. This is helpful to avoid type conflicts because of different versions of Rollup types in environments like vite-ecosystem-ci (#​12316).

import type { Rollup } from 'vite'
Português Docs Translation

The Vite documentation is now translated to Português at pt.vitejs.dev thanks to Nazaré Da Piedade .

Features
Bug Fixes
Previous Changelogs
4.2.0-beta.2 (2023-03-13)

See 4.2.0-beta.2 changelog

4.2.0-beta.1 (2023-03-07)

See 4.2.0-beta.1 changelog

4.2.0-beta.0 (2023-02-27)

See 4.2.0-beta.0 changelog

v4.1.4

Compare Source

v4.1.3

Compare Source

v4.1.2

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

@changeset-bot
Copy link

changeset-bot bot commented Feb 8, 2023

⚠️ No Changeset found

Latest commit: d19e358

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@socket-security
Copy link

socket-security bot commented Feb 8, 2023

New dependency changes detected. Learn more about Socket for GitHub ↗︎


👍 No new dependency issues detected in pull request

Bot Commands

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of package-name@version specifiers. e.g. @SocketSecurity ignore foo@1.0.0 bar@* or ignore all packages with @SocketSecurity ignore-all

⚠️ Please accept the latest app permissions to ensure bot commands work properly. Accept the new permissions here.

Pull request alert summary
Issue Status
Install scripts ✅ 0 issues
Native code ✅ 0 issues
Bin script shell injection ✅ 0 issues
Unresolved require ✅ 0 issues
Invalid package.json ✅ 0 issues
HTTP dependency ✅ 0 issues
Git dependency ✅ 0 issues
Potential typo squat ✅ 0 issues
Known Malware ✅ 0 issues
Telemetry ✅ 0 issues
Protestware/Troll package ✅ 0 issues

📊 Modified Dependency Overview:

⬆️ Updated Package Version Diff Added Capability Access +/- Transitive Count Publisher
pkgroll@1.9.0 1.8.2...1.9.0 environment +35/-14 hirokiosame
xo@0.54.1 0.53.1...0.54.1 None +19/-20 sindresorhus
tsx@3.12.6 3.12.3...3.12.6 None +0/-0 hirokiosame
pkg@5.8.1 5.8.0...5.8.1 None +6/-23 leerobinson
ts-jest@29.1.0 29.0.5...29.1.0 None +0/-21 kul
tsd@0.28.1 0.25.0...0.28.1 None +2/-2 sindresorhus
@trivago/prettier-plugin-sort-imports@4.1.1 4.0.0...4.1.1 None +0/-32 ayusharma

🚮 Removed packages: @commitlint/cli@17.4.2, @commitlint/config-conventional@17.4.2, prettier@2.8.3, vitest@0.28.4

@renovate renovate bot changed the title Update dependency prettier to v2.8.4 Update all non-major dependencies Feb 13, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 334573d to 05bb4bc Compare February 17, 2023 17:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 968d70d to 7820dbe Compare February 25, 2023 14:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b818552 to eba5d98 Compare March 7, 2023 13:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7d92b98 to cf1d487 Compare March 13, 2023 07:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 55f09e0 to 24d4897 Compare March 21, 2023 08:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 88220fd to feba1de Compare March 28, 2023 18:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 56f1179 to b32c523 Compare April 5, 2023 05:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b32c523 to d19e358 Compare April 17, 2023 10:36
@renovate renovate bot merged commit 0ceb43f into main Apr 17, 2023
5 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch April 17, 2023 15:17
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