Skip to content

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

Compare Source

Minor Changes
  • f66a7da: Increase token component border radius.

v123.10.1

Compare Source

Patch Changes
  • 06552bc: Dashboard panel background to default

v123.10.0

Compare Source

Minor Changes
  • af3a0cf: Update GlTokenSelector to proper combobox

    The 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

Compare Source

Patch Changes
  • cde3dbf: Update Filtered search border radius

v123.9.1

Compare Source

Patch Changes
  • 775864e: Vertically align loading icon for dashboard panel

    This 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

Compare Source

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

Compare Source

Minor Changes
  • 20842cf: Add initial font-family, font-size, font-weight design tokens

    Add font.family, font.size, and font.weight design tokens Add line-height tokens to Tailwind config

v123.7.0

Compare Source

Minor Changes
  • 177c05d: GlFilteredSearch: Allow grouping items in suggestions

v123.6.1

Compare Source

Patch Changes
  • 29671e3: Fix Chrome 142 select rendering by adding default size attribute to GlFormSelect

    Chrome 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

Compare Source

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

Compare Source

Minor Changes
  • 63559d3: Add prop to keep GlButton accessible when loading

v123.4.0

Compare Source

Minor Changes
  • 31dd61d: Update Tailwind config values to remove fallbacks

    Update 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)

v123.3.1

Compare Source

Patch Changes
  • 41c2dac: Guard base dropdown's containsElement method

    This ensures that consumers' specs don't fail due to not having access to the containsElement method that the BaseDropdown component exposes.

v123.3.0

Compare Source

Minor Changes
  • 53c5bc6: Add count and countSrText prop to GlButton

v123.2.0

Compare Source

Minor Changes
  • 1127169: Make gl-popover customClasses flexible

    Previously, 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

Compare Source

Minor Changes
  • d68c10e: Define shadow design tokens

    Add box shadow design tokens to Tailwind config Update StyleDictionary transform groups with gitlab/ namespace Add shadow/css/shorthand transform to CSS/SCSS transform groups Add getTokenCssCustomProperty utility to Tailwind token formatter

v123.0.0

Compare Source

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

Compare Source

Minor Changes
  • 677809f: Define zindex design tokens

v122.13.0

Compare Source

Minor Changes
  • 00ed526: Pass CSS classes to dashboard panel tooltip

    This 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

Compare Source

Patch Changes
  • d4b817e: Portal fixed dropdowns to the root

    Fixed 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 description

    Reduces margin-top from gl-mt-3 to gl-mt-2 for better visual alignment.

v122.12.0

Compare Source

Minor Changes
  • 4d4dc0c: Define opacity design tokens

v122.11.0

Compare Source

Minor Changes
  • 9f66737: Modals now register their own container

    This makes it possible to write container queries against the gl-modal container within GlModal.

v122.10.0

Compare Source

Minor Changes
  • 8e659de: Update GlBanner to use GlIllustration

  • 07e30c5: Refactor GlTokenSelector to accessible combobox widget

    This non-breaking change refactors the GlTokenContainer to move ARIA attributes down into the nested text input. It also removes the state prop from GlTokenContainer. The state prop is already being passed to the parent GlTokenSelector 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

Compare Source

Minor Changes
  • dcc09da: Define border-radius design tokens

    Adds 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

Compare Source

Minor Changes
  • b3b41f4: Remove dropdown border from panel and tip

v122.7.0

Compare Source

Minor Changes

v122.6.1

Compare Source

Patch Changes
  • 57fa420: Hide banners' illustrations below md breakpoint

    We recently migrated banner.scss to our own responsive mixin. However, due to how Bootstrap's media-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

Compare Source

Minor Changes
  • 4e0ba3d: Define spacing-scale design tokens

    Adds 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 and info-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

Compare Source

Minor Changes
  • dc09a77: GlBarChart: Add scoped slots for tooltip customization

    Introduces tooltip-title, tooltip-content and tooltip-value scoped slots to allow consumers to customize the chart's tooltip.

v122.4.0

Compare Source

Minor Changes
  • 6c35948: Create container queries mixins

    This creates the gl-container-width-up and gl-container-width-down mixins. These mixins generate container queries that only apply when the html has the .with-gl-container-queries class. By default, these mixins also generate media queries which only apply when the html 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

Compare Source

Minor Changes
  • e0afad0: Change checked type to undefined

v122.2.1

Compare Source

Patch Changes
  • e132332: Fix edge case of @​max classes

    Media 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

Compare Source

Minor Changes
  • 7dbac99: Use filter CSS property for popover, tooltips, and dropdowns drop shadow

    Use filter: drop-shadow(...) CSS property instead of box-shadow to include tip pseudo elements in popovers, tooltips, and dropdowns

v122.1.2

Compare Source

Patch Changes
  • 380412b: Reverts spacing-scale and border-radius design tokens

    The 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

Compare Source

Patch Changes
  • 65a7d84: GlFormCheckbox: use a unique ID if the provided one is falsey

    This 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

Compare Source

Minor Changes
  • c81d055: Define spacing-scale and border-radius design tokens

    Adds spacing-scale design tokens Adds border.radius design tokens

v122.0.0

Compare Source

Major Changes
  • c3c6b62: Drop Bootstrap's jumbotron component

    We don't use the jumbotron component anywhere, so it can be removed altogether.

  • 008f805: Drop Bootstrap's dropdowns responsive styles

    This 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 groups

    Removes styles for Bootstrap's horizontal list groups which we don't use.

  • cc604a1: Remove support for some of Bootstrap's card styles

    We 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

Compare Source

Minor Changes
  • bbf3e8d: Add labelLinkAttrs prop to GlAvatarLabeled

v121.0.1

Compare Source

Patch Changes
  • f510582: GlButton: Allow array and object for buttonTextClasses prop

v121.0.0

Compare Source

Major Changes
  • 16c6f10: Remove BFormCheckbox from GlFormCheckbox

    Part 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

Compare Source

Minor Changes
  • 8e3d8ce: Update GlEmptyState to use GlIllustration
Patch Changes
  • 8003e57: Add role="presentation" to BPopover

    element

v120.0.0

Compare Source

Major Changes
  • 66f437d: GlBadge: removed muted variant and made neutral default

v119.2.0

Compare Source

Minor Changes
  • 126887b: GlBarChart: Adds new presentation prop to control multi-series layout behavior.

v119.1.0

Compare Source

Minor Changes
  • 44c161e: Create a Tailwind CQs/MQs plugin

    This creates a Tailwind plugin that matches @<breakpoint utils. For those utils, it generates media queries by default. If Tailwind is executed with the USE_TAILWIND_CONTAINER_QUERIES flag enabled, the plugin generates container queries instead of media queries. Normal media query utils, like md: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

Compare Source

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

Compare Source

Patch Changes
  • 37eed8f: Move gl-action-neutral-colors mixin to Tailwind utility

    Remove gl-action-neutral-colors SCSS mixin Update @include usage to @apply

v118.1.1

Compare Source

Patch Changes
  • d3ede83: Add headerLevel prop to GlEmptyState component

v118.1.0

Compare Source

Minor Changes
  • 5543fe1: Add GlIllustration component

v118.0.0

Compare Source

Major Changes
  • f958c0a: Remove feature-button-border feature flag

v117.1.0

Compare Source

Minor Changes

v117.0.2

Compare Source

Patch Changes
  • 8baa444: Improve GlTokenSelector line wrapping of tokens and its input.

v117.0.1

Compare Source

Patch Changes
  • 7df7f15: Use semantic design color token for pre elements.

    The previous color was the static $gray-900. Now it's color.neutral.950 (light mode), color.neutral.0 (dark mode).

v117.0.0

Compare Source

Major Changes
  • dd766e5: Remove GlNav, GlNavItem, and GlFormCheckboxTree components

    Remove GlNav, GlNavItem, and GlFormCheckboxTree components.

    Use GlTabs with GlTab components for tabbed navigation. Use the GlFormCheckbox component in loops for checkboxes.

v116.0.0

Compare Source

Major Changes
  • 6d33a82: Removes BDropdownItem dependency from GlFilteredSearchSuggestion

    This 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

Compare Source

Minor Changes
  • 53fbcb7: Fix sr-only elements position inside a drawer

v115.10.0

Compare Source

Minor Changes
  • 9509832: Added class property to form:textarea that is applied to textarea element when character count is being used

v115.9.3

Compare Source

Patch Changes
  • 0b20037: Fix accessibility of initials-only avatars

v115.9.2

Compare Source

Patch Changes
  • 5b58260: Update table hover token to use target highlight

v115.9.1

Compare Source

Patch Changes
  • acab084: Fix variable for striped table styles

v115.9.0

Compare Source

Minor Changes
  • ef46b21: Add tooltip click-to-pin feature to line chart

v115.8.0

Compare Source

Minor Changes
  • a2a4e69: Add control design tokens to tailwind classes

    Add 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

Compare Source

Minor Changes
  • b87f697: Update GlDisclosureItem item.to property type

    Support string | Location for 'item.to' which allows objects such as { path: '/my-path' } to be passed as Vue Router Link.

v115.6.1

Compare Source

Patch Changes
  • 505f949: GlBreadcrumbs: Add medium variant of collapse calculation

v115.6.0

Compare Source

Minor Changes
  • e44a774: Update GlToast interaction

    Add new toasts to the visual bottom of the list. Add smooth animation for progressive enhancement.

v115.5.0

Compare Source

Minor Changes
  • 105a0f6: Shrink drawer body only when headerSticky prop is present

v115.4.0

Compare Source

Minor Changes
  • e722d63: Adds an additional prop to allow customizing the classes applied to the panel body.

v115.3.0

Compare Source

Minor Changes
  • 73ed44e: GlDashboardLayout: Added the new GlDashboardLayout component.

    This new component is used for creating dashboards using the unified dashboard pattern.

v115.2.0

Compare Source

Minor Changes
  • 8b3a26a: Use design token $deprecated property from Design Token Format Module

    Replace "deprecated" property with "$deprecated" property as per Design Token Format Module spec Remove custom com.gitlab deprecated extension property

v115.1.0

Compare Source

Minor Changes
  • 4d89ab9: Add Figma extension properties to design tokens

v115.0.1

Compare Source

Patch Changes
  • 6521c20: GlBaseDropdown: Fix to allow esc key press on dropdown toggle when it is closed

v115.0.0

Compare Source

Major Changes
  • 398785b: Fixing aria roles for GlTabs and moving actions to a new #toolbar slot

v114.8.1

Compare Source

Patch Changes
  • bb05d85: GlCollapsibleListbox: Use text.color.default on listbox search input

v114.8.0

Compare Source

Minor Changes
  • 4df8645: GlCollapsibleListbox: give search input an explicit color

v114.7.1

Compare Source

Patch Changes
  • 879c52a: GlChart: Fix legend averages when String values are used

v114.7.0

Compare Source

Minor Changes
  • a13fc40: GlLink: Extend variants that can show the external link icon.

v114.6.0

Compare Source

Minor Changes
  • 8880253: GlSorting: Add visually hidden label to sort toggle

v114.5.0

Compare Source

Minor Changes
  • 1468779: GlDrawer: Allow content to shrink

v114.4.0

Compare Source

Minor Changes
  • 050b00b: GlTable: Improve Bootstrap table selector performance

v114.3.0

Compare Source

Minor Changes
  • 9cc0aa8: GlFilteredSearch: Add 'token-complete' and 'token-destroy' events.

v114.2.0

Compare Source

Minor Changes
  • a4e4e22: GlTable: allow for using TH elements as row headers with TD-like styling.

  • a290099: DesignTokens: Add highlight design tokens

    Introduce 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

Compare Source

Patch Changes
  • 3ee1796: GlBreadcrumb: Overflow problems when size=md and single item

    Fix 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

Compare Source

Patch Changes
  • 20463b1: No code changes apart from adjusting the link in package.json to point to the new location in the design.gitlab.com repository.

v114.1.0

Compare Source

v114.0.1

Compare Source

v114.0.0

Compare Source

v113.7.0

Compare Source

v113.6.0

Compare Source

v113.5.2

Compare Source

v113.5.1

Compare Source

v113.5.0

Compare Source

v113.4.0

Compare Source

v113.3.2

Compare Source

v113.3.1

Compare Source

v113.3.0

Compare Source

v113.2.4

Compare Source

v113.2.3

Compare Source

v113.2.2

Compare Source

v113.2.1

Compare Source

v113.2.0

Compare Source

v113.1.0

Compare Source

v113.0.0

Compare Source

v112.3.3

Compare Source

v112.3.2

Compare Source

v112.3.1

Compare Source

v112.3.0

Compare Source

v112.2.3

Compare Source

v112.2.2

Compare Source

v112.2.1

Compare Source

v112.2.0

Compare Source

v112.1.2

Compare Source

v112.1.1

Compare Source

v112.1.0

Compare Source

v112.0.1

Compare Source

v112.0.0

Compare Source

v111.10.2

Compare Source

v111.10.1

Compare Source

v111.10.0

Compare Source

v111.9.1

Compare Source

v111.9.0

Compare Source

v111.8.1

Compare Source

v111.8.0

Compare Source

v111.7.1

Compare Source

v111.7.0

Compare Source

v111.6.0

Compare Source

v111.5.0

Compare Source

v111.4.0

Compare Source

v111.3.1

Compare Source

v111.3.0

Compare Source

v111.2.0

Compare Source

v111.1.1

Compare Source

v111.1.0

Compare Source

v111.0.0

Compare Source

v110.1.0

Compare Source

v110.0.0

Compare Source

v109.2.1

Compare Source

v109.2.0

Compare Source

v109.1.0

Compare Source

v109.0.0

Compare Source

v108.10.0

Compare Source

v108.9.1

Compare Source

v108.9.0

Compare Source

v108.8.1

Compare Source

v108.8.0

Compare Source

v108.7.0

Compare Source

v108.6.0

Compare Source

v108.5.0

Compare Source

v108.4.1

Compare Source

v108.4.0

Compare Source

v108.3.1

Compare Source

v108.3.0

Compare Source

v108.2.0

Compare Source

v108.1.0

Compare Source

v108.0.1

Compare Source

v108.0.0

Compare Source

v107.7.1

Compare Source

v107.7.0

Compare Source

v107.6.2

Compare Source

v107.6.1

Compare Source

v107.6.0

Compare Source

v107.5.0

Compare Source

v107.4.0

Compare Source

v107.3.0

Compare Source

v107.2.1

Compare Source

v107.2.0

Compare Source

v107.1.1

Compare Source

v107.1.0

Compare Source

v107.0.1

Compare Source

v107.0.0

Compare Source

v106.2.2

Compare Source

v106.2.1

Compare Source

v106.2.0

Compare Source

v106.1.0

Compare Source

v106.0.0

Compare Source

v105.7.0

Compare Source

v105.6.0

Compare Source

v105.5.0

Compare Source

v105.4.0

Compare Source

v105.3.0

Compare Source

v105.2.0

Compare Source

v105.1.1

Compare Source

v105.1.0

Compare Source

v105.0.1

Compare Source

v105.0.0

Compare Source

v104.2.0

Compare Source

v104.1.2

Compare Source

v104.1.1

Compare Source

v104.1.0

Compare Source

v104.0.0

Compare Source

v103.7.1

Compare Source

v103.7.0

Compare Source

v103.6.1

Compare Source

v103.6.0

Compare Source

v103.5.1

Compare Source

v103.5.0

Compare Source

v103.4.1

Compare Source

v103.4.0

Compare Source

v103.3.0

Compare Source

v103.2.0

Compare Source

v103.1.0

Compare Source

v103.0.0

Compare Source

v102.5.0

Compare Source

v102.4.1

Compare Source

v102.4.0

Compare Source

v102.3.0

Compare Source

v102.2.0

Compare Source

v102.1.6

Compare Source

v102.1.5

Compare Source

v102.1.4

Compare Source

v102.1.3

Compare Source

v102.1.2

Compare Source

v102.1.1

Compare Source

v102.1.0

Compare Source

v102.0.0

Compare Source

v101.16.0

Compare Source

v101.15.0

Compare Source

v101.14.0

Compare Source

v101.13.0

Compare Source

v101.12.0

Compare Source

v101.11.0

Compare Source

v101.10.0

Compare Source

v101.9.0

Compare Source

v101.8.0

Compare Source

v101.7.1

Compare Source

v101.7.0

Compare Source

v101.6.2

Compare Source

v101.6.1

Compare Source

v101.6.0

Compare Source

v101.5.0

Compare Source

v101.4.0

Compare Source

v101.3.1

Compare Source

v101.3.0

Compare Source

v101.2.1

Compare Source

v101.2.0

Compare Source

v101.1.0

Compare Source

v101.0.1

Compare Source

v101.0.0

Compare Source

v100.0.0

Compare Source

v99.1.0

