Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: workos/workos-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.71.0
Choose a base ref
...
head repository: workos/workos-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.72.0
Choose a head ref
  • 3 commits
  • 11 files changed
  • 3 contributors

Commits on Oct 28, 2025

  1. Add apiKeys.validateApiKey method (#1373)

    ## Description
    
    We're introducing API keys to help developers provide secure
    authentication to their APIs. This PR exposes the validate API key
    endpoint, which is currently under development and looks like this:
    
    > ### Validate API key
    > `POST /api_keys/validations`
    > 
    > #### Parameters
    > 
    > * `value`: The value for an API key
    > 
    > #### Returns
    > 
    > * `api_key`: `api_key` | `null`
    
    Here's what a call to this new method might look like in a developer's
    application:
    
    ```node
    workos.apiKeys.validateApiKey({ value })
    // { apiKey: { ... } } or { apiKey: null }
    ```
    
    ## Documentation
    
    This will require a docs change, which will come in a future PR.
    nholden authored Oct 28, 2025
    Configuration menu
    Copy the full SHA
    ef588f1 View commit details
    Browse the repository at this point in the history
  2. add convex conditional export (#1372)

    ## Description
    
    Adds a conditional export for the convex runtime.
    
    ## Documentation
    
    Does this require changes to the WorkOS Docs? E.g. the [API
    Reference](https://workos.com/docs/reference) or code snippets need
    updates.
    
    ```
    [ ] Yes
    ```
    
    If yes, link a related docs PR and add a docs maintainer as a reviewer.
    Their approval is required.
    
    Co-authored-by: Nick Nisi <nick.nisi@workos.com>
    erquhart and nicknisi authored Oct 28, 2025
    Configuration menu
    Copy the full SHA
    c44174f View commit details
    Browse the repository at this point in the history
  3. Bump to version 7.72.0 (#1374)

    Version bump that includes:
    
    - #1372
    - #1373
    nholden authored Oct 28, 2025
    Configuration menu
    Copy the full SHA
    e25424b View commit details
    Browse the repository at this point in the history
Loading