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) #200

Merged
merged 1 commit into from Mar 22, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 25, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vitest/coverage-c8 0.28.5 -> 0.29.7 age adoption passing confidence
happy-dom 8.7.2 -> 8.9.0 age adoption passing confidence
lint-staged 13.1.2 -> 13.2.0 age adoption passing confidence
prettier (source) 2.8.4 -> 2.8.6 age adoption passing confidence
rimraf 4.1.2 -> 4.4.0 age adoption passing confidence
semantic-release 20.1.0 -> 20.1.3 age adoption passing confidence
typedoc (source) 0.23.25 -> 0.23.28 age adoption passing confidence
vitest 0.28.5 -> 0.29.7 age adoption passing confidence

Release Notes

vitest-dev/vitest

v0.29.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.29.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.29.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.0

Compare Source

This release makes some significant changes to how tests are running. If you were using --no-threads before, you might consider enabling --single-thread instead (because your tests are now running in child_process instead of a worker thread) or try our new performance optimization feature (discussed later). If you were relying on API that was not available inside a worker (like process.chdir(), you can now use this option.

One of the potential breaking bug fixes is that environments do not share the same global scope anymore if you run them with --no-isolate, --no-threads or --single-thread - you might need to update your setup files if you were relying on a global variable before.

If you had performance issues on large code bases before, try the new deps.experimentalOptimizer option instead of disabling threads. Feedback is welcome!

One of the breaking changes includes adding a link to snapshots inside snapshot files, meaning you will need to update all your snapshots.

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

v8.9.0

Compare Source

🎨 Features
  • Add support for the Audio class to Window. (#​778)

v8.8.0

Compare Source

🎨 Features
  • Adds support for Document.title. (#​785)

v8.7.6

Compare Source

👷‍♂️ Patch fixes
  • Fixes encoding error in XMLHttpRequest with responses other charsets than UTF-8. (#​783)

v8.7.5

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue with parsing conditional comments (e.g "<!--[if IE 8]>") in XMLParser. (#​519)

v8.7.4

Compare Source

👷‍♂️ Patch fixes
  • Add self equality check in the Node.contains() method. (#​776)

v8.7.3

Compare Source

👷‍♂️ Patch fixes
  • Adds support for Document.visibilityState and Document.hidden. (#​774)
okonet/lint-staged

v13.2.0

Compare Source

Bug Fixes
  • dependencies: replace colorette with chalk for better color support detection (f598725)
  • use index-based stash references for improved MSYS2 compatibility (#​1270) (60fcd99)
Features

v13.1.4

Compare Source

v13.1.3

Compare Source

prettier/prettier

v2.8.6

Compare Source

diff

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

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

// Prettier 2.8.6
class A {
  @&#8203;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 {
  @&#8203;(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @&#8203;myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @&#8203;(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} />;
isaacs/rimraf

v4.4.0

Compare Source

v4.3.1

Compare Source

v4.3.0

Compare Source

v4.2.0

Compare Source

v4.1.4

Compare Source

v4.1.3

Compare Source

semantic-release/semantic-release

v20.1.3

Compare Source

Bug Fixes
  • deps: update dependency execa to v7.1.1 (c38b53a)

v20.1.2

Compare Source

Bug Fixes
  • deps: update dependency cosmiconfig to v8.1.2 (fbede54)

v20.1.1

Compare Source

Bug Fixes
TypeStrong/TypeDoc

v0.23.28

Compare Source

Features
  • Added support for TypeScript 5.0, #​2201.
    • const type parameters.
    • JSDoc @overload tag.
    • JSDoc @satisfies tag.

v0.23.27

Compare Source

Features
  • Added --treatValidationWarningsAsErrors to treat only validation warnings as errors without treating all warnings as errors, #​2199.
Bug Fixes
  • Fixed a bug where optional properties were not appropriately marked as optional, #​2200.
  • Fixed shifted navigation pane on devices 1024px wide, #​2191.
  • Add missing @private and @protected tags to typedoc/tsdoc.json, #​2187.
Thanks!

v0.23.26

Compare Source

Features
  • Added Application.EVENT_VALIDATE_PROJECT event for plugins which implement custom validation, #​2183.
  • Plugins may now return an object from external symbol resolvers, #​2066.
  • Expose Comment.displayPartsToMarkdown on for themes overwriting the comment helper, #​2115.
Bug Fixes
  • Fix crash when converting export default undefined, #​2175.
  • Fix error in console when clicking on headings in the readme, #​2170.
  • TypeDoc will now ignore parameters of callback parameters when validating that all parameters have documentation, #​2154.
Thanks!

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 Feb 25, 2023

Size Change: 0 B

Total Size: 21.3 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 143 B
lib/firestore/internal.js 613 B
lib/firestore/types.js 31 B
lib/firestore/useCollection.js 71 B
lib/firestore/useCollectionData.js 77 B
lib/firestore/useCollectionDataOnce.js 82 B
lib/firestore/useCollectionOnce.js 77 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/firestore/useQueries.js 593 B
lib/firestore/useQueriesData.js 644 B
lib/firestore/useQuery.js 574 B
lib/firestore/useQueryData.js 688 B
lib/firestore/useQueryDataOnce.js 859 B
lib/firestore/useQueryOnce.js 816 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/useMultiListen.js 627 B
lib/internal/useMultiLoadingValue.js 503 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 force-pushed the renovate/dev-dependencies branch from 3701654 to 59ac62e Compare February 25, 2023 08:41
@renovate renovate bot changed the title chore(deps): update dependency happy-dom to v8.9.0 chore(deps): update dev dependencies (non-major) Feb 25, 2023
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 7 times, most recently from 30dc35b to aa0bb48 Compare March 4, 2023 05:21
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 3 times, most recently from 8cbba67 to 16f4305 Compare March 10, 2023 12:45
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 8 times, most recently from 638b033 to 0534aac Compare March 21, 2023 08:45
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 0534aac to 687f7f2 Compare March 22, 2023 19:54
@andipaetzold andipaetzold merged commit 739bd5d into main Mar 22, 2023
4 checks passed
@andipaetzold andipaetzold deleted the renovate/dev-dependencies branch March 22, 2023 23:36
@github-actions
Copy link

github-actions bot commented Jul 7, 2023

🎉 This PR is included in version 2.5.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@github-actions
Copy link

github-actions bot commented Jul 7, 2023

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

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