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

[skip netlify] Update Bumped minor version of packages #42

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jul 22, 2022

Bumped minor version of packages, check if builds are still passing, please 🥺

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxtjs/sentry ^7.1.4 -> ^7.1.10 age adoption passing confidence
@typescript-eslint/eslint-plugin ^5.55.0 -> ^5.57.0 age adoption passing confidence
@typescript-eslint/parser ^5.55.0 -> ^5.57.0 age adoption passing confidence
cypress ^12.8.1 -> ^12.9.0 age adoption passing confidence
eslint (source) ^8.36.0 -> ^8.37.0 age adoption passing confidence
eslint-config-prettier ^8.7.0 -> ^8.8.0 age adoption passing confidence
prettier (source) ^2.8.5 -> ^2.8.7 age adoption passing confidence
sass ^1.59.3 -> ^1.60.0 age adoption passing confidence
slugify ^1.6.5 -> ^1.6.6 age adoption passing confidence
vitest ^0.29.3 -> ^0.29.8 age adoption passing confidence

Release Notes

nuxt-community/sentry-module

v7.1.10

Compare Source

v7.1.9

Compare Source

v7.1.8

Compare Source

v7.1.7

Compare Source

v7.1.6

Compare Source

v7.1.5

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.57.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] simplify fixer and add support for double negation (#​6620) (81c8519)
  • eslint-plugin: correct crashes with getTypeArguments for ts < 3.7 (#​6767) (59eab58)
Features
  • eslint-plugin: [consistent-type-assertions] add suggestions for objectLiteralTypeAssertions (#​6642) (720e811)
  • eslint-plugin: [consistent-type-assertions] autofix angle bracket assertions to as (#​6641) (ad8ea64)
  • eslint-plugin: add no-duplicate-type-constituents rule (#​5728) (bc31078)

v5.56.0

Compare Source

Bug Fixes
  • eslint-plugin: [member-ordering] check order when optionalityOrder is present with no optional members (#​6619) (6aff431)
  • eslint-plugin: [no-misused-promises] avoid unnecessary calls to getContextualType (#​6193) (745cfe4)
  • eslint-plugin: [no-misused-promises] fix incorrect detection of void functions in JSX attributes (#​6638) (9e41cee)
  • eslint-plugin: [strict-boolean-expression] support falsy and truthy literals simultaneously (#​6672) (62ef487)
  • eslint-plugin: [strict-boolean-expressions] handle truthy enums (#​6618) (0d0639f)
  • eslint-plugin: add TSPropertySignature with TSFunctionType annotation to typeMethod selector (#​6645) (3fc5c63)
Features
  • eslint-plugin: add allowNever support to restrict-template-expressions (#​6554) (423f164)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.57.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.56.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

cypress-io/cypress

v12.9.0

Compare Source

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

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

prettier/prettier

v2.8.7

Compare Source

diff

Allow multiple decorators on same getter/setter (#​14584 by @​fisker)
// Input
class A {
  @&#8203;decorator()
  get foo () {}
  
  @&#8203;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 |   @&#8203;decorator()
    |   ^^^^^^^^^^^^
  6 |   set foo (value) {}
  7 | }

// Prettier 2.8.7
class A {
  @&#8203;decorator()
  get foo() {}

  @&#8203;decorator()
  set foo(value) {}
}

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() {}
}
sass/dart-sass

v1.60.0

Compare Source

  • Add support for the pi, e, infinity, -infinity, and NaN constants in
    calculations. These will be interpreted as the corresponding numbers.

  • Add support for unknown constants in calculations. These will be interpreted
    as unquoted strings.

  • Serialize numbers with value infinity, -infinity, and NaN to calc()
    expressions rather than CSS-invalid identifiers. Numbers with complex units
    still can't be serialized.

simov/slugify

v1.6.6

Compare Source

vitest-dev/vitest

v0.29.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

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

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" in timezone Europe/Berlin, 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.

@cloudflare-pages
Copy link

cloudflare-pages bot commented Jul 22, 2022

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 6e20dae
Status: ✅  Deploy successful!
Preview URL: https://504d4bad.nft-gallery-1hj.pages.dev
Branch Preview URL: https://renovate-bumped-minor-versio.nft-gallery-1hj.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch 2 times, most recently from 7d3fce7 to 467ac31 Compare July 23, 2022 00:11
@vercel
Copy link

vercel bot commented Jul 23, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated
nft-gallery ❌ Failed (Inspect) 💬 Add your feedback Mar 30, 2023 at 5:33AM (UTC)

@renovate
Copy link
Author

renovate bot commented Jul 23, 2022

lgtm

@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 22657c1 to 0b8cab9 Compare July 24, 2022 09:35
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 0b8cab9 to 04c7bf4 Compare July 24, 2022 16:15
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 04c7bf4 to 774f9ac Compare July 24, 2022 19:20
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 774f9ac to b521f46 Compare July 25, 2022 05:31
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from b521f46 to 604b405 Compare July 25, 2022 09:50
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 604b405 to b413bc8 Compare July 25, 2022 15:23
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from b413bc8 to d5be1de Compare July 25, 2022 17:55
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from d5be1de to 1a2f275 Compare July 25, 2022 20:10
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 1a2f275 to 848fe1f Compare July 27, 2022 09:59
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 848fe1f to 03aa18d Compare July 27, 2022 12:34
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 5d40cb8 to d6ac904 Compare March 9, 2023 18:18
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from d6ac904 to 0f6e426 Compare March 11, 2023 01:34
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 0f6e426 to 740dc29 Compare March 13, 2023 19:39
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 740dc29 to 50b9c4f Compare March 14, 2023 17:27
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 50b9c4f to cd3aecd Compare March 14, 2023 21:37
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from cd3aecd to bd2da12 Compare March 16, 2023 15:50
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from bd2da12 to 8e76734 Compare March 17, 2023 03:54
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 8e76734 to a30ba10 Compare March 20, 2023 19:25
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from a30ba10 to 9a090c9 Compare March 21, 2023 03:45
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 9a090c9 to 695d7f8 Compare March 22, 2023 01:58
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 695d7f8 to 97eb39a Compare March 24, 2023 05:18
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 97eb39a to 506d3ac Compare March 27, 2023 01:48
@renovate renovate bot force-pushed the renovate/bumped-minor-version-of-packages branch from 506d3ac to 6e20dae Compare March 30, 2023 05:33
@preschian preschian closed this Mar 30, 2023
@preschian preschian deleted the renovate/bumped-minor-version-of-packages branch March 30, 2023 07:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant