Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 29, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@eslint/compat 1.2.7 -> 1.2.9 age adoption passing confidence devDependencies patch
@floating-ui/react (source) 0.27.5 -> 0.27.12 age adoption passing confidence dependencies patch
@tailwindcss/vite (source) 4.1.7 -> 4.1.8 age adoption passing confidence devDependencies patch
@types/react-dom (source) 19.1.5 -> 19.1.6 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) 8.33.0 -> 8.33.1 age adoption passing confidence devDependencies patch
@typescript-eslint/parser (source) 8.33.0 -> 8.33.1 age adoption passing confidence devDependencies patch
@vitejs/plugin-react-swc (source) 3.10.0 -> 3.10.1 age adoption passing confidence devDependencies patch
docker.io/library/golang 1.23.7-alpine -> 1.23.10-alpine age adoption passing confidence stage patch
eslint-plugin-prettier 5.4.0 -> 5.4.1 age adoption passing confidence devDependencies patch
eslint-plugin-react 7.37.4 -> 7.37.5 age adoption passing confidence devDependencies patch
eslint-plugin-react-refresh 0.4.19 -> 0.4.20 age adoption passing confidence devDependencies patch
github.com/aws/aws-sdk-go v1.55.6 -> v1.55.7 age adoption passing confidence require patch
github.com/aws/smithy-go v1.22.1 -> v1.22.3 age adoption passing confidence require patch
github.com/go-git/go-git/v5 v5.16.0 -> v5.16.1 age adoption passing confidence require patch
github.com/labstack/echo/v4 v4.13.3 -> v4.13.4 age adoption passing confidence require patch
github.com/onsi/gomega v1.36.2 -> v1.36.3 age adoption passing confidence require patch
k8s.io/api v0.32.2 -> v0.32.5 age adoption passing confidence require patch
k8s.io/apimachinery v0.32.2 -> v0.32.5 age adoption passing confidence require patch
k8s.io/client-go v0.32.2 -> v0.32.5 age adoption passing confidence require patch
react-router-dom (source) 7.6.1 -> 7.6.2 age adoption passing confidence dependencies patch
react-tooltip 5.28.0 -> 5.28.1 age adoption passing confidence dependencies patch
tailwindcss (source) 4.1.7 -> 4.1.8 age adoption passing confidence devDependencies patch
typescript-eslint (source) 8.33.0 -> 8.33.1 age adoption passing confidence devDependencies patch
vite (source) 6.3.4 -> 6.3.5 age adoption passing confidence devDependencies patch

Release Notes

eslint/rewrite (@​eslint/compat)

v1.2.9

Compare Source

v1.2.8

Compare Source

floating-ui/floating-ui (@​floating-ui/react)

v0.27.12

Compare Source

Patch Changes
  • fix(FloatingFocusManager): ensure aria-hidden/inert are cleaned up correctly when mixing outsideElementsInert true/false
  • fix(safePolygon): revert to checking if any nested child is open

v0.27.11

Compare Source

Patch Changes
  • fix(FloatingFocusManager): check if target is connected for restoreFocus prop
  • Update dependencies: @floating-ui/[email protected]

v0.27.10

Compare Source

Patch Changes
  • fix(safePolygon): handle pointer moving outside of all floating elements in a tree with a close delay
  • fix(useDismiss): bail out of blur to mark inside react tree if floating tree exists

v0.27.9

Compare Source

Patch Changes
  • fix(useListNavigation): reset internal focusItemOnOpen state when floating element is closed. This prevents the first item being highlighted on open under certain conditions when it shouldn't be.
  • fix(FloatingOverlay): lockScroll detection on iPad
  • fix(useListNavigation): avoid item rerenders upon open
  • fix(FloatingFocusManager): check for blurring to nested elements inside the React tree without FloatingTree
  • fix(FloatingFocusManager): always prevent scroll upon returning focus
  • refactor(useHover): improve handleClose option and docs. You can now more easily write a custom event handler function, including exported types.
  • feat(FloatingOverlay): add lockScroll scrollbar width CSS variable (--floating-ui-scrollbar-width)
  • feat(useListNavigation, Composite): allow disabledIndices to be a function

v0.27.8

Compare Source

