Skip to content

chore(deps): Bump the dependencies group across 1 directory with 3 updates#300

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/dependencies-b44e12bedb
Open

chore(deps): Bump the dependencies group across 1 directory with 3 updates#300
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/dependencies-b44e12bedb

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 16, 2026

Bumps the dependencies group with 3 updates in the / directory: github.com/getkin/kin-openapi, github.com/getsentry/sentry-go and github.com/slack-go/slack.

Updates github.com/getkin/kin-openapi from 0.133.0 to 0.134.0

Release notes

Sourced from github.com/getkin/kin-openapi's releases.

v0.134.0

What's Changed

New Contributors

Full Changelog: getkin/kin-openapi@v0.133.0...v0.134.0

Commits
  • 713eff1 openapi3: serialize Extensions when using $ref (#1131)
  • 88234d0 openapi3: process discriminator mapping values as refs (#1108)
  • b4a86ce feat: add document-scoped format validators to prevent global state pollution...
  • fd00a26 openapi3filter: fix bug where absent optional properties fail validation in f...
  • ede8b1f openapi3: add file path to origin location tracking (#1128)
  • 45db2ad Fix RFC3339 validation (#1104)
  • 2ac6346 feat: support rejecting when request body present but not required by specifi...
  • 6321ee8 openapi2conv: fix allOf inside additionalProperties (#1103)
  • f53e403 tidy(docs): Update references to oapi-codegen project URL (issue getkin#1094)...
  • 6a04fdf openapi3: Allow usage of empty string (#1096)
  • Additional commits viewable in compare view

Updates github.com/getsentry/sentry-go from 0.42.0 to 0.43.0

Release notes

Sourced from github.com/getsentry/sentry-go's releases.

0.43.0

Breaking Changes 🛠

  • Add support for go 1.26 by @​giortzisg in #1193
    • bump minimum supported go version to 1.24
  • change type signature of attributes for Logs and Metrics. by @​giortzisg in #1205
    • users are not supposed to modify Attributes directly on the Log/Metric itself, but this is still is a breaking change on the type.
  • Send uint64 overflowing attributes as numbers. by @​giortzisg in #1198
    • The SDK was converting overflowing uint64 attributes to strings for slog and logrus integrations. To eliminate double types for these attributes, the SDK now sends the overflowing attribute as is, and lets the server handle the overflow appropriately.
    • It is expected that overflowing unsigned integers would now get dropped, instead of converted to strings.

New Features ✨

Bug Fixes 🐛

Internal Changes 🔧

Deps

Other

Changelog

Sourced from github.com/getsentry/sentry-go's changelog.

0.43.0

Breaking Changes 🛠

  • Add support for go 1.26 by @​giortzisg in #1193
    • bump minimum supported go version to 1.24
  • change type signature of attributes for Logs and Metrics. by @​giortzisg in #1205
    • users are not supposed to modify Attributes directly on the Log/Metric itself, but this is still is a breaking change on the type.
  • Send uint64 overflowing attributes as numbers. by @​giortzisg in #1198
    • The SDK was converting overflowing uint64 attributes to strings for slog and logrus integrations. To eliminate double types for these attributes, the SDK now sends the overflowing attribute as is, and lets the server handle the overflow appropriately.
    • It is expected that overflowing unsigned integers would now get dropped, instead of converted to strings.

New Features ✨

Bug Fixes 🐛

Internal Changes 🔧

Deps

Other

Commits
  • 8dbf970 release: 0.43.0
  • 44caaae ref!: modify Attributes type for Logs and Metrics (#1205)
  • 71a7230 fix: improve otel span map cleanup performance (#1200)
  • 0fe1ae5 feat: add zap logging integration (#1184)
  • e1e8ceb feat!: Send uint64 overflowing attributes as numbers for slog and logrus (#1198)
  • 0faba36 chore: add omitzero and remove custom serialization (#1197)
  • 648d2d2 build(deps): bump golang.org/x/crypt to 0.48.0 (#1196)
  • 18c50b9 fix(deps): use go1.24.0 (#1195)
  • 2d5637b build(deps)!: add support for go1.26 (#1193)
  • f057a8d fix: ensure correct signal delivery on multi-client setups (#1190)
  • Additional commits viewable in compare view

Updates github.com/slack-go/slack from 0.17.3 to 0.19.0

Release notes

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

v0.19.0

Added

Full Changelog: slack-go/slack@v0.18.0...v0.19.0

v0.18.0

This is the first stable release in the 0.18.x series — it includes everything from rc1 and rc2 plus a handful of new features and fixes that landed since.

There are a few breaking changes in this one. I tried to keep them to the minimum necessary but some were long overdue. Here's what you need to know.

Breaking changes

File upload API cleanup (#1481)

Slack discontinued the old files.upload API back in November 2025, so we finally removed the deprecated UploadFile, UploadFileContext, and FileUploadParameters. The V2 variants have been renamed to drop the suffix:

  • UploadFileV2UploadFile
  • UploadFileV2ContextUploadFileContext
  • UploadFileV2ParametersUploadFileParameters

Should be a quick search-and-replace for most codebases.

GetReactions return type (#1480)

GetReactions now returns ReactedItem instead of []ItemReaction. This aligns with what the Slack API actually returns — the item itself (message, file, or file_comment) alongside its reactions. To migrate, use resp.Reactions to get at the slice.

Settings pointer fields (#1461)

Settings.Interactivity and Settings.EventSubscriptions are now pointers so they can be properly omitted when empty. You'll need nil checks if you're accessing these directly.

Minimum Go version is now 1.25

Up from 1.22 in v0.17.x. The go.mod directive is go 1.25.

Added

  • Admin Conversations API — Full admin.conversations.* support: core operations, bulk operations, preferences, retention, restrict access, and EKM channel info. (#1329)
  • admin.roles.* API methodslistAssignments, addAssignments, and removeAssignments. (#1520)
  • Chat Streaming API — Real-time chat streaming with example usage. (#1506)
  • Data Access API — Full support with example implementation. (#1439)
  • Work Objects — Chat unfurl with Work Object metadata, entity details (flexpane), entity_details_requested event, and associated types. (#1529)
  • Huddle supportHuddleRoom, HuddleParticipantEvent, and HuddleRecording types for huddle events.
  • Table blocks — Parse and create table blocks. (#1490, #1511)
  • Context actions blockcontext_actions block type. (#1495)
  • Workflow buttonworkflow_button block element. (#1499)
  • Call block dataCallBlock now includes full call data. (#897)
  • Cursor-based GetUsers pagination (#1465)

... (truncated)

Changelog

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

[0.19.0] - 2026-03-04

Added

  • Optional HTTP retry for Web API — Retries are off by default. Enable with OptionRetry(n) for 429-only retries or OptionRetryConfig(cfg) for full control including 5xx and connection errors with exponential backoff. (#1532)
  • task_card and plan agent blocks — New block types for task cards and plan agent blocks. (#1536)

Changed

  • CI: bumped actions/stale from 10.1.1 to 10.2.0. (#1534)
  • Use golangci-lint in Makefile. (#1533)

[0.18.0] - 2026-02-21

Added

  • focus_on_load support for remaining block elements — Static/external/users/conversations/channels select, multi-select variants, datepicker, timepicker, plain_text_input, checkboxes, radio_buttons, and number_input. (#1519)
  • PlainText and PreviewPlainText fields on File — Email file objects now include the plain text body fields instead of silently discarding them. (#1522)
  • Missing fields on User, UserProfile, and EnterpriseUserwho_can_share_contact_card, always_active, pronouns, image_1024, is_custom_image, status_text_canonical, huddle_state, huddle_state_expiration_ts, start_date, and is_primary_owner. (#1526)
  • Work Objects support — Chat unfurl with Work Object metadata, entity details (flexpane), entity_details_requested event, and associated types (WorkObjectMetadata, WorkObjectEntity, WorkObjectExternalRef). (#1529)
  • admin.roles.* API methodsadmin.roles.listAssignments, admin.roles.addAssignments, and admin.roles.removeAssignments. (#1520)

Fixed

  • UserProfile.Skype JSON tag — Corrected typo from "skyp" to "skype". (#1524)
  • assistant.threads.setSuggestedPrompts title parameter — Title is now sent when non-empty. (#1528)

Changed

  • CI test matrix updated: dropped Go 1.24, added Go 1.26; bumped golangci-lint to v2.10.1. (#1530)

[0.18.0-rc2] - 2026-01-28

Added

  • Audit Logs example - New example demonstrating how to use the Audit Logs API. (#1144)
  • Admin Conversations API support - Comprehensive support for admin.conversations.* methods including core operations (archive, unarchive, create, delete, rename, invite, search, lookup, getTeams, convertToPrivate, convertToPublic, disconnectShared, setTeams), bulk operations (bulkArchive, bulkDelete, bulkMove), preferences, retention management, restrict access controls, and EKM channel info. (#1329)

Changed

  • BREAKING: Removed deprecated UploadFile, UploadFileContext, and FileUploadParameters. The files.upload API was discontinued by Slack on November 12, 2025. (#1481)
  • BREAKING: Renamed UploadFileV2UploadFile, UploadFileV2ContextUploadFileContext, and UploadFileV2ParametersUploadFileParameters. The "V2" suffix is no longer needed now that the old API is removed. (#1481)

... (truncated)

Commits
  • eaddf77 chore: v0.19.0
  • 777ee2f feat: add optional HTTP retry for Web API (429, 5xx, connection errors) (#1532)
  • 9c057b3 feat: add support for task_card and plan agent blocks (#1536)
  • be04e65 chore(deps): bump actions/stale from 10.1.1 to 10.2.0 (#1534)
  • a5a5f46 chore: use golangci-lint in Makefile (#1533)
  • e5ea969 chore: v0.18.0
  • 8416915 chore: add missing entries to CHANGELOG
  • 615a158 chore: deprecate go 1.24 and introduce 1.26 (#1530)
  • 16c0f77 feat(admin): Implement missing admin.roles.* API method: (#1520)
  • a9bf60d feat(work-objects): add Work Objects support for chat unfurl, entity details,...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the dependencies group with 3 updates in the / directory: [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi), [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) and [github.com/slack-go/slack](https://github.com/slack-go/slack).


Updates `github.com/getkin/kin-openapi` from 0.133.0 to 0.134.0
- [Release notes](https://github.com/getkin/kin-openapi/releases)
- [Commits](getkin/kin-openapi@v0.133.0...v0.134.0)

Updates `github.com/getsentry/sentry-go` from 0.42.0 to 0.43.0
- [Release notes](https://github.com/getsentry/sentry-go/releases)
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-go@v0.42.0...v0.43.0)

Updates `github.com/slack-go/slack` from 0.17.3 to 0.19.0
- [Release notes](https://github.com/slack-go/slack/releases)
- [Changelog](https://github.com/slack-go/slack/blob/master/CHANGELOG.md)
- [Commits](slack-go/slack@v0.17.3...v0.19.0)

---
updated-dependencies:
- dependency-name: github.com/getkin/kin-openapi
  dependency-version: 0.134.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/slack-go/slack
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 16, 2026
@vercel
Copy link

vercel bot commented Mar 16, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

2 Skipped Deployments
Project Deployment Actions Updated (UTC)
ainsleyclark.com Ignored Ignored Preview Mar 16, 2026 5:57pm
ainsleydev Ignored Ignored Preview Mar 16, 2026 5:57pm

Request Review

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 file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants