Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Update all non-major dependencies #10524

Merged
merged 1 commit into from
Apr 6, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 5, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
cypress 12.8.1 -> 12.9.0 age adoption passing confidence devDependencies minor
cypress-io/github-action v5.5.0 -> v5.6.1 age adoption passing confidence action minor
eslint (source) 8.36.0 -> 8.37.0 age adoption passing confidence devDependencies minor
eslint-config-prettier 8.7.0 -> 8.8.0 age adoption passing confidence devDependencies minor
filesize (source) 10.0.6 -> 10.0.7 age adoption passing confidence dependencies patch
fs-extra 11.1.0 -> 11.1.1 age adoption passing confidence devDependencies patch
futuratrepadeira/changed-files v4.0.0 -> v4.0.1 age adoption passing confidence action patch
matrix-org/pr-details-action v1.2 -> v1.3 age adoption passing confidence action minor
posthog-js 1.51.2 -> 1.51.5 age adoption passing confidence dependencies patch 1.52.0
prettier (source) 2.8.4 -> 2.8.7 age adoption passing confidence devDependencies patch
rimraf 4.4.0 -> 4.4.1 age adoption passing confidence devDependencies patch
stylelint (source) 15.3.0 -> 15.4.0 age adoption passing confidence devDependencies minor
stylelint-scss 4.5.0 -> 4.6.0 age adoption passing confidence devDependencies minor
ua-parser-js 1.0.34 -> 1.0.35 age adoption passing confidence dependencies patch

Release Notes

cypress-io/cypress

v12.9.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​12-9-0

cypress-io/github-action

v5.6.1

Compare Source

Bug Fixes

v5.6.0

Compare Source

Features

v5.5.1

Compare Source

Bug Fixes
  • deps: update dependencies @actions/io and markdown-link-check (#​843) (9626848)
eslint/eslint

v8.37.0

Compare Source

Features

Bug Fixes

  • 619f3fd fix: correctly handle null default config in RuleTester (#​17023) (Brad Zacher)
  • 1fbf118 fix: getFirstToken/getLastToken on comment-only node (#​16889) (Francesco Trotta)
  • 129e252 fix: Fix typo in logical-assignment-operators rule description (#​17000) (Francesco Trotta)

Documentation

Chores

prettier/eslint-config-prettier

v8.8.0

Compare Source

avoidwork/filesize.js

v10.0.7

Compare Source

  • Updating copyright year in README.md & LICENSE, updating dependencies 4de5566
  • Updating CHANGELOG.md d41818f
jprichardson/node-fs-extra

v11.1.1

Compare Source

  • Preserve timestamps when moving files across devices (#​992, #​994)
futuratrepadeira/changed-files

v4.0.1

Compare Source

What's Changed

Full Changelog: umani/changed-files@v4.0.0...v4.0.1

matrix-org/pr-details-action

v1.3: Support for merge queues

Compare Source

PostHog/posthog-js

v1.51.5

Compare Source

  • fix(segment): handle race condition on loading segment integration (#​586)

v1.51.4

Compare Source

  • fix: fewer moving parts more like safe text (#​590)

v1.51.3

Compare Source

  • try/catch the bit that fails so we don't just eject the element (#​585)
  • fix(persistence): set SameSite=None explicitly (#​578)
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} />;
isaacs/rimraf

v4.4.1

Compare Source

stylelint/stylelint

v15.4.0

Compare Source

stylelint-scss/stylelint-scss

v4.6.0

Compare Source

  • Fixed: docs - fix broken links and wording tweaks
  • Removed: Lodash dependency

Full Changelog: stylelint-scss/stylelint-scss@v4.5.0...v4.6.0

faisalman/ua-parser-js

v1.0.35

Compare Source

  • Fix result from user-supplied user-agent being altered
  • Add new browser: Heytap, TikTok
  • Add new engine: LibWeb
  • Add new OS: SerenityOS
  • Improve browser detection: Yandex
  • Improve device detection: iPhone, Amazon Echo
  • Improve OS detection: iOS

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.


This change is marked as an internal change (Task), so will not be included in the changelog.

@renovate renovate bot requested a review from a team as a code owner April 5, 2023 14:49
@renovate renovate bot requested a review from t3chguy April 5, 2023 14:49
@renovate renovate bot added Dependencies Pull requests that update a dependency file T-Task Refactoring, enabling or disabling functionality, other engineering tasks labels Apr 5, 2023
@renovate renovate bot enabled auto-merge April 5, 2023 14:49
auto-merge was automatically disabled April 5, 2023 18:35

Merge queue setting changed

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b422ad0 to ebaca85 Compare April 5, 2023 18:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ebaca85 to 0acfbb4 Compare April 6, 2023 08:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0a64dcf to 87a25d5 Compare April 6, 2023 08:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from cd5eeeb to 755497e Compare April 6, 2023 09:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 755497e to fb38b49 Compare April 6, 2023 10:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 36120ca to fadb292 Compare April 6, 2023 11:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fadb292 to 86b79da Compare April 6, 2023 11:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5b1022b to 3b1daf3 Compare April 6, 2023 12:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3b1daf3 to 6b21182 Compare April 6, 2023 12:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6b21182 to bcb7db5 Compare April 6, 2023 13:07
@t3chguy t3chguy merged commit 7321277 into develop Apr 6, 2023
@t3chguy t3chguy deleted the renovate/all-minor-patch branch April 6, 2023 13:39
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Dependencies Pull requests that update a dependency file T-Task Refactoring, enabling or disabling functionality, other engineering tasks
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant