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 debug ui dependencies (non-major) #5937

Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 30, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-codegen/client-preset (source) 4.3.1 -> 4.3.2 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.14.1 -> 7.17.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.14.1 -> 7.17.0 age adoption passing confidence
eslint-plugin-react 7.34.3 -> 7.35.0 age adoption passing confidence
eslint-plugin-react-refresh 0.4.7 -> 0.4.9 age adoption passing confidence
jsdom 24.1.0 -> 24.1.1 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
react-bootstrap (source) 2.10.3 -> 2.10.4 age adoption passing confidence
typescript (source) 5.5.2 -> 5.5.4 age adoption passing confidence
vite (source) 5.3.2 -> 5.3.4 age adoption passing confidence

Release Notes

dotansimha/graphql-code-generator (@​graphql-codegen/client-preset)

v4.3.2

Compare Source

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

v7.17.0

Compare Source

🚀 Features
  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7

  • eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never"

🩹 Fixes
  • eslint-plugin: [no-floating-promises] check top-level type assertions (and more)

  • eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context

  • eslint-plugin: [no-unnecessary-condition] false positive on optional private field

❤️ Thank You
  • Armano
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • StyleShit

You can read about our versioning strategy and releases on our website.

v7.16.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-parameters] descend into all parts of mapped types in no-unnecessary-type-parameters
❤️ Thank You
  • Dan Vanderkam

You can read about our versioning strategy and releases on our website.

v7.16.0

Compare Source

🚀 Features
  • rule-tester: stricter rule test validations

  • eslint-plugin: [no-unnecessary-parameter-property-assignment] add new rule

  • eslint-plugin: add support for nested namespaces to unsafe-member-access

  • eslint-plugin: [no-floating-promises] add checkThenables option

🩹 Fixes
  • deps: update dependency @​eslint-community/regexpp to v4.11.0

  • eslint-plugin: [no-floating-promises] add suggestions to tests from #​9263 checkThenables

  • website: react key error on internal pages of website

  • eslint-plugin: [restrict-template-expressions] don't report tuples if allowArray option is enabled

❤️ Thank You
  • Abraham Guo
  • auvred
  • Josh Goldberg ✨
  • Juan Sanchez
  • Vinccool96
  • YeonJuan
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.

v7.15.0

Compare Source

🚀 Features
  • eslint-plugin: [array-type] detect Readonly<string[]> case

  • eslint-plugin: back-port new rules around empty object types from v8

🩹 Fixes
  • disable EXPERIMENTAL_useProjectService in disabled-type-checked shared config

  • eslint-plugin: [no-unsafe-return] differentiate a types-error any from a true any

  • eslint-plugin: [no-unsafe-call] differentiate a types-error any from a true any

❤️ Thank You
  • auvred
  • Kim Sang Du
  • rgehbt
  • Vinccool96

You can read about our versioning strategy and releases on our website.

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

v7.17.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.16.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.16.0

Compare Source

🩹 Fixes
❤️ Thank You
  • Abraham Guo
  • auvred
  • Josh Goldberg ✨
  • Juan Sanchez
  • Vinccool96
  • YeonJuan
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.

v7.15.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.35.0

Compare Source

Added
Fixed
Changed

v7.34.4

Compare Source

Fixed
ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)

v0.4.9

Compare Source

  • Support function Foo() {}; export default memo(Foo) (fixes #​44)

v0.4.8

Compare Source

  • Support export const foo = -1 with allowConstantExport (fixes #​43)
jsdom/jsdom (jsdom)

v24.1.1

Compare Source

  • Fixed selection methods to trigger the selectionchange event on the Document object. (piotr-oles)
prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@&#8203;(foo`tagged template`)
class X {}

// Prettier 3.3.2
@&#8203;foo`tagged template`
class X {}

// Prettier 3.3.3
@&#8203;(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@&#8203;let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

react-bootstrap/react-bootstrap (react-bootstrap)

v2.10.4

Compare Source

Bug Fixes
Microsoft/TypeScript (typescript)

v5.5.4

Compare Source

v5.5.3

Compare Source

vitejs/vite (vite)

v5.3.4

Compare Source

v5.3.3

Compare Source


Configuration

📅 Schedule: Branch creation - "on the first day of the week" in timezone Europe/Berlin, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner June 30, 2024 06:37
@renovate renovate bot requested a review from testower June 30, 2024 06:37
Copy link

codecov bot commented Jun 30, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 69.66%. Comparing base (52c7536) to head (73e03e9).
Report is 1 commits behind head on dev-2.x.

Additional details and impacted files
@@              Coverage Diff              @@
##             dev-2.x    #5937      +/-   ##
=============================================
- Coverage      69.66%   69.66%   -0.01%     
+ Complexity     17167    17163       -4     
=============================================
  Files           1942     1942              
  Lines          73784    73784              
  Branches        7550     7550              
=============================================
- Hits           51404    51400       -4     
- Misses         19752    19753       +1     
- Partials        2628     2631       +3     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/debug-ui-dependencies-(non-major) branch from d3da625 to a7577e4 Compare July 1, 2024 18:05
@renovate renovate bot changed the title Update dependency react-bootstrap to v2.10.4 Update Debug UI dependencies (non-major) Jul 1, 2024
@renovate renovate bot force-pushed the renovate/debug-ui-dependencies-(non-major) branch 3 times, most recently from 2e1c3a8 to 5b2d304 Compare July 3, 2024 07:22
@renovate renovate bot changed the title Update Debug UI dependencies (non-major) chore(deps): update debug ui dependencies (non-major) Jul 4, 2024
@renovate renovate bot force-pushed the renovate/debug-ui-dependencies-(non-major) branch from 5b2d304 to 3764ed6 Compare July 8, 2024 18:59
@renovate renovate bot changed the title chore(deps): update debug ui dependencies (non-major) Update Debug UI dependencies (non-major) Jul 8, 2024
@renovate renovate bot changed the title Update Debug UI dependencies (non-major) chore(deps): update debug ui dependencies (non-major) Jul 9, 2024
@renovate renovate bot force-pushed the renovate/debug-ui-dependencies-(non-major) branch 5 times, most recently from a746144 to 6ff8d0a Compare July 16, 2024 13:12
@renovate renovate bot changed the title chore(deps): update debug ui dependencies (non-major) Update Debug UI dependencies (non-major) Jul 16, 2024
@renovate renovate bot changed the title Update Debug UI dependencies (non-major) chore(deps): update debug ui dependencies (non-major) Jul 18, 2024
@renovate renovate bot force-pushed the renovate/debug-ui-dependencies-(non-major) branch 5 times, most recently from 2eea740 to 8a43c31 Compare July 23, 2024 03:26
@t2gran t2gran added this to the 2.6 (next release) milestone Jul 23, 2024
testower
testower previously approved these changes Jul 25, 2024
@renovate renovate bot force-pushed the renovate/debug-ui-dependencies-(non-major) branch from 8a43c31 to 73e03e9 Compare July 25, 2024 05:46
@leonardehrenfried leonardehrenfried merged commit 9e377f3 into dev-2.x Jul 25, 2024
7 checks passed
@leonardehrenfried leonardehrenfried deleted the renovate/debug-ui-dependencies-(non-major) branch July 25, 2024 05:56
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.

3 participants