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 dev dependencies (non-major) #187

Merged
merged 1 commit into from Feb 10, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 4, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@tsconfig/recommended 1.0.1 -> 1.0.2 age adoption passing confidence
@types/react (source) 18.0.26 -> 18.0.27 age adoption passing confidence
@vitest/coverage-c8 0.26.3 -> 0.28.4 age adoption passing confidence
happy-dom 8.1.1 -> 8.2.6 age adoption passing confidence
lint-staged 13.1.0 -> 13.1.1 age adoption passing confidence
prettier (source) 2.8.1 -> 2.8.4 age adoption passing confidence
semantic-release 20.0.0 -> 20.1.0 age adoption passing confidence
typedoc (source) 0.23.23 -> 0.23.24 age adoption passing confidence
typescript (source) 4.9.4 -> 4.9.5 age adoption passing confidence
vitest 0.26.3 -> 0.28.4 age adoption passing confidence

Release Notes

vitest-dev/vitest

v0.28.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.28.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.28.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.28.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.28.0

Compare Source

   🚨 Breaking Changes
   🐞 Bug Fixes
    View changes on GitHub

v0.27.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.27.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.27.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.27.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
capricorn86/happy-dom

v8.2.6

Compare Source

v8.2.5

Compare Source

👷‍♂️ Patch fixes
  • Adds support for passing arguments to the callback in Window.setTimeout() and Window.setInterval(). (#​712)

v8.2.4

Compare Source

👷‍♂️ Patch fixes
  • Fixes handling of falsy values in CustomEvent.detail. (#​701)

v8.2.3

Compare Source

👷‍♂️ Patch fixes
  • Properly detect ShadowRoot boundary when constructing composed path in Event.composedPath(). (#​709)

v8.2.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes an issue in MutationObserver.disconnect() where it throws an error if MutationObserver.observe() has not been called first. (#​659)

v8.2.1

Compare Source

👷‍♂️ Patch fixes
  • Upgrades Jest dependencies to 29.4.0. (#​697)

v8.2.0

Compare Source

🎨 Features
  • Renames NodeUtility.nodeEquals() to NodeUtility.isEqualNode() to make it easier to find, as isEqualNode is how it is named in the spec. (#​656)

v8.1.5

Compare Source

👷‍♂️ Patch fixes
  • Renames the conditionalText property to conditionText in CSSContainerRule and CSSMediaRule according to spec. (#​692)
🎨 Features
  • Adds support for CSSSupportsRule (@supports) to the CSS parser. (#​693)

v8.1.4

Compare Source

👷‍♂️ Patch fixes
  • Returns the correct result when deleting a property in HTMLElement.dataset. (#​652)

v8.1.3

Compare Source

👷‍♂️ Patch fixes
  • Fixed infinite loop bug when there is no number before "n" in an ":nth-child" query selector. (#​686)

v8.1.2

Compare Source

👷‍♂️ Patch fixes
  • Adds support for Window.scrollX, Window.scrollY, Window.pageXOffset and Window.pageYOffset. (#​681)
okonet/lint-staged

v13.1.1

Compare Source

Bug Fixes
  • allow re-enabling --stash when using the --diff option (99390c3)
prettier/prettier

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;

v2.8.3

Compare Source

diff

Allow self-closing tags on custom elements (#​14170 by @​fisker)

See Angular v15.1.0 release note for details.

// Input
<app-test/>

// Prettier 2.8.2
SyntaxError: Only void and foreign elements can be self closed "app-test" (1:1)
> 1 | <app-test/>
    | ^^^^^^^^^
  2 |

// Prettier 2.8.3
<app-test />

v2.8.2

Compare Source

diff

Don't lowercase link references (#​13155 by @​DerekNonGeneric & @​fisker)
<!-- Input -->
We now don't strictly follow the release notes format suggested by [Keep a Changelog].

[Keep a Changelog]: https://example.com/

<!-- Prettier 2.8.1 -->
We now don't strictly follow the release notes format suggested by [Keep a Changelog].

[keep a changelog]: https://example.com/
<!--
^^^^^^^^^^^^^^^^^^ lowercased
-->

<!-- Prettier 2.8.2 -->
<Same as input>
Preserve self-closing tags (#​13691 by @​dcyriller)
{{! Input }}
<div />
<div></div>
<custom-component />
<custom-component></custom-component>
<i />
<i></i>
<Component />
<Component></Component>

{{! Prettier 2.8.1 }}
<div></div>
<div></div>
<custom-component></custom-component>
<custom-component></custom-component>
<i></i>
<i></i>
<Component />
<Component />

{{! Prettier 2.8.2 }}
<div />
<div></div>
<custom-component />
<custom-component></custom-component>
<i />
<i></i>
<Component />
<Component />
Allow custom "else if"-like blocks with block params (#​13930 by @​jamescdavis)

#​13507 added support for custom block keywords used with else, but failed to allow block params. This updates printer-glimmer to allow block params with custom "else if"-like blocks.

{{! Input }}
{{#when isAtWork as |work|}}
  Ship that
  {{work}}!
{{else when isReading as |book|}}
  You can finish
  {{book}}
  eventually...
{{else}}
  Go to bed!
{{/when}}

{{! Prettier 2.8.1 }}
{{#when isAtWork as |work|}}
  Ship that
  {{work}}!
{{else when isReading}}
  You can finish
  {{book}}
  eventually...
{{else}}
  Go to bed!
{{/when}}

{{! Prettier 2.8.2 }}
{{#when isAtWork as |work|}}
  Ship that
  {{work}}!
{{else when isReading as |book|}}
  You can finish
  {{book}}
  eventually...
{{else}}
  Go to bed!
{{/when}}
Preserve empty lines between nested SCSS maps (#​13931 by @​jneander)
/* Input */
$map: (
  'one': (
     'key': 'value',
  ),

  'two': (
     'key': 'value',
  ),
)

/* Prettier 2.8.1 */
$map: (
  'one': (
     'key': 'value',
  ),
  'two': (
     'key': 'value',
  ),
)

/* Prettier 2.8.2 */
$map: (
  'one': (
     'key': 'value',
  ),

  'two': (
     'key': 'value',
  ),
)
Fix missing parentheses when an expression statement starts with let[ (#​14000, #​14044 by @​fisker, @​thorn0)
// Input
(let[0] = 2);

// Prettier 2.8.1
let[0] = 2;

// Prettier 2.8.1 (second format)
SyntaxError: Unexpected token (1:5)
> 1 | let[0] = 2;
    |     ^
  2 |

// Prettier 2.8.2
(let)[0] = 2;
Fix semicolon duplicated at the end of LESS file (#​14007 by @​mvorisek)
// Input
@&#8203;variable: {
  field: something;
};

// Prettier 2.8.1
@&#8203;variable: {
  field: something;
}; ;

// Prettier 2.8.2
@&#8203;variable: {
  field: something;
};
Fix no space after unary minus when followed by opening parenthesis in LESS (#​14008 by @​mvorisek)
// Input
.unary_minus_single {
  margin: -(@&#8203;a);
}

.unary_minus_multi {
  margin: 0 -(@&#8203;a);
}

.binary_minus {
  margin: 0 - (@&#8203;a);
}

// Prettier 2.8.1
.unary_minus_single {
  margin: - (@&#8203;a);
}

.unary_minus_multi {
  margin: 0 - (@&#8203;a);
}

.binary_minus {
  margin: 0 - (@&#8203;a);
}

// Prettier 2.8.2
.unary_minus_single {
  margin: -(@&#8203;a);
}

.unary_minus_multi {
  margin: 0 -(@&#8203;a);
}

.binary_minus {
  margin: 0 - (@&#8203;a);
}
Do not change case of property name if inside a variable declaration in LESS (#​14034 by @​mvorisek)
// Input
@&#8203;var: {
  preserveCase: 0;
};

// Prettier 2.8.1
@&#8203;var: {
  preservecase: 0;
};

// Prettier 2.8.2
@&#8203;var: {
  preserveCase: 0;
};
Fix formatting for auto-accessors with comments (#​14038 by @​fisker)
// Input
class A {
  @&#8203;dec()
  // comment
  accessor b;
}

// Prettier 2.8.1
class A {
  @&#8203;dec()
  accessor // comment
  b;
}

// Prettier 2.8.1 (second format)
class A {
  @&#8203;dec()
  accessor; // comment
  b;
}

// Prettier 2.8.2
class A {
  @&#8203;dec()
  // comment
  accessor b;
}
Add parentheses for TSTypeQuery to improve readability (#​14042 by @​onishi-kohei)
// Input
a as (typeof node.children)[number]
a as (typeof node.children)[]
a as ((typeof node.children)[number])[]

// Prettier 2.8.1
a as typeof node.children[number];
a as typeof node.children[];
a as typeof node.children[number][];

// Prettier 2.8.2
a as (typeof node.children)[number];
a as (typeof node.children)[];
a as (typeof node.children)[number][];
Fix displacing of comments in default switch case (#​14047 by @​thorn0)

It was a regression in Prettier 2.6.0.

// Input
switch (state) {
  default:
    result = state; // no change
    break;
}

// Prettier 2.8.1
switch (state) {
  default: // no change
    result = state;
    break;
}

// Prettier 2.8.2
switch (state) {
  default:
    result = state; // no change
    break;
}
Support type annotations on auto accessors via babel-ts (#​14049 by @​sosukesuzuki)

The bug that @babel/parser cannot parse auto accessors with type annotations has been fixed. So we now support it via babel-ts parser.

class Foo {
  accessor prop: number;
}
Fix formatting of empty type parameters (#​14073 by @​fisker)
// Input
const foo: bar</* comment */> = () => baz;

// Prettier 2.8.1
Error: Comment "comment" was not printed. Please report this error!

// Prettier 2.8.2
const foo: bar</* comment */> = () => baz;
Add parentheses to head of ExpressionStatement instead of the whole statement (#​14077 by @​fisker)
// Input
({}).toString.call(foo) === "[object Array]"
  ? foo.forEach(iterateArray)
  : iterateObject(foo);

// Prettier 2.8.1
({}.toString.call(foo) === "[object Array]"
  ? foo.forEach(iterateArray)
  : iterateObject(foo));

// Prettier 2.8.2
({}).toString.call(foo.forEach) === "[object Array]"
  ? foo.forEach(iterateArray)
  : iterateObject(foo);
Fix comments after directive (#​14081 by @​fisker)
// Input
"use strict" /* comment */;

// Prettier 2.8.1 (with other js parsers except `babel`)
Error: Comment "comment" was not printed. Please report this error!

// Prettier 2.8.2
<Same as input>
Fix formatting for comments inside JSX attribute (#​14082 with by @​fisker)
// Input
function MyFunctionComponent() {
  <button label=/*old*/"new">button</button>
}

// Prettier 2.8.1
Error: Comment "old" was not printed. Please report this error!

// Prettier 2.8.2
function MyFunctionComponent() {
  <button label=/*old*/ "new">button</button>;
}
Quote numeric keys for json-stringify parser (#​14083 by @​fisker)
// Input
{0: 'value'}

// Prettier 2.8.1
{
  0: "value"
}

// Prettier 2.8.2
{
  "0": "value"
}
Fix removing commas from function arguments in maps (#​14089 by @​sosukesuzuki)
/* Input */
$foo: map-fn(
  (
    "#{prop}": inner-fn($first, $second),
  )
);

/* Prettier 2.8.1 */
$foo: map-fn(("#{prop}": inner-fn($first $second)));

/* Prettier 2.8.2 */
$foo: map-fn(
  (
    "#{prop}": inner-fn($first, $second),
  )
);
Do not insert space in LESS property access (#​14103 by @​fisker)
// Input
a {
  color: @&#8203;colors[@&#8203;white];
}

// Prettier 2.8.1
a {
  color: @&#8203;colors[ @&#8203;white];
}

// Prettier 2.8.2
<Same as input>
semantic-release/semantic-release

v20.1.0

Compare Source

Features

v20.0.4

Compare Source

Bug Fixes
  • windows: fixed issues preventing execution from windows (#​2672) (5df624c)

v20.0.3

Compare Source

Reverts

v20.0.2

Compare Source

Bug Fixes

v20.0.1

Compare Source

Bug Fixes
  • deps: update dependency cosmiconfig to v8 (f914c1e)
  • deps: update dependency hosted-git-info to v6 (c4da008)
TypeStrong/TypeDoc

v0.23.24

Compare Source

Bug Fixes
  • Fixed an issue where signature comments were preferred over property comments for indirectly created function-properties, #​2135.
  • Fixed symlink handling when expanding entry points, #​2130.
Thanks!
Microsoft/TypeScript

v4.9.5: TypeScript 4.9.5

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

Changes:


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.

@github-actions
Copy link

github-actions bot commented Jan 4, 2023

Size Change: 0 B

Total Size: 18.6 kB

ℹ️ View Unchanged
Filename Size
lib/app-check/index.js 59 B
lib/app-check/useAppCheckToken.js 421 B
lib/auth/index.js 75 B
lib/auth/useAuthIdToken.js 821 B
lib/auth/useAuthIdTokenResult.js 837 B
lib/auth/useAuthState.js 434 B
lib/common/index.js 48 B
lib/common/types.js 31 B
lib/database/index.js 70 B
lib/database/internal.js 158 B
lib/database/useObject.js 396 B
lib/database/useObjectOnce.js 455 B
lib/database/useObjectValue.js 693 B
lib/database/useObjectValueOnce.js 894 B
lib/firestore/index.js 116 B
lib/firestore/internal.js 613 B
lib/firestore/types.js 31 B
lib/firestore/useCollection.js 576 B
lib/firestore/useCollectionData.js 690 B
lib/firestore/useCollectionDataOnce.js 861 B
lib/firestore/useCollectionOnce.js 818 B
lib/firestore/useCountFromServer.js 841 B
lib/firestore/useDocument.js 601 B
lib/firestore/useDocumentData.js 689 B
lib/firestore/useDocumentDataOnce.js 848 B
lib/firestore/useDocumentOnce.js 562 B
lib/index.js 107 B
lib/internal/useIsMounted.js 185 B
lib/internal/useListen.js 491 B
lib/internal/useLoadingValue.js 351 B
lib/internal/useOnce.js 724 B
lib/internal/useStableValue.js 200 B
lib/messaging/index.js 60 B
lib/messaging/useMessagingToken.js 417 B
lib/storage/index.js 90 B
lib/storage/internal.js 142 B
lib/storage/useBlob.js 806 B
lib/storage/useBytes.js 771 B
lib/storage/useDownloadURL.js 395 B
lib/storage/useMetadata.js 388 B
lib/storage/useStream.js 813 B

compressed-size-action

@renovate renovate bot changed the title chore(deps): update dependency happy-dom to v8.1.2 chore(deps): update dependency happy-dom to v8.1.3 Jan 5, 2023
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from bac4c2b to d5ac5ff Compare January 7, 2023 13:36
@renovate renovate bot changed the title chore(deps): update dependency happy-dom to v8.1.3 chore(deps): update dev dependencies (non-major) Jan 7, 2023
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 7 times, most recently from 2b50492 to aab05e6 Compare January 14, 2023 04:56
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 6 times, most recently from 5326bcc to 6a4d972 Compare January 23, 2023 04:22
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 7 times, most recently from 5f78568 to e197d3e Compare January 28, 2023 13:16
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 5 times, most recently from 5ffa0cc to 874c793 Compare February 3, 2023 16:45
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from 9850397 to aff40a8 Compare February 7, 2023 07:29
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from aff40a8 to 1fde101 Compare February 8, 2023 06:13
@andipaetzold andipaetzold merged commit 1c0f48a into main Feb 10, 2023
@andipaetzold andipaetzold deleted the renovate/dev-dependencies branch February 10, 2023 22:36
@github-actions
Copy link

🎉 This PR is included in version 2.4.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@github-actions
Copy link

🎉 This PR is included in version 3.0.0-next.7 🎉

The release is available on:

Your semantic-release bot 📦🚀

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