Skip to content

fix(deps): update module github.com/workos/workos-go/v4 to v6#45

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/major-go-dependencies-(major)
Open

fix(deps): update module github.com/workos/workos-go/v4 to v6#45
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/major-go-dependencies-(major)

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 14, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/workos/workos-go/v4 v4.46.1v6.4.0 age adoption passing confidence

Release Notes

workos/workos-go (github.com/workos/workos-go/v4)

v6.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: workos/workos-go@v6.3.0...v6.4.0

v6.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: workos/workos-go@v6.2.0...v6.3.0

v6.2.0

Compare Source

What's Changed

Full Changelog: workos/workos-go@v6.1.0...v6.2.0

v6.1.0

What's Changed

New Contributors

Full Changelog: workos/workos-go@v6.0.0...v6.1.0

v6.0.0

Compare Source

What's Changed

New Contributors

Full Changelog: workos/workos-go@v5.2.0...v6.0.0

v5.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: workos/workos-go@v5.1.0...v5.2.0

v5.1.0

Compare Source

What's Changed

Full Changelog: workos/workos-go@v5.0.0...v5.1.0

v5.0.0

Compare Source

What's Changed

Breaking Changes Summary

The v5 release includes the following breaking change:

  • UpdateUserOpts.Metadata field type changed from map[string]string to map[string]*string (introduced in PR #​457)
  • This allows setting metadata values to nil to remove them server-side

Migration Guide for Users

// v4 (old)
import "github.com/workos/workos-go/v4/pkg/usermanagement"

opts := usermanagement.UpdateUserOpts{
    User: "user_123",
    Metadata: map[string]string{
        "department": "Engineering",
    },
}

// v5 (new)
import "github.com/workos/workos-go/v5/pkg/usermanagement"

dept := "Engineering"
opts := usermanagement.UpdateUserOpts{
    User: "user_123",
    Metadata: map[string]*string{
        "department": &dept,
        "old_field": nil,  // Removes this field
    },
}

Full Changelog: workos/workos-go@v4.46.1...v5.0.0


Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 6am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Development

Successfully merging this pull request may close these issues.

0 participants