Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "9.0.0"
".": "9.1.0"
}
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

## [9.1.0](https://github.com/workos/workos-ruby/compare/v9.0.0...v9.1.0) (2026-06-17)

### Bug Fixes

* **renovate:** explicitly enable minor and patch updates ([#493](https://github.com/workos/workos-ruby/issues/493)) ([c6da3f3](https://github.com/workos/workos-ruby/commit/c6da3f3acdf4dd7a6a65b3ae6463102ff0c024e1))
* Use Thread.current[] instead of Fiber[] for connection cache ([#499](https://github.com/workos/workos-ruby/issues/499)) ([a44d650](https://github.com/workos/workos-ruby/commit/a44d6500b29d05fe7a5a0ac7449d1a4bee88fd38))

- [#495](https://github.com/workos/workos-ruby/pull/495) feat(generated): regenerate from spec (8 changes)

**Features**
- **[api_keys](https://workos.com/docs/reference/authkit/api-keys)**:
- Added model `ExpireApiKey`
- Added model `ApiKeyUpdated`
- Added model `ApiKeyUpdatedData`
- Added model `ApiKeyUpdatedDataOwner`
- Added model `UserApiKeyUpdatedDataOwner`
- Added model `ApiKeyUpdatedDataPreviousAttribute`
- Added endpoint `POST /api_keys/{id}/expire`
- **[audit_logs](https://workos.com/docs/reference/audit-logs)**:
- Added `Snowflake` to `AuditLogConfigurationLogStreamType`
- **[connect](https://workos.com/docs/reference/workos-connect/standalone)**:
- Added `name` to `UserObject`
- **[directory_sync](https://workos.com/docs/reference/directory-sync)**:
- Added model `DsyncTokenCreated`
- Added model `DsyncTokenCreatedData`
- Added model `DsyncTokenRevoked`
- Added model `DsyncTokenRevokedData`
- **[user_management](https://workos.com/docs/reference/authkit/user)**:
- Added `name` to user management models
- **[webhooks](https://workos.com/docs/reference/webhooks)**:
- Added `api_key.updated` to `CreateWebhookEndpointEvents`
- Added `api_key.updated` to `UpdateWebhookEndpointEvents`

## [9.0.0](https://github.com/workos/workos-ruby/compare/v8.0.1...v9.0.0) (2026-05-26)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
workos (9.0.0)
workos (9.1.0)
jwt (~> 3.1)
logger (~> 1.7)
zeitwerk (~> 2.6)
Expand Down Expand Up @@ -153,7 +153,7 @@ CHECKSUMS
unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
webmock (3.26.2) sha256=774556f2ea6371846cca68c01769b2eac0d134492d21f6d0ab5dd643965a4c90
webrick (1.9.2) sha256=beb4a15fc474defed24a3bda4ffd88a490d517c9e4e6118c3edce59e45864131
workos (9.0.0)
workos (9.1.0)
yard (0.9.44) sha256=eb087e9b631ccd887b049f303d489963945452d5e2a7eb49a5a74a7cf6887f28
yard-markdown (0.7.1) sha256=06c378632dfe7ba053be9ba469eb4701aa0470e36bcf7e5546f353eb90c1bfd1
zeitwerk (2.7.5) sha256=d8da92128c09ea6ec62c949011b00ed4a20242b255293dd66bf41545398f73dd
Expand Down
2 changes: 1 addition & 1 deletion lib/workos/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

# @oagen-ignore-file
module WorkOS

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Version mismatch between PR metadata and actual release

The PR title says "release 10.0.0" and the PR description explicitly documents this as ## [10.0.0] with ⚠ BREAKING CHANGES (removal of return_to from revoke_session, addition of UserApiKeyUpdatedDataOwner as a new required model). However, the actual version set in lib/workos/version.rb, .release-please-manifest.json, Gemfile.lock, and CHANGELOG.md is 9.1.0 — a minor (non-breaking) bump. Semver requires a major version increment when public API compatibility is broken, so either the version should be 10.0.0 to match the declared breaking changes, or the PR description is stale and the breaking changes were intentionally excluded from this release.

VERSION = "9.0.0"
VERSION = "9.1.0"
end