Patch Changes
  • feat: export most utils under @floating-ui/react/utils. This makes it a lot easier to write your own custom interaction hooks, or copy/paste the existing ones to change the way they are implemented yourself without patching or waiting for features/breaking changes.
  • perf(FloatingFocusManager): move manual tabindex handling on floating element to an event. Improves performance when the floating element has a large amount of content or the content changes frequently e.g. virtualized scrolling.
  • fix(FloatingFocusManager): prioritize returning focus to reference if available
  • feat(useListNavigation): add parentOrientation prop

v0.27.7

Compare Source

Patch Changes
  • fix(useTransitionStatus): avoid browser from painting before floating element opens. With FloatingDelayGroup, this avoids a flicker when moving between floating elements to ensure one is always open with no missing frames.
  • fix(useListNavigation): correctly scroll to the selected item on open when using a pointer and FloatingFocusManager initialFocus is not in use
  • fix(useHover): clean up blockPointerEvents when opened with click after hover
  • fix(useRole): improve "combobox" role
  • fix(useRole): handle custom id attributes
  • feat: experimental NextFloatingDelayGroup (and useNextFloatingDelayGroup). Unlike FloatingDelayGroup, this component doesn't cause a re-render of unrelated consumers of the context when the delay changes, improving performance. This will eventually become the new default for FloatingDelayGroup in v1 (Next), as its API is different.
  • perf(FloatingFocusManager): ignore manual tabindex handling for non-dialog role floating elements
  • fix(useHover): prevent floating element unexpectedly closing when close to reference element when not using safePolygon() and a close delay
  • perf(useFloating): refactor events emitter
  • fix(FloatingFocusManager): ensure floating elements with no tabbable content are assigned tabIndex=0 when initialFocus is -1
  • fix(useListNavigation): handle list navigation for nested lists with mixed orientation

v0.27.6

Compare Source

Patch Changes
  • fix(useFloating): prevent error when using inline middleware when passing a real DOM element to refs.setPositionReference due to element.getClientRects() not being handled
  • fix: avoid marking root ancestor combobox with aria-hidden when nested virtual floating element opens
  • fix(FloatingFocusManager): set inert attribute value to empty string instead of "true"
  • fix(FloatingFocusManager): correct tabbing to different document contexts
  • fix(useClick): fix toggle behavior with Enter key when reference element is anchor
  • feat(FloatingFocusManager): getInsideElements prop. Allows you to specify elements that are considered as "inside" the floating element. These will avoid being marked with aria-hidden and data-floating-ui-inert attributes.
  • fix(useFocus): improve :focus-visible checks
tailwindlabs/tailwindcss (@​tailwindcss/vite)

v4.1.8

Compare Source