Compare Source

v99.0.1

Compare Source

v99.0.0

Compare Source

v98.5.2

Compare Source

v98.5.1

Compare Source

v98.5.0

Compare Source

v98.4.0

Compare Source

v98.3.0

Compare Source

v98.2.0

Compare Source

v98.1.2

Compare Source

v98.1.1

Compare Source

v98.1.0

Compare Source

v98.0.0

Compare Source

v97.3.0

Compare Source

v97.2.1

Compare Source

v97.2.0

Compare Source

v97.1.0

Compare Source

v97.0.0

Compare Source

v96.3.0

Compare Source

v96.2.0

Compare Source

v96.1.0

Compare Source

v96.0.0

Compare Source

v95.6.0

Compare Source

v95.5.1

Compare Source

v95.5.0

Compare Source

v95.4.0

Compare Source

v95.3.0

Compare Source

v95.2.1

Compare Source

v95.2.0

Compare Source

v95.1.1

Compare Source

v95.1.0

Compare Source

v95.0.0

Compare Source

v94.10.0

Compare Source

v94.9.0

Compare Source

v94.8.0

Compare Source

v94.7.0

Compare Source

v94.6.1

Compare Source

v94.6.0

Compare Source

v94.5.0

Compare Source

v94.4.2

Compare Source

v94.4.1

Compare Source

v94.4.0

Compare Source

v94.3.0

Compare Source

v94.2.0

Compare Source

v94.1.1

Compare Source

v94.1.0

Compare Source

v94.0.1

Compare Source

v94.0.0

Compare Source

v93.4.0

Compare Source

v93.3.0

Compare Source

v93.2.0

Compare Source

v93.1.0

Compare Source

v93.0.0

Compare Source

v92.5.0

Compare Source

v92.4.0

Compare Source

v92.3.1

Compare Source

v92.3.0

Compare Source

v92.2.0

Compare Source

v92.1.1

Compare Source

v92.1.0

Compare Source

v92.0.0

Compare Source

v91.15.0

Compare Source

v91.14.0

Compare Source

v91.13.0

Compare Source

v91.12.0

Compare Source

v91.11.0

Compare Source

v91.10.0

Compare Source

v91.9.0

Compare Source

v91.8.0

Compare Source

v91.7.0

Compare Source

v91.6.0

Compare Source

v91.5.0

Compare Source

v91.4.0

Compare Source

v91.3.0

Compare Source

v91.2.0

Compare Source

v91.1.2

Compare Source

v91.1.1

Compare Source

v91.1.0

Compare Source

v91.0.0

Compare Source

v90.5.0

Compare Source

v90.4.0

Compare Source

v90.3.0

Compare Source

v90.2.0

Compare Source

v90.1.0

Compare Source

v90.0.0

Compare Source

v89.7.0

Compare Source

v89.6.0

Compare Source

v89.5.0

Compare Source

v89.4.0

Compare Source

v89.3.0

Compare Source

v89.2.0

Compare Source

v89.1.0

Compare Source

v89.0.1

Compare Source

v89.0.0

Compare Source

v88.6.0

Compare Source

v88.5.0

Compare Source

v88.4.1

Compare Source

v88.4.0

Compare Source

v88.3.0

Compare Source

v88.2.1

Compare Source

v88.2.0

Compare Source

v88.1.0

Compare Source

v88.0.0

Compare Source

v87.8.0

Compare Source

v87.7.0

Compare Source

v87.6.1

Compare Source

v87.6.0

Compare Source

v87.5.1

Compare Source

v87.5.0

Compare Source

v87.4.0

Compare Source

v87.3.1

Compare Source

v87.3.0

Compare Source

v87.2.1

Compare Source

v87.2.0

Compare Source

v87.1.2

Compare Source

v87.1.1

Compare Source

v87.1.0

Compare Source

v87.0.0

Compare Source

v86.15.0

Compare Source

v86.14.4

Compare Source

v86.14.3

Compare Source

v86.14.2

Compare Source

v86.14.1

Compare Source

v86.14.0

Compare Source

v86.13.1

Compare Source

v86.13.0

Compare Source

v86.12.1

Compare Source

v86.12.0

Compare Source

v86.11.1

Compare Source

v86.11.0

Compare Source

v86.10.1

Compare Source

v86.10.0

Compare Source

v86.9.1

