Skip to content

chore(deps): bump github.com/rootlyhq/rootly-go from 0.2.0 to 0.7.0#24

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/github.com/rootlyhq/rootly-go-0.7.0
Closed

chore(deps): bump github.com/rootlyhq/rootly-go from 0.2.0 to 0.7.0#24
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/github.com/rootlyhq/rootly-go-0.7.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps github.com/rootlyhq/rootly-go from 0.2.0 to 0.7.0.

Release notes

Sourced from github.com/rootlyhq/rootly-go's releases.

v0.7.0: future proofing our Go API contract

v0.7.0

Breaking changes

[!WARNING] Note that this release introduces a number of breaking changes to the public exported API.

This aligns with a number of best practices for the code generator we use (oapi-codegen).

These breaking changes will allow us to future-proof consumers of this library, as our code generation should be more consistent in the future, and the breaking changes should be reduced.

Please note that as a 0.x release, breaking changes may still occur in the future, but we'll try our hardest to minimise them.

Go initialisms will now be used #37

Go initialisms, such as ID and URL will now be used instead of Id and Url.

The full list of initialisms that have changed are:

  • API
  • HTML
  • HTTP
  • ID
  • JSON
  • URL
  • UUID

Consistent type for IDs #28

When interacting with Rootly APIs, it's possible to provide either a slug-based ID or a UUID.

We represent this in our OpenAPI schema in a way that expresses the two types in an OpenAPI native way.

However, when we come to represent this in Go, we hit Go's type system being unable to represent union types.

This manifested itself in unhelpful ways, such as:

func (c *ClientWithResponses) GetTeamWithResponse(ctx context.Context, id struct {
   union json.RawMessage
}, params *GetTeamParams, reqEditors ...RequestEditorFn) (*GetTeamResponse, error) {

As part of this release, there is now an ID type which will be used for all API requests that use either of these ID formats, which does not expose the same issue seen with the union type.

Additionally, this ID type provides helper methods to determine if the ID is a slug or UUID.

When migrating you will need to perform type casting to the new ID type, such as:

... (truncated)

Changelog

Sourced from github.com/rootlyhq/rootly-go's changelog.

Changelog

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[!NOTE] Since 2026-02-10, release notes can be found on the GitHub Releases page.

This CHANGELOG is kept for historical purposes.

[v0.6.0] - 2026-01-31

Added

  • Add Catalog Fields API endpoints for managing custom catalog fields:
    • Causes: ListCauseCatalogFields, CreateCauseCatalogField
    • Environments: ListEnvironmentCatalogFields, CreateEnvironmentCatalogField
    • Functionalities: ListFunctionalityCatalogFields, CreateFunctionalityCatalogField
    • Incident Types: ListIncidentTypeCatalogFields, CreateIncidentTypeCatalogField
    • Services: ListServiceCatalogFields, CreateServiceCatalogField
    • Groups: ListGroupCatalogFields, CreateGroupCatalogField
  • Add AlertPayloadConditions to AlertTriggerParams for advanced alert filtering with operators (IS, IS NOT, CONTAINS, CONTAINS_ALL, CONTAINS_NONE, SET, UNSET, ANY, NONE)
  • Add UserNotificationRuleNotificationType (audible/quiet) for notification preferences
  • Add CommunicationsTemplateCommunicationTemplateStages for template stage management
  • Add Slug field to various types for identifier support
  • Add JsmopsId field to User type for Jira Service Management integration

[v0.5.0] - 2026-01-15

Added

  • Add Meta struct for pagination support
  • Add ISNOT condition for workflow tasks via SDK

Fixed

  • Fix Shift struct for correct response type
  • Fix required and optional types for Dashboard Params
  • Fix LCR required and optional params

[Unreleased]

[v0.4.0] - 2026-01-06

Added

  • Add Meta struct for pagination support (CurrentPage, NextPage, PrevPage, TotalCount, TotalPages)
  • Add Meta field to list response types for pagination metadata
  • Add ShortId field to Alert type for human-readable short identifiers
  • Add StartedAt and EndedAt fields to Alert type for alert timing

... (truncated)

Commits
  • 191dfc5 chore(deps): update OpenAPI spec
  • 07f1554 feat: use idiomatic Go initialisms
  • 548a937 test: use constant for server URL
  • f385f82 feat: generate server URLs
  • 7b61242 feat: always prefix enums
  • 904e7ef fix: don't use optional pointers on container types
  • 75ebe42 chore(config): migrate config renovate.json
  • 239eb8e build: periodically update OpenAPI spec
  • 1587413 chore(oapi-codegen): version-pin JSON schema
  • 9bd96af build(release-drafter): add missing template config
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/rootlyhq/rootly-go](https://github.com/rootlyhq/rootly-go) from 0.2.0 to 0.7.0.
- [Release notes](https://github.com/rootlyhq/rootly-go/releases)
- [Changelog](https://github.com/rootlyhq/rootly-go/blob/master/CHANGELOG.md)
- [Commits](rootlyhq/rootly-go@v0.2.0...v0.7.0)

---
updated-dependencies:
- dependency-name: github.com/rootlyhq/rootly-go
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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 Feb 23, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 25, 2026

Superseded by #25.

@dependabot dependabot bot closed this Feb 25, 2026
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/rootlyhq/rootly-go-0.7.0 branch February 25, 2026 19:23
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