Added
  • Improve error messages when @apply fails (#​18059)
Fixed
  • Upgrade: Do not migrate declarations that look like candidates in <style> blocks (#​18057, 18068)
  • Upgrade: Don't error when looking for tailwindcss in pnpm monorepos (#​18065)
  • Upgrade: Don't error when updating dependencies in pnpm monorepos (#​18065)
  • Upgrade: Migrate deprecated order-none to order-0 (#​18126)
  • Support Leptos class: attributes when extracting classes (#​18093)
  • Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#​18133)
  • Upgrade: Migrate -mt-[0px] to mt-[0px] instead of the other way around (#​18154)
  • Fix Haml pre-processing crash when there is no \n at the end of the file (#​18155)
  • Ignore .pnpm-store folders by default (can be overridden by @source … rules) (#​18163)
  • Fix PostCSS crash when calling toJSON() (#​18083)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.33.1

Compare Source

🩹 Fixes
  • exclude docs/ directory from eslint-plugin package (#​11251)
❤️ Thank You
  • roottool

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

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

v8.33.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.

vitejs/vite-plugin-react (@​vitejs/plugin-react-swc)

v3.10.1

Compare Source

Add explicit semicolon in preambleCode #​485

This fixes an edge case when using HTML minifiers that strips line breaks aggressively.

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.4.1

Compare Source

Patch Changes
  • #​740 c21521f Thanks @​JounQin! - fix(deps): bump synckit to v0.11.7 to fix potential TypeError: Cannot read properties of undefined (reading 'message') error
jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.37.5

Compare Source

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

v0.4.20

Compare Source

  • Don't warn on nested HOC calls (fixes #​79)
  • Fix false positive with as const (fixes #​80)
aws/aws-sdk-go (github.com/aws/aws-sdk-go)

v1.55.7

Compare Source

===

SDK Bugs
  • service/s3/s3manager: Abort multipart download if object is modified during download
aws/smithy-go (github.com/aws/smithy-go)

v1.22.3

Compare Source

v1.22.2

Compare Source

go-git/go-git (github.com/go-git/go-git/v5)

v5.16.1

Compare Source

What's Changed

New Contributors

Full Changelog: go-git/go-git@v5.16.0...v5.16.1

labstack/echo (github.com/labstack/echo/v4)

v4.13.4

Compare Source

Enhancements

Security

onsi/gomega (github.com/onsi/gomega)

v1.36.3

Compare Source

1.36.3

Maintenance
kubernetes/api (k8s.io/api)

v0.32.5

Compare Source

v0.32.4

Compare Source

v0.32.3

Compare Source

kubernetes/apimachinery (k8s.io/apimachinery)

v0.32.5

Compare Source

v0.32.4

Compare Source

v0.32.3

Compare Source

kubernetes/client-go (k8s.io/client-go)

v0.32.5

Compare Source

v0.32.4

Compare Source

v0.32.3

Compare Source

remix-run/react-router (react-router-dom)

v7.6.2

Compare Source

Patch Changes
ReactTooltip/react-tooltip (react-tooltip)

v5.28.1

Compare Source

If you like ReactTooltip, please give the project a star on GitHub 🌟

What's Changed

Full Changelog: ReactTooltip/react-tooltip@v5.28.0...v5.28.1

typescript-eslint/typescript-eslint (typescript-eslint)

v8.33.1

Compare Source

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

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

vitejs/vite (vite)

v6.3.5

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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
Copy link
Contributor Author

renovate bot commented Apr 29, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 11 additional dependencies were updated

Details:

Package Change
github.com/onsi/ginkgo/v2 v2.22.2 -> v2.23.3
github.com/mattn/go-colorable v0.1.13 -> v0.1.14
golang.org/x/sync v0.13.0 -> v0.14.0
golang.org/x/tools v0.28.0 -> v0.30.0
golang.org/x/crypto v0.37.0 -> v0.38.0
golang.org/x/net v0.39.0 -> v0.40.0
golang.org/x/sys v0.32.0 -> v0.33.0
golang.org/x/term v0.31.0 -> v0.32.0
golang.org/x/text v0.24.0 -> v0.25.0
golang.org/x/time v0.10.0 -> v0.11.0
google.golang.org/protobuf v1.36.1 -> v1.36.5

@codecov-commenter
Copy link

codecov-commenter commented Apr 29, 2025

⚠️ Please install the 'codecov app svg image' to ensure uploads and comments are reliably processed by Codecov.

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 48.48%. Comparing base (978aec8) to head (a4bb68b).

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #584   +/-   ##
=======================================
  Coverage   48.48%   48.48%           
=======================================
  Files          80       80           
  Lines        5924     5924           
=======================================
  Hits         2872     2872           
  Misses       2820     2820           
  Partials      232      232           

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

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/patch-all-patch branch 7 times, most recently from 7160a52 to 45ad6ed Compare May 6, 2025 21:02
@renovate renovate bot force-pushed the renovate/patch-all-patch branch 3 times, most recently from faa7735 to d00e75c Compare May 13, 2025 12:04
@renovate renovate bot force-pushed the renovate/patch-all-patch branch 9 times, most recently from b222df5 to 32f5934 Compare May 22, 2025 15:14
@renovate renovate bot force-pushed the renovate/patch-all-patch branch 7 times, most recently from 0044b7f to a085776 Compare May 28, 2025 12:09
@renovate renovate bot force-pushed the renovate/patch-all-patch branch 15 times, most recently from 91f91d7 to 3789095 Compare June 4, 2025 17:02
@renovate renovate bot force-pushed the renovate/patch-all-patch branch 2 times, most recently from e5b37e2 to 64009f1 Compare June 6, 2025 14:54
@renovate renovate bot force-pushed the renovate/patch-all-patch branch from 64009f1 to a4bb68b Compare June 6, 2025 15:35
@corrieriluca corrieriluca merged commit d7f4665 into main Jun 6, 2025
9 checks passed
@corrieriluca corrieriluca deleted the renovate/patch-all-patch branch June 6, 2025 15:45
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