Skip to content

chore: bump the go-minor-patch group across 1 directory with 3 updates - #22

Closed
dependabot[bot] wants to merge 0 commit into
mainfrom
dependabot/go_modules/go-minor-patch-a1b02a94d6
Closed

dependabot[bot] wants to merge 0 commit into
mainfrom
dependabot/go_modules/go-minor-patch-a1b02a94d6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 24, 2026

Copy link
Copy Markdown
Contributor

Bumps the go-minor-patch group with 3 updates in the / directory: charm.land/lipgloss/v2, github.com/slack-go/slack and github.com/yuin/goldmark.

Updates charm.land/lipgloss/v2 from 2.0.3 to 2.0.6

Release notes

Sourced from charm.land/lipgloss/v2's releases.

v2.0.6

Devanagari, auto-grapheme mode, and more

Hi! The big news in this release is that Lip Gloss now properly renders Devanagari (Hindi)! Beyond that—or perhaps as a result—Lip Gloss will now switch to mode 2027 for grapheme support when possible.

There's other good stuff too. Let's go!

क्या हाल है?

Hindi speakers, it's about time! Lip Gloss and Ultraviolet now properly renders Devanagari. That means Bubble Tea will as well.

This brings us to…

Cyberpunk 2027

Lip Gloss (and Ultraviolet) now asks the terminal at startup whether it supports Unicode core mode (DEC mode 2027), and when it does, measures widths the same way the terminal does. We did this for Devanagari but it also means Emojis and things render better now too. Let's go!

Shrinky tables: not anymore

Columns no longer shrink to zero width. Thanks, @​taciturnaxolotl!


Changelog

