Skip to content

release: 3.19.0#325

Merged
stainless-app[bot] merged 4 commits intomainfrom
release-please--branches--main--changes--next
Mar 27, 2026
Merged

release: 3.19.0#325
stainless-app[bot] merged 4 commits intomainfrom
release-please--branches--main--changes--next

Conversation

@stainless-app
Copy link
Copy Markdown
Contributor

@stainless-app stainless-app bot commented Mar 27, 2026

Automated Release PR

3.19.0 (2026-03-27)

Full Changelog: v3.18.0...v3.19.0

Features

  • internal: implement indices array format for query and form serialization (b2cccf5)

This pull request is managed by Stainless's GitHub App.

The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.

For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.

🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions

@stainless-app
Copy link
Copy Markdown
Contributor Author

stainless-app bot commented Mar 27, 2026

🧪 Testing

To try out this version of the SDK:

pip install 'https://pkg.stainless.com/s/stagehand-python/3b89906f09aee88a003b2aa3d485a93576943c92/stagehand-3.18.0-py3-none-any.whl'

Expires at: Sun, 26 Apr 2026 15:03:08 GMT
Updated at: Fri, 27 Mar 2026 15:03:08 GMT

Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

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

No issues found across 5 files

Confidence score: 5/5

  • Automated review surfaced no issues in the provided summaries.
  • No files require special attention.
Architecture diagram
sequenceDiagram
    participant U as User/Consumer
    participant SDK as Stagehand SDK
    participant QS as QueryString Serializer (_qs.py)
    participant API as Remote API

    Note over U,API: Request Serialization with array_format="indices"

    U->>SDK: Method call with list parameter (e.g., tags=['a', 'b'])
    SDK->>QS: _stringify_item(key="tags", value=["a", "b"], opts)
    
    alt array_format == "indices"
        loop NEW: For each index i in value
            QS->>QS: Recursively stringify key as "tags[i]"
        end
        QS-->>SDK: Returns "tags[0]=a&tags[1]=b"
    else CHANGED: Previously
        Note over QS: Raised NotImplementedError
    end

    SDK->>API: HTTP Request with serialized query/form data
    API-->>SDK: Response
    SDK-->>U: Return parsed data
Loading

@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 59fe359 to 56d7bf2 Compare March 27, 2026 15:02
@stainless-app stainless-app bot merged commit 763131a into main Mar 27, 2026
7 checks passed
@stainless-app
Copy link
Copy Markdown
Contributor Author

stainless-app bot commented Mar 27, 2026

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant