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

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 23, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) ^2.8.3 -> ^2.8.8 age adoption passing confidence
shiki (source) ^0.12.1 -> ^0.14.7 age adoption passing confidence

Release Notes

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

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;
shikijs/shiki (shiki)

v0.14.7

Compare Source

🙌 Contributions

v0.14.6

Compare Source

🚀 Features & Fixes
  • fix: update razor grammar source
  • fix: update kotlin language source
  • fix: update vue syntax path
🙌 Contributions

v0.14.5

Compare Source

🚀 Features & Fixes
  • feat: add gql as an alias of graphql
🙌 Contributions

v0.14.4

Compare Source

🚀 Features & Fixes
  • feat: add ziglang
  • fix: inconsistent git core.ignorecase causes marko.sample added/removed
  • feat: add mojo lang
  • feat: add mdc grammar
🙌 Contributions

v0.14.3

Compare Source

🚀 Features & Fixes
  • fix: exclude dark/light modern themes for now
  • fix: fix unzipping issue with unzipper. fix #​478
🙌 Contributions

v0.14.2

Compare Source

🚀 Features & Fixes
  • fix: improve changelog generation
  • fix: remove dlx to avoid playwright version mismatch
  • feat: generate changelog. fix #​223
🙌 Contributions

0.14.1 | 2023-02-09
0.14.0 | 2023-01-29
0.13.0 | 2023-01-27

Languages

Themes

  • Renamed material-<themeName> to material-theme-<themeName>. For example, material-ocean to material-theme-ocean. material-default is renamed to material-theme.

0.10.1

Full Changelog: v0.10.0...v0.10.1


0.2.7 | 2020-11-13
0.2.6 | 2020-09-28
  • Upgrade to onigasm 2.2.5.
  • Add Erlang grammar.
  • 🙌 Add Elixir grammar. #​95. Thanks to contribution from Sebastien Baudray.
  • 🙌 Fix wrong escape sequence in vuepress plugin. #​93. Thanks to contribution from Yu Zhang.
0.2.5 | 2020-09-17
  • Reduce dependency size (shiki-themes is 47M). #​94.
0.2.4 | 2020-09-13
  • Fix RangeError: Invalid array length in vuepress-plugin-shiki.
  • 🙌 Wrap line in <span class='line'></span>. #​76. Thanks to contribution from Christoph Werner.
0.2.3 | 2020-09-08
  • Add 文言 language. #​88.
  • Add slack-theme-dark-mode and slack-theme-ochin themes. Thanks to contribution from Christoph Werner. #​78.
0.2.2 | 2020-08-26
  • Fix dark-plus syntax highlighting for uncolored white text.
0.2.1 | 2020-08-24
  • Allow custom languages for vuepress. #​80.
  • Fix php syntax highlighting. #​21.
  • Add jinja-html language, which embeds jinja language. #​24.
  • Remove vue-html language. Either use vue or html language.
0.2.0 | 2020-08-24
  • Normalize all theme names to kebab-case.
  • Add GitHub light/dark themes.
  • Remove less popular themes.
  • Add hlsl, asm (x86 Assembly), m (Matlab), sas, d, dart, plsql, logo, , pas (Object Pascal/Delphi), cobol, kt (Kotlin), scala, abap, julia, scheme, prolog, ada, lisp, apex, fortran, haskell, hcl, hack, awk, as (ActionScript), tcl, ocaml, viml, puppet, jsonnet, smalltalk, cr (Crystal), wat (WASM), nix, elm, purescript and svelte languages.
  • Add pug language and make jade an alias of it.
  • Use GitHub workflow to update grammars periodically. #​72.
  • Use GitHub workflow to update themes periodically. #​71.
  • Use theme foreground color when color of token is undefined. #​27.
  • SVG Renderer. #​2.
  • Fix HTML escaping. #​26 and #​28. Thanks to contribution from @​jackens.
  • 🙌 Add an option to skip generating the explanation text. #​52. Thanks to contribution from Gerrit Birkeland.
  • 🙌 Improve performance by avoiding some unnecessary string copies. #​51. Thanks to contribution from Gerrit Birkeland.
  • 🙌 Allow loading custom tmLanguage. #​10 and #​49. Thanks to contribution from Orta Therox and @​pngwn.
  • 🙌 Update Java grammar. #​36 and #​37. Thanks to contribution from @​0xflotus.
0.1.7 | 2020-04-28
  • Update to latest Dark+/Light+ theme from VS Code.
0.1.6 | 2019-09-19
0.1.5 | 2019-09-09
  • Begin to keep a changelog. #​7.
  • Accept plaintext, text and txt as lang. Will return code as it is. #​16.
  • Add jsonc language. #​18.
  • Add csharp language. #​14.
  • Add md as an alias for markdown.
  • Add zsh as an alias for bash.
  • Add yml as an alias for yaml.
  • 🙌 Use json5 for parsing theme as JSONC. #​11. Thanks to contribution from Wes Bos.

v0.14.1

Compare Source

v0.14.0

Compare Source

v0.13.0

Compare Source

Languages

Themes

  • Renamed material-<themeName> to material-theme-<themeName>. For example, material-ocean to material-theme-ocean. material-default is renamed to material-theme.


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.


  • If you want to rebase/retry this PR, check this box

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

@netlify
Copy link

netlify bot commented Jan 23, 2023

Deploy Preview for pytorch-ignite ready!

Name Link
🔨 Latest commit cbe7bfe
🔍 Latest deploy log https://app.netlify.com/sites/pytorch-ignite/deploys/65fef75781e73500096d8f6c
😎 Deploy Preview https://deploy-preview-171--pytorch-ignite.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot changed the title chore(deps): update dependency jsdom to ^21.1.0 chore(deps): update all non-major dependencies Jan 28, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 72292cf to 5efad2b Compare February 3, 2023 10:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from c6ff9bd to 6b50233 Compare February 14, 2023 21:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ce68b75 to 04714e1 Compare March 12, 2023 16:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from eae232f to 575eed6 Compare March 24, 2023 08:51
vfdev-5
vfdev-5 previously approved these changes Mar 24, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 575eed6 to 08b16c3 Compare March 24, 2023 10:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5e59738 to 91b2f68 Compare April 28, 2023 18:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 91b2f68 to f76797b Compare May 1, 2023 16:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f76797b to 56eb3ba Compare May 17, 2023 22:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b68abd5 to 16dd915 Compare May 25, 2023 08:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 16dd915 to b3bfd38 Compare June 25, 2023 20:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b6cfef1 to 15b2857 Compare August 19, 2023 16:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 15b2857 to 015a39d Compare August 31, 2023 16:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 24c8b96 to 563d541 Compare September 24, 2023 21:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 963effb to ba4fbdb Compare October 3, 2023 08:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d862207 to 4d4b9ba Compare October 5, 2023 09:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 93d64b3 to 113d999 Compare November 29, 2023 10:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 10ef6b0 to cbe7bfe Compare March 23, 2024 15:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant