Update dependency @gitlab/ui to v123
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
@gitlab/ui (source) | dependencies | major | 76.1.0 -> 123.11.0 |
MR created with the help of gitlab-org/frontend/renovate-gitlab-bot
Release Notes
gitlab-org/gitlab-services/design.gitlab.com (@gitlab/ui)
v123.11.0
Minor Changes
-
f66a7da
: Increase token component border radius.
v123.10.1
Patch Changes
-
06552bc
: Dashboard panel background to default
v123.10.0
Minor Changes
-
af3a0cf
: Update GlTokenSelector to proper comboboxThe GlTokenSelector was not announcing its list of preset tokens or user-added tokens to screen readers. This changeset updates the component to a WAI-ARIA spec combobox (input plus listbox).
v123.9.2
Patch Changes
-
cde3dbf
: Update Filtered search border radius
v123.9.1
Patch Changes
-
775864e
: Vertically align loading icon for dashboard panelThis change resolves an issue with the alignment of the dashboard-panel's loading icon, where the icon would sit on the very top instead of being vertically centered.
v123.9.0
Minor Changes
-
8d9cac6
: Increase the border radius for some semantic design tokens and a set of components to implement changes based on Project Studio work.
v123.8.0
Minor Changes
-
20842cf
: Add initial font-family, font-size, font-weight design tokensAdd
font.family
,font.size
, andfont.weight
design tokens Addline-height
tokens to Tailwind config
v123.7.0
Minor Changes
-
177c05d
: GlFilteredSearch: Allow grouping items in suggestions
v123.6.1
Patch Changes
-
29671e3
: Fix Chrome 142 select rendering by adding default size attribute to GlFormSelectChrome 142 changed how select elements render based on size and multiple attributes. Without an explicit size attribute, some selects were rendering as expanded in-page listboxes instead of collapsed dropdowns. GlFormSelect now defaults to size="1", ensuring consistent collapsed dropdown rendering across all Chrome versions and preventing layout issues.
v123.6.0
Minor Changes
-
b19aae6
: Increase the border radius for some semantic design tokens and a set of components to implement changes based on Project Studio work.
v123.5.0
Minor Changes
-
63559d3
: Add prop to keep GlButton accessible when loading
v123.4.0
Minor Changes
-
31dd61d
: Update Tailwind config values to remove fallbacksUpdate
tailwind_token_formatter.js
to remove alias resolutions for design tokens. Instead resolve the immediate CSS custom property for any given design token.Build token output to update
/src/tokens/build/tailwind/tokens.cjs
generated output with key/value pairs which reflect:- Key: design token scale e.g.
default
,1
,blue-500
- Value: design token CSS custom property e.g.
var(--gl-token-name)
- Key: design token scale e.g.
v123.3.1
Patch Changes
-
41c2dac
: Guard base dropdown'scontainsElement
methodThis ensures that consumers' specs don't fail due to not having access to the containsElement method that the BaseDropdown component exposes.
v123.3.0
Minor Changes
-
53c5bc6
: Add count and countSrText prop to GlButton
v123.2.0
Minor Changes
-
1127169
: Make gl-popover customClasses flexiblePreviously, the
<gl-popover>
customClasses
prop only accepted arrays.This change adds the option to additionaly pass in both Strings and Objects, so the API for adding custom classes across all components stays consistent.
v123.1.0
Minor Changes
-
d68c10e
: Define shadow design tokensAdd box shadow design tokens to Tailwind config Update StyleDictionary transform groups with
gitlab/
namespace Addshadow/css/shorthand
transform to CSS/SCSS transform groups AddgetTokenCssCustomProperty
utility to Tailwind token formatter
v123.0.0
Major Changes
-
81fbcea
: Breaking change. Root element of GlAvatarLabeled no longer inherits attributes. The attributes are now explicitly defined as props and passed to the GlAvatar component.
v122.14.0
Minor Changes
-
677809f
: Define zindex design tokens
v122.13.0
Minor Changes
-
00ed526
: Pass CSS classes to dashboard panel tooltipThis change adds the ability to customize the styling of dashboard panel popovers.
It does this by adding a new prop to the panel and passing it on to the title tooltip's css-classes prop.
Patch Changes
-
d7bea48
: Reverts GlTokenSelector combobox widget update
v122.12.1
Patch Changes
-
d4b817e
: Portal fixed dropdowns to the rootFixed dropdowns can be mispositioned when they are within a container context. To circumvent the issue, we can portal them to the root (assuming it's not a container), so that Floating UI can properly compute their position.
-
b46f90e
: GlFormGroup: Fix spacing for label descriptionReduces margin-top from gl-mt-3 to gl-mt-2 for better visual alignment.
v122.12.0
Minor Changes
-
4d4dc0c
: Define opacity design tokens
v122.11.0
Minor Changes
-
9f66737
: Modals now register their own containerThis makes it possible to write container queries against the
gl-modal
container withinGlModal
.
v122.10.0
Minor Changes
-
8e659de
: Update GlBanner to use GlIllustration -
07e30c5
: Refactor GlTokenSelector to accessible combobox widgetThis non-breaking change refactors the
GlTokenContainer
to move ARIA attributes down into the nested text input. It also removes thestate
prop fromGlTokenContainer
. Thestate
prop is already being passed to the parentGlTokenSelector
and was not being used. This was verified through automated tests passing without having to refactor or remove logic. It was further tested manually in Storybook.This change was made to accommodate screen reader users who were not hearing the child listbox options be announced.
v122.9.0
Minor Changes
-
dcc09da
: Define border-radius design tokensAdds constant border radius design tokens Updates Tailwind defaults with constant border radius design tokens Adds semantic border radius design for action and control Adds control border radius to form inputs and select Adds context border radius design tokens for components
Patch Changes
-
0c2e415
: Fix truncated dashboard panel title icon
v122.8.0
Minor Changes
-
b3b41f4
: Remove dropdown border from panel and tip
v122.7.0
Minor Changes
-
7037ef8
: Enable container queries for stacked and responsive tablesStacked and responsive tables now support container queries in consumers that have it enabled by adding the
.with-gl-container-queries
class to the<html>
element.These changes were done in gitlab-org/gitlab-services/design.gitlab.com!5077 (merged)
v122.6.1
Patch Changes
-
57fa420
: Hide banners' illustrations belowmd
breakpointWe recently migrated
banner.scss
to our own responsive mixin. However, due to how Bootstrap'smedia-breakpoint-down
mixin targets the next breakpoint, doing a simple search and replace like we did results in the wrong breakpoint being targetted. This updates the mixin's usage to target the correct breakpoint.
v122.6.0
Minor Changes
-
4e0ba3d
: Define spacing-scale design tokensAdds
spacing-scale
design tokens -
8712811
: This change enhances the dashboard panel component by adding support for custom HTML content to be shown within the title popover.Previously, the popover could only display simple text from a configuration property. Now developers can use special slots (template sections) called
info-popover-title
andinfo-popover-content
to insert HTML content like formatted text, links, and complex layouts into the popover.When these slots are provided, they take priority over the basic text configuration.
v122.5.0
Minor Changes
-
dc09a77
: GlBarChart: Add scoped slots for tooltip customizationIntroduces
tooltip-title
,tooltip-content
andtooltip-value
scoped slots to allow consumers to customize the chart's tooltip.
v122.4.0
Minor Changes
-
6c35948
: Create container queries mixinsThis creates the
gl-container-width-up
andgl-container-width-down
mixins. These mixins generate container queries that only apply when thehtml
has the.with-gl-container-queries
class. By default, these mixins also generate media queries which only apply when thehtml
does not have the.with-gl-container-queries
class. This lets us iteratively migrate to container queries while still having a way to fall back to media queries. The media query fallback can be disabled by disabling the$includeMQFallback
flag.Additionally, several internal usages of responsive mixins have been migrated to these new mixins so that consumers can switch to container queries if neeeded.
v122.3.0
Minor Changes
-
e0afad0
: Changechecked
type toundefined
v122.2.1
Patch Changes
-
e132332
: Fix edge case of @max classesMedia and container queries generated with the
@max-
prefix (e.g.@max-sm
) should consider sizes up to a given value without including that value.
v122.2.0
Minor Changes
-
7dbac99
: Use filter CSS property for popover, tooltips, and dropdowns drop shadowUse
filter: drop-shadow(...)
CSS property instead ofbox-shadow
to include tip pseudo elements in popovers, tooltips, and dropdowns
v122.1.2
Patch Changes
-
380412b
: Reverts spacing-scale and border-radius design tokensThe introduction of spacing-scale and border-radius design tokens broke the assets compilation in GitLab. We are reverting these changes for now.
v122.1.1
Patch Changes
-
65a7d84
:GlFormCheckbox
: use a unique ID if the provided one is falseyThis ensures that
GlFormCheckbox
generates a proper ID internally when the consumer provides an empty string, or other falsey values as the ID.
v122.1.0
Minor Changes
-
c81d055
: Define spacing-scale and border-radius design tokensAdds
spacing-scale
design tokens Addsborder.radius
design tokens
v122.0.0
Major Changes
-
c3c6b62
: Drop Bootstrap's jumbotron componentWe don't use the jumbotron component anywhere, so it can be removed altogether.
-
008f805
: Drop Bootstrap's dropdowns responsive stylesThis removes some of Bootstrap's dropdowns responsive styles which we don't use anywhere. This lets us get rid of some media queries which we are moving away from.
-
f6487be
: Drop Bootstrap's horizontal list groupsRemoves styles for Bootstrap's horizontal list groups which we don't use.
-
cc604a1
: Remove support for some of Bootstrap's card stylesWe are dropping support for the following Bootstrap card styles:
card-deck
card-group
card-columns
We don't use these styles in any of our projects, and they leverage media queries which we are moving away from.
v121.1.0
Minor Changes
-
bbf3e8d
: Add labelLinkAttrs prop to GlAvatarLabeled
v121.0.1
Patch Changes
-
f510582
: GlButton: Allow array and object for buttonTextClasses prop
v121.0.0
Major Changes
-
16c6f10
: Remove BFormCheckbox from GlFormCheckboxPart of a larger migration to remove Bootstrap Vue from GitLab UI
BREAKING CHANGE: support for the following props have been dropped:
- autofocus
- button
- button-variant
- form
- switch
- inline
- plain
- size
v120.1.0
Minor Changes
-
8e3d8ce
: Update GlEmptyState to use GlIllustration
Patch Changes
-
8003e57
: Add role="presentation" to BPopoverelement
v120.0.0
Major Changes
-
66f437d
: GlBadge: removed muted variant and made neutral default
v119.2.0
Minor Changes
-
126887b
: GlBarChart: Adds newpresentation
prop to control multi-series layout behavior.
v119.1.0
Minor Changes
-
44c161e
: Create a Tailwind CQs/MQs pluginThis creates a Tailwind plugin that matches
@<breakpoint
utils. For those utils, it generates media queries by default. If Tailwind is executed with theUSE_TAILWIND_CONTAINER_QUERIES
flag enabled, the plugin generates container queries instead of media queries. Normal media query utils, likemd:gl-hidden
, behave as normal either way. Consumers of GitLab UI can use this to generate the bundle(s) they need depending on whether or not they are built using containers.
v119.0.0
Major Changes
-
5676341
: GlButton: Removed dashed variant.Use the default variant instead.
Patch Changes
-
eb334bf
: GlBreadcrumb: Improve resize calculation by measuring the dropdown width
v118.1.2
Patch Changes
-
37eed8f
: Move gl-action-neutral-colors mixin to Tailwind utilityRemove
gl-action-neutral-colors
SCSS mixin Update@include
usage to@apply
v118.1.1
Patch Changes
-
d3ede83
: Add headerLevel prop to GlEmptyState component
v118.1.0
Minor Changes
-
5543fe1
: Add GlIllustration component
v118.0.0
Major Changes
-
f958c0a
: Remove feature-button-border feature flag
v117.1.0
Minor Changes
-
e7cf43f
: Update GlSkeletonLoader to inherit class names.See gitlab-org/gitlab-services/design.gitlab.com!4899 (merged).
v117.0.2
Patch Changes
-
8baa444
: ImproveGlTokenSelector
line wrapping of tokens and its input.
v117.0.1
Patch Changes
-
7df7f15
: Use semantic design color token forpre
elements.The previous color was the static
$gray-900
. Now it'scolor.neutral.950
(light mode),color.neutral.0
(dark mode).
v117.0.0
Major Changes
-
dd766e5
: Remove GlNav, GlNavItem, and GlFormCheckboxTree componentsRemove GlNav, GlNavItem, and GlFormCheckboxTree components.
Use
GlTabs
withGlTab
components for tabbed navigation. Use theGlFormCheckbox
component in loops for checkboxes.
v116.0.0
Major Changes
-
6d33a82
: Removes BDropdownItem dependency from GlFilteredSearchSuggestionThis change migrates the GlFilteredSearchSuggestion so it doesn't depend on the deprecated GlDropdownItem component which in turn depends on BDropdownItem.
This change reduces the surface area of the component by keeping only a small part of its API: the value that it emits via @suggestion and the icon it shows via the iconName prop.
Additionally, by removing the .native modifier in the listener support for Vue 3 is improved.
See https://v3-migration.vuejs.org/breaking-changes/v-on-native-modifier-removed
BREAKING CHANGE: Support for the following inherited props/attributes of GlFilteredSearchSuggestion are removed:
- avatarUrl
- iconColor
- iconRightAriaLabel
- iconRightName
- isChecked
- isCheckItem
- isCheckCentered
- secondaryText
- role
The filtered search suggestions are now rendered in a
<button>
tag, not a link<a href="#">
, so your automated tests may need updates to account for this.See: gitlab-org/gitlab-services/design.gitlab.com!4858 (merged)
v115.11.0
Minor Changes
-
53fbcb7
: Fix sr-only elements position inside a drawer
v115.10.0
Minor Changes
-
9509832
: Added class property to form:textarea that is applied to textarea element when character count is being used
v115.9.3
Patch Changes
-
0b20037
: Fix accessibility of initials-only avatars
v115.9.2
Patch Changes
-
5b58260
: Update table hover token to use target highlight
v115.9.1
Patch Changes
-
acab084
: Fix variable for striped table styles
v115.9.0
Minor Changes
-
ef46b21
: Add tooltip click-to-pin feature to line chart
v115.8.0
Minor Changes
-
a2a4e69
: Add control design tokens to tailwind classesAdd control border color, including states, as gl-border-control class Add gl-bg-control class for background color for default, disabled, and readonly states. The other control design tokens are added as classes in build_tokens.mjs to expose them to consumers who explicitly want to set non-stateful (static) background, border, and text color.
v115.7.0
Minor Changes
-
b87f697
: Update GlDisclosureItem item.to property typeSupport string | Location for 'item.to' which allows objects such as { path: '/my-path' } to be passed as Vue Router Link.
v115.6.1
Patch Changes
-
505f949
: GlBreadcrumbs: Add medium variant of collapse calculation
v115.6.0
Minor Changes
-
e44a774
: Update GlToast interactionAdd new toasts to the visual bottom of the list. Add smooth animation for progressive enhancement.
v115.5.0
Minor Changes
-
105a0f6
: Shrink drawer body only when headerSticky prop is present
v115.4.0
Minor Changes
-
e722d63
: Adds an additional prop to allow customizing the classes applied to the panel body.
v115.3.0
Minor Changes
-
73ed44e
: GlDashboardLayout: Added the newGlDashboardLayout
component.This new component is used for creating dashboards using the unified dashboard pattern.
v115.2.0
Minor Changes
-
8b3a26a
: Use design token $deprecated property from Design Token Format ModuleReplace "deprecated" property with "$deprecated" property as per Design Token Format Module spec Remove custom com.gitlab deprecated extension property
v115.1.0
Minor Changes
-
4d89ab9
: Add Figma extension properties to design tokens
v115.0.1
Patch Changes
-
6521c20
: GlBaseDropdown: Fix to allow esc key press on dropdown toggle when it is closed
v115.0.0
Major Changes
-
398785b
: Fixing aria roles for GlTabs and moving actions to a new #toolbar slot
v114.8.1
Patch Changes
-
bb05d85
: GlCollapsibleListbox: Use text.color.default on listbox search input
v114.8.0
Minor Changes
-
4df8645
: GlCollapsibleListbox: give search input an explicit color
v114.7.1
Patch Changes
-
879c52a
: GlChart: Fix legend averages when String values are used
v114.7.0
Minor Changes
-
a13fc40
: GlLink: Extend variants that can show the external link icon.
v114.6.0
Minor Changes
-
8880253
: GlSorting: Add visually hidden label to sort toggle
v114.5.0
Minor Changes
-
1468779
: GlDrawer: Allow content to shrink
v114.4.0
Minor Changes
-
050b00b
: GlTable: Improve Bootstrap table selector performance
v114.3.0
Minor Changes
-
9cc0aa8
: GlFilteredSearch: Add 'token-complete' and 'token-destroy' events.
v114.2.0
Minor Changes
-
a4e4e22
: GlTable: allow for using TH elements as row headers with TD-like styling. -
a290099
: DesignTokens: Add highlight design tokensIntroduce two types of highlights: "match" highlighting for search results and autocomplete suggestions, and "target" highlighting for referenced elements like URL anchors and emphasizing relationships.
Added in gitlab-org/gitlab-services/design.gitlab.com!4480 (merged)
v114.1.2
Patch Changes
-
3ee1796
: GlBreadcrumb: Overflow problems when size=md and single itemFix an issue that causes unexpected overflow handling problems and accessibility issues when the size prop is set to
md
and there is a single item with no avatarPath defined.
v114.1.1
Patch Changes
-
20463b1
: No code changes apart from adjusting the link inpackage.json
to point to the new location in the design.gitlab.com repository.
v114.1.0
v114.0.1
v114.0.0
v113.7.0
v113.6.0
v113.5.2
v113.5.1
v113.5.0
v113.4.0
v113.3.2
v113.3.1
v113.3.0
v113.2.4
v113.2.3
v113.2.2
v113.2.1
v113.2.0
v113.1.0
v113.0.0
v112.3.3
v112.3.2
v112.3.1
v112.3.0
v112.2.3
v112.2.2
v112.2.1
v112.2.0
v112.1.2
v112.1.1
v112.1.0
v112.0.1
v112.0.0
v111.10.2
v111.10.1
v111.10.0
v111.9.1
v111.9.0
v111.8.1
v111.8.0
v111.7.1
v111.7.0
v111.6.0
v111.5.0
v111.4.0
v111.3.1
v111.3.0
v111.2.0
v111.1.1
v111.1.0
v111.0.0
v110.1.0
v110.0.0
v109.2.1
v109.2.0
v109.1.0
v109.0.0
v108.10.0
v108.9.1
v108.9.0
v108.8.1
v108.8.0
v108.7.0
v108.6.0
v108.5.0
v108.4.1
v108.4.0
v108.3.1
v108.3.0
v108.2.0
v108.1.0
v108.0.1
v108.0.0
v107.7.1
v107.7.0
v107.6.2
v107.6.1
v107.6.0
v107.5.0
v107.4.0
v107.3.0
v107.2.1
v107.2.0
v107.1.1
v107.1.0
v107.0.1
v107.0.0
v106.2.2
v106.2.1
v106.2.0
v106.1.0
v106.0.0
v105.7.0
v105.6.0
v105.5.0
v105.4.0
v105.3.0
v105.2.0
v105.1.1
v105.1.0
v105.0.1
v105.0.0
v104.2.0
v104.1.2
v104.1.1
v104.1.0
v104.0.0
v103.7.1
v103.7.0
v103.6.1
v103.6.0
v103.5.1
v103.5.0
v103.4.1
v103.4.0
v103.3.0
v103.2.0
v103.1.0
v103.0.0
v102.5.0
v102.4.1
v102.4.0
v102.3.0
v102.2.0
v102.1.6
v102.1.5
v102.1.4
v102.1.3
v102.1.2
v102.1.1
v102.1.0
v102.0.0
v101.16.0
v101.15.0
v101.14.0
v101.13.0
v101.12.0
v101.11.0
v101.10.0
v101.9.0
v101.8.0
v101.7.1
v101.7.0
v101.6.2
v101.6.1
v101.6.0
v101.5.0
v101.4.0
v101.3.1
v101.3.0
v101.2.1
v101.2.0
v101.1.0
v101.0.1
v101.0.0
v100.0.0
v99.1.0
v99.0.1
v99.0.0
v98.5.2
v98.5.1
v98.5.0
v98.4.0
v98.3.0
v98.2.0
v98.1.2
v98.1.1
v98.1.0
v98.0.0
v97.3.0
v97.2.1
v97.2.0
v97.1.0
v97.0.0
v96.3.0
v96.2.0
v96.1.0
v96.0.0
v95.6.0
v95.5.1
v95.5.0
v95.4.0
v95.3.0
v95.2.1
v95.2.0
v95.1.1
v95.1.0
v95.0.0
v94.10.0
v94.9.0
v94.8.0
v94.7.0
v94.6.1
v94.6.0
v94.5.0
v94.4.2
v94.4.1
v94.4.0
v94.3.0
v94.2.0
v94.1.1
v94.1.0
v94.0.1
v94.0.0
v93.4.0
v93.3.0
v93.2.0
v93.1.0
v93.0.0
v92.5.0
v92.4.0
v92.3.1
v92.3.0
v92.2.0
v92.1.1
v92.1.0
v92.0.0
v91.15.0
v91.14.0
v91.13.0
v91.12.0
v91.11.0
v91.10.0
v91.9.0
v91.8.0
v91.7.0
v91.6.0
v91.5.0
v91.4.0
v91.3.0
v91.2.0
v91.1.2
v91.1.1
v91.1.0
v91.0.0
v90.5.0
v90.4.0
v90.3.0
v90.2.0
v90.1.0
v90.0.0
v89.7.0
v89.6.0
v89.5.0
v89.4.0
v89.3.0
v89.2.0
v89.1.0
v89.0.1
v89.0.0
v88.6.0
v88.5.0
v88.4.1
v88.4.0
v88.3.0
v88.2.1
v88.2.0
v88.1.0
v88.0.0
v87.8.0
v87.7.0
v87.6.1
v87.6.0
v87.5.1
v87.5.0
v87.4.0
v87.3.1
v87.3.0
v87.2.1
v87.2.0
v87.1.2
v87.1.1
v87.1.0
v87.0.0
v86.15.0
v86.14.4
v86.14.3
v86.14.2
v86.14.1
v86.14.0
v86.13.1
v86.13.0
v86.12.1
v86.12.0
v86.11.1
v86.11.0
v86.10.1
v86.10.0
v86.9.1
v86.9.0
v86.8.0
v86.7.1
v86.7.0
v86.6.0
v86.5.1
v86.5.0
v86.4.1
v86.4.0
v86.3.1
v86.3.0
v86.2.0
v86.1.0
v86.0.2
v86.0.1
v86.0.0
v85.14.0
v85.13.0
v85.12.2
v85.12.1
v85.12.0
v85.11.0
v85.10.0
v85.9.0
v85.8.0
v85.7.0
v85.6.0
v85.5.0
v85.4.1
v85.4.0
v85.3.1
v85.3.0
v85.2.2
v85.2.1
v85.2.0
v85.1.0
v85.0.2
v85.0.1
v85.0.0
v84.2.0
v84.1.0
v84.0.0
v83.0.0
v82.1.0
v82.0.1
v82.0.0
v81.1.0
v81.0.0
v80.20.1
v80.20.0
v80.19.1
v80.19.0
v80.18.0
v80.17.0
v80.16.2
v80.16.1
v80.16.0
v80.15.2
v80.15.1
v80.15.0
v80.14.1
v80.14.0
v80.13.2
v80.13.1
v80.13.0
v80.12.0
v80.11.0
v80.10.0
v80.9.0
v80.8.1
v80.8.0
v80.7.2
v80.7.1
v80.7.0
v80.6.1
v80.6.0
v80.5.0
v80.4.0
v80.3.0
v80.2.0
v80.1.0
v80.0.1
v80.0.0
v79.4.1
v79.4.0
v79.3.0
v79.2.0
v79.1.1
v79.1.0
v79.0.0
v78.19.0
v78.18.0
v78.17.0
v78.16.0
v78.15.2
v78.15.1
v78.15.0
v78.14.1
v78.14.0
v78.13.0
v78.12.0
v78.11.0
v78.10.1
v78.10.0
v78.9.0
v78.8.1
v78.8.0
v78.7.0
v78.6.1
v78.6.0
v78.5.0
v78.4.0
v78.3.0
v78.2.3
v78.2.2
v78.2.1
v78.2.0
v78.1.2
v78.1.1
v78.1.0
v78.0.0
v77.7.0
v77.6.0
v77.5.0
v77.4.0
v77.3.0
v77.2.0
v77.1.0
v77.0.0
Configuration
📅 Schedule: Branch creation - "on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this MR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.