Compare Source

v86.9.0

Compare Source

v86.8.0

Compare Source

v86.7.1

Compare Source

v86.7.0

Compare Source

v86.6.0

Compare Source

v86.5.1

Compare Source

v86.5.0

Compare Source

v86.4.1

Compare Source

v86.4.0

Compare Source

v86.3.1

Compare Source

v86.3.0

Compare Source

v86.2.0

Compare Source

v86.1.0

Compare Source

v86.0.2

Compare Source

v86.0.1

Compare Source

v86.0.0

Compare Source

v85.14.0

Compare Source

v85.13.0

Compare Source

v85.12.2

Compare Source

v85.12.1

Compare Source

v85.12.0

Compare Source

v85.11.0

Compare Source

v85.10.0

Compare Source

v85.9.0

Compare Source

v85.8.0

Compare Source

v85.7.0

Compare Source

v85.6.0

Compare Source

v85.5.0

Compare Source

v85.4.1

Compare Source

v85.4.0

Compare Source

v85.3.1

Compare Source

v85.3.0

Compare Source

v85.2.2

Compare Source

v85.2.1

Compare Source

v85.2.0

Compare Source

v85.1.0

Compare Source

v85.0.2

Compare Source

v85.0.1

Compare Source

v85.0.0

Compare Source

v84.2.0

Compare Source

v84.1.0

Compare Source

v84.0.0

Compare Source

v83.0.0

Compare Source

v82.1.0

Compare Source

v82.0.1

Compare Source

v82.0.0

Compare Source

v81.1.0

Compare Source

v81.0.0

Compare Source

v80.20.1

Compare Source

v80.20.0

Compare Source

v80.19.1

Compare Source

v80.19.0

Compare Source

v80.18.0

Compare Source

v80.17.0

Compare Source

v80.16.2

Compare Source

v80.16.1

Compare Source

v80.16.0

Compare Source

v80.15.2

Compare Source

v80.15.1

Compare Source

v80.15.0

Compare Source

v80.14.1

Compare Source

v80.14.0

Compare Source

v80.13.2

Compare Source

v80.13.1

Compare Source

v80.13.0

Compare Source

v80.12.0

Compare Source

v80.11.0

Compare Source

v80.10.0

Compare Source

v80.9.0

Compare Source

v80.8.1

Compare Source

v80.8.0

Compare Source

v80.7.2

Compare Source

v80.7.1

Compare Source

v80.7.0

Compare Source

v80.6.1

Compare Source

v80.6.0

Compare Source

v80.5.0

Compare Source

v80.4.0

Compare Source

v80.3.0

Compare Source

v80.2.0

Compare Source

v80.1.0

Compare Source

v80.0.1

Compare Source

v80.0.0

Compare Source

v79.4.1

Compare Source

v79.4.0

Compare Source

v79.3.0

Compare Source

v79.2.0

Compare Source

v79.1.1

Compare Source

v79.1.0

Compare Source

v79.0.0

Compare Source

v78.19.0

Compare Source

v78.18.0

Compare Source

v78.17.0

Compare Source

v78.16.0

Compare Source

v78.15.2

Compare Source

v78.15.1

Compare Source

v78.15.0

Compare Source

v78.14.1

Compare Source

v78.14.0

Compare Source

v78.13.0

Compare Source

v78.12.0

Compare Source

v78.11.0

Compare Source

v78.10.1

Compare Source

v78.10.0

Compare Source

v78.9.0

Compare Source

v78.8.1

Compare Source

v78.8.0

Compare Source

v78.7.0

Compare Source

v78.6.1

Compare Source

v78.6.0

Compare Source

v78.5.0

Compare Source

v78.4.0

Compare Source

v78.3.0

Compare Source

v78.2.3

Compare Source

v78.2.2

Compare Source

v78.2.1

Compare Source

v78.2.0

Compare Source

v78.1.2

Compare Source

v78.1.1

Compare Source

v78.1.0

Compare Source

v78.0.0

Compare Source

v77.7.0

Compare Source

v77.6.0

Compare Source

v77.5.0

Compare Source

v77.4.0

Compare Source

v77.3.0

Compare Source

v77.2.0

Compare Source

v77.1.0

Compare Source

v77.0.0

Compare Source


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.

Edited by GitLab Dependency Bot

Merge request reports

Loading