Skip to content

Update dependency @gitlab/ui to v94

This MR contains the following updates:

Package Type Update Change
@gitlab/ui dependencies major 93.2.0 -> 94.0.0

MR created with the help of gitlab-org/frontend/renovate-gitlab-bot


Release Notes

gitlab-org/gitlab-ui (@​gitlab/ui)

v94.0.0

Compare Source

Bug Fixes
  • GlTable: do not override CSS utils styling (9c3ce10)
BREAKING CHANGES
  • GlTable: This rewrites how GlTable's TH elements text alignment is applied. If you were previously passing gl-text-right to a table's thClass field option, you should migrate to the thAlignRight option instead. Not migrating could cause rendering issues in right-aligned sortable columns.

Before:

const fields = [
  {
    key: "column_one",
    label: __("First column"),
    sortable: true,
    thClass: 'gl-text-right',
  },
];

After:

const fields = [
  {
    key: "column_one",
    label: __("First column"),
    sortable: true,
    thAlignRight: true,
  },
];

v93.4.0

Compare Source

Features
  • DuoChat: Remove "generated by AI" message (0e6c72b)

v93.3.0

Compare Source

Features
  • DuoChatContextItemPopover: fix styling for long strings (b7b4517)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

Merge request reports

Loading