Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.

chore(deps): update frontend non-major dependencies #267

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 5, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pnpm (source) 7.29.3 -> 7.30.0 age adoption passing confidence
prettier (source) 2.8.4 -> 2.8.5 age adoption passing confidence

Release Notes

pnpm/pnpm

v7.30.0

Compare Source

Minor Changes

  • Allow to set a custom directory for storing patch files via the patches-dir setting #​6215

Patch Changes

  • New directories should be prepended to NODE_PATH in command shims, not appended.
  • Retry copying file on EBUSY error #​6201.

Our Gold Sponsors

Our Silver Sponsors

prettier/prettier

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

Configuration

📅 Schedule: Branch creation - "before 3am 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.

@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch from d861bdc to a4058ff Compare December 6, 2022 15:47
@renovate renovate bot changed the title Update dependency lint-staged to v13.1.0 Update frontend non-major dependencies Dec 6, 2022
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch 9 times, most recently from 369efe0 to 6cc5cf8 Compare December 13, 2022 08:51
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch 5 times, most recently from 064ac26 to 25c4b19 Compare December 17, 2022 01:47
@renovate renovate bot changed the title Update frontend non-major dependencies fix(deps): update frontend non-major dependencies Dec 19, 2022
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch 8 times, most recently from 0168628 to da9007a Compare December 26, 2022 00:26
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch from da9007a to 161f655 Compare December 27, 2022 21:21
@renovate renovate bot changed the title fix(deps): update frontend non-major dependencies chore(deps): update dependency vite to v3.2.5 Dec 27, 2022
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch from 161f655 to 6e237f1 Compare December 28, 2022 09:40
@renovate renovate bot changed the title chore(deps): update dependency vite to v3.2.5 chore(deps): update frontend non-major dependencies Dec 28, 2022
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch from 6e237f1 to 2dfd3b5 Compare December 28, 2022 18:38
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch from 2bdf7ac to c95941c Compare March 14, 2023 05:23
@renovate renovate bot changed the title fix(deps): update frontend non-major dependencies fix(deps): update frontend non-major dependencies - autoclosed Mar 14, 2023
@renovate renovate bot closed this Mar 14, 2023
@renovate renovate bot deleted the renovate/frontend-minor-patch branch March 14, 2023 18:23
@renovate renovate bot changed the title fix(deps): update frontend non-major dependencies - autoclosed fix(deps): update frontend non-major dependencies Mar 14, 2023
@renovate renovate bot reopened this Mar 14, 2023
@renovate renovate bot restored the renovate/frontend-minor-patch branch March 14, 2023 22:45
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch from c95941c to 3a9ed4d Compare March 15, 2023 03:42
@renovate renovate bot changed the title fix(deps): update frontend non-major dependencies chore(deps): update dependency sass to v1.59.3 Mar 15, 2023
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.59.3 chore(deps): update frontend non-major dependencies Mar 15, 2023
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch 2 times, most recently from 55be537 to 5c22cd6 Compare March 17, 2023 01:46
@renovate renovate bot changed the title chore(deps): update frontend non-major dependencies chore(deps): update frontend non-major dependencies - autoclosed Mar 17, 2023
@renovate renovate bot closed this Mar 17, 2023
@renovate renovate bot deleted the renovate/frontend-minor-patch branch March 17, 2023 19:49
@renovate renovate bot changed the title chore(deps): update frontend non-major dependencies - autoclosed chore(deps): update frontend non-major dependencies Mar 19, 2023
@renovate renovate bot reopened this Mar 19, 2023
@renovate renovate bot restored the renovate/frontend-minor-patch branch March 19, 2023 13:24
@renovate renovate bot changed the title chore(deps): update frontend non-major dependencies chore(deps): update dependency pnpm to v7.30.0 Mar 19, 2023
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch from 5c22cd6 to 37f6b48 Compare March 19, 2023 14:48
@renovate renovate bot changed the title chore(deps): update dependency pnpm to v7.30.0 chore(deps): update frontend non-major dependencies Mar 20, 2023
@renovate renovate bot force-pushed the renovate/frontend-minor-patch branch from 37f6b48 to 9f386a4 Compare March 20, 2023 06:35
@renovate
Copy link
Contributor Author

renovate bot commented Mar 20, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@renovate renovate bot changed the title chore(deps): update frontend non-major dependencies chore(deps): update frontend non-major dependencies - autoclosed Mar 25, 2023
@renovate renovate bot closed this Mar 25, 2023
@renovate renovate bot deleted the renovate/frontend-minor-patch branch March 25, 2023 15:45
@renovate renovate bot changed the title chore(deps): update frontend non-major dependencies - autoclosed chore(deps): update frontend non-major dependencies Mar 26, 2023
@renovate renovate bot reopened this Mar 26, 2023
@renovate renovate bot restored the renovate/frontend-minor-patch branch March 26, 2023 14:51
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants