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.1.0"
".": "9.2.0"
}
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,61 @@
# Changelog

## [9.2.0](https://github.com/workos/workos-php/compare/v9.1.0...v9.2.0) (2026-08-11)

* [#428](https://github.com/workos/workos-php/pull/428) feat(generated)!: regenerate from spec (2 changes)

**⚠️ Breaking**
* **[events](https://workos.com/docs/reference/events)**:
* Changed required status for parameter `Events.list.events`

**Features**
* **[groups](https://workos.com/docs/reference/groups)**:
* Added parameter `Groups.list.search`
* **[connect](https://workos.com/docs/reference/workos-connect/standalone)**:
* Added `client_id` to `ConnectedAccount`
* Added `client_secret_last_4` to `ConnectedAccount`
* Added `config` to `ConnectedAccount`
* **[pipes](https://workos.com/docs/reference/pipes)**:
* Added `client_id` to `DataIntegrationsListResponseDataConnectedAccount`
* Added `client_secret_last_4` to `DataIntegrationsListResponseDataConnectedAccount`
* Added `config` to `DataIntegrationsListResponseDataConnectedAccount`
* Changed errors for endpoint `POST /data-integrations/{slug}/credentials`
* Made `CustomProviderDefinition.authorization_url` optional
* Made `CustomProviderDefinition.token_url` optional
* Added model `DataIntegrationsUpsertClientCredentialsRequest`
* Added `client_credentials` to `CreateDataIntegrationAuthMethods`
* Added endpoint `PUT /data-integrations/{slug}/client-credentials`
* **[sso](https://workos.com/docs/reference/sso)**:
* Added `XOAuth` to `ConnectionType`
* Added `XOAuth` to `ProfileConnectionType`
* Added `XOAuth` to `ConnectionsConnectionType`
* Added `GrokOAuth` to `ConnectionType`
* Added `GrokOAuth` to `ProfileConnectionType`
* Added `GrokOAuth` to `ConnectionsConnectionType`
* **[user_management](https://workos.com/docs/reference/authkit/user)**:
* Changed errors for endpoint `DELETE /user_management/users/{id}`
* Added `password_salt_position` to `CreateUser`
* Added `password_salt_position` to `UpdateUser`
* Made `RadarSmsChallengeCodeSessionAuthenticateRequest.verification_id` optional
* Made `RadarSmsChallengeCodeSessionAuthenticateRequest.phone_number` optional
* Added enum `CreateUserPasswordSaltPosition`
* Added enum `UpdateUserPasswordSaltPosition`
* Added `XOAuth` to `AuthenticateResponseAuthenticationMethod`
* Added `XOAuth` to `UserIdentitiesGetItemProvider`
* Added `GrokOAuth` to `AuthenticateResponseAuthenticationMethod`
* Added `GrokOAuth` to `UserIdentitiesGetItemProvider`
* **[webhooks](https://workos.com/docs/reference/webhooks)**:
* Added `agent.registration.refreshed` to `CreateWebhookEndpointEvents`
* Added `agent.registration.refreshed` to `UpdateWebhookEndpointEvents`

**Fixes**
* **[pipes](https://workos.com/docs/reference/pipes)**:
* Changed the type of `DataIntegration.credentials`
* **[user_management](https://workos.com/docs/reference/authkit/user)**:
* Changed errors for endpoint `POST /user_management/authenticate`
* Changed errors for endpoint `POST /user_management/users`
* Changed errors for endpoint `PUT /user_management/users/{id}`

## [9.1.0](https://github.com/workos/workos-php/compare/v9.0.0...v9.1.0) (2026-07-29)

### Features
Expand Down
2 changes: 1 addition & 1 deletion lib/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ final class Version
{
public const SDK_IDENTIFIER = 'WorkOS PHP';

public const SDK_VERSION = '9.1.0'; // x-release-please-version
public const SDK_VERSION = '9.2.0'; // x-release-please-version
}