Fixed

  • d231906a63681848939223b6e03d049b513697a0: fix(table): prevent columns from shrinking to zero width (#671) (@​taciturnaxolotl)

Thoughts? Questions? We love hearing from you. Feel free to reach out on X, Discord, Slack, The Fediverse, Bluesky.

v2.0.5

Graphemes, Schmraphemes

If you’re using emojis in the terminal you're in for a rough ride. That said, we do what we can. This release brings some in some very specific edge case rendering improvements. Enjoy.

Enjoy!

Changelog

  • 10f9584edb197ddbbfc789081d33b6fadaea5742: chore(deps): bump ultraviolet for emoji-related improvements

... (truncated)

Commits
  • 733ce53 chore(deps): bump uv and ansi (#726)
  • 3147668 chore(deps): bump github.com/lucasb-eyer/go-colorful in the all group (#725)
  • 5696b28 chore(deps): bump actions/setup-go from 6 to 7 in the all group (#716)
  • d231906 fix(table): prevent columns from shrinking to zero width (#671)
  • d19c46c chore(deps): bump golang.org/x/sys in the all group (#714)
  • 10f9584 chore(deps): bump ultraviolet for emoji-related fixes
  • 5bd778d chore(deps): bump actions/checkout from 6 to 7 in the all group (#703)
  • f2a46ba chore(deps): bump golang.org/x/sys in the all group (#701)
  • b00306c fix: prevent crash when writing to a closed wrap writer
  • 40ec0e6 docs: fix typo in table comment (#641)
  • Additional commits viewable in compare view

Updates github.com/slack-go/slack from 0.23.1 to 0.29.0

Release notes

Sourced from github.com/slack-go/slack's releases.

v0.29.0

Fixed

New Contributors

Full Changelog: slack-go/slack@v0.28.0...v0.29.0

v0.28.0

Added

Fixed

Other

New Contributors

Full Changelog: slack-go/slack@v0.27.0...v0.28.0

v0.27.0

Added

  • Support for data_visualization block through DataVisualizationBlock.
  • Teamnow preservesenterprise_idandenterprise_namewhen Slack includes Enterprise org details in interaction payloadteam` objects.

Full Changelog: slack-go/slack@v0.26.0...v0.27.0

v0.26.0

What's Changed

New Contributors

Full Changelog: slack-go/slack@v0.25.0...v0.26.0

... (truncated)

Changelog

Sourced from github.com/slack-go/slack's changelog.

[0.29.0] - 2026-08-15

Fixed

  • slackevents: AppMentionEvent and MessageEvent now expose the Data Access API action token through a new ActionToken field, which reads action_token from the event object itself. Slack sends the token there on app_mention and message events, but both types only modelled it nested inside assistant_thread, so the token was silently dropped and bot-token calls to assistant.search.context failed with invalid_action_token. The existing AssistantThread field is unchanged (#1577, #1580).

[0.28.0] - 2026-08-15

Added

  • Block Kit: Add support for container block through ContainerBlock, with a NewContainerBlock constructor, fluent With* builders (WithTitle, WithRichTextTitle, WithSubtitle, WithIcon, WithWidth, WithCollapsible, WithHeaderDivider, WithBlockID), an AddChildBlock helper and a Validate method (#1574).
  • PostMessageWithResponse and PostMessageWithResponseContext return the full Message object from the chat.postMessage response alongside the channel and timestamp, giving access to response-only fields such as Message.ThreadTimestamp (#1572).
  • CompleteUploadExternalParameters and UploadFileParameters now take Channels, which shares a single uploaded file with up to 100 conversations in one files.completeUploadExternal request (#1579).

[0.27.0] - 2026-06-27

Added

  • Block Kit: Add support for data_visualization block through DataVisualizationBlock.
  • Interaction payloads: Team now preserves enterprise_id and enterprise_name when Slack includes Enterprise org details in interaction payload team objects.

[0.26.0] - 2026-06-14

Added

  • slackevents: EventsAPIEvent now unmarshals the is_ext_shared_channel field, and ParseEvent propagates it for callback events (#1564 and #1565).
  • Block Kit: HeaderBlock now supports the optional level field (1-4, mapping to H1-H4 heading levels), with a HeaderBlockOptionLevel builder (#1563).
  • Block Kit: CardBlock now supports the slack_icon field via the new SlackIconObject composition object (with a NewSlackIconObject constructor and WithSlackIcon builder) and the subtext field (with a WithSubtext builder). slack_icon is mutually exclusive with icon (#1562).

[0.25.0] - 2026-06-05

Changed

[!WARNING] Breaking change.

  • TableBlock.Rows is now [][]TableCell (was [][]*RichTextBlock), so table blocks no longer drop raw_text, raw_number, and null cells (#1558).

... (truncated)

Commits
  • 49178c5 bump to 0.29.0
  • 58389cc fix: parse top-level action tokens (#1580)
  • fef3e74 chore: bump to 0.28.0
  • 72865e1 feat: Expose full message object from chat.postMessage responses (#1572)
  • 1bb5bb6 feat: add support for the container block (#1574)
  • 46b261d feat: add Channels to share an uploaded file with multiple conversations (#...
  • ab81038 chore(deps): bump actions/stale from 10.4.0 to 11.0.0 (#1578)
  • 03b5203 chore(deps): bump actions/setup-go from 6 to 7 (#1576)
  • 8e93d85 chore(deps): bump actions/stale from 10.3.0 to 10.4.0 (#1573)
  • 4738e22 fix: correct typos in comments and debug strings (#1570)
  • Additional commits viewable in compare view

Updates github.com/yuin/goldmark from 1.8.4 to 1.8.5

Release notes

Sourced from github.com/yuin/goldmark's releases.

v1.8.5

Commits

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency label Jul 24, 2026
@dependabot
dependabot Bot requested a review from matcra587 as a code owner July 24, 2026 14:05
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency label Jul 24, 2026
@socket-security

socket-security Bot commented Jul 24, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedgithub.com/​slack-go/​slack@​v0.23.1 ⏵ v0.29.073 +1100100100100
Updatedgithub.com/​yuin/​goldmark@​v1.8.4 ⏵ v1.8.599 +1100100100100
Updatedcharm.land/​lipgloss/​v2@​v2.0.3 ⏵ v2.0.6100100100100100

View full report

@matcra587

Copy link
Copy Markdown
Owner

Leaving this open deliberately. Everything in this group except slack-go landed on main in 7cd4d82.

slack-go v0.27.0 is a breaking change, not a CI failure: TableCell became an interface, so internal/blockkit no longer compiles.

internal/blockkit/markdown.go:83:18: cannot use parsed (variable of type []*slack.RichTextBlock) as []slack.TableCell value in argument to block.AddRow
internal/blockkit/render.go:53:40: cannot use cell (variable of interface type slack.TableCell) as *RichTextBlock value in argument to richTextPlain
internal/blockkit/validate.go:538:27: cell.Type undefined (type slack.TableCell has no field or method Type)

That needs a real migration across markdown.go, render.go and validate.go, so it should be its own change rather than a dependency bump.

@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-minor-patch-a1b02a94d6 branch from 55ce544 to 14e1994 Compare August 28, 2026 14:06
@matcra587 matcra587 closed this Sep 11, 2026
@matcra587
matcra587 force-pushed the dependabot/go_modules/go-minor-patch-a1b02a94d6 branch from 14e1994 to 68c7084 Compare September 11, 2026 01:14
@dependabot
dependabot Bot deleted the dependabot/go_modules/go-minor-patch-a1b02a94d6 branch September 11, 2026 01:14

This branch was successfully deployed

1 active deployment
github-pages 68c70843 Deployed Sep 10, 2026 by matcra587 via Deploy to Pages #16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant