Skip to content

release: 0.8.0 - #31

Open
stainless-app[bot] wants to merge 2 commits into
mainfrom
release-please--branches--main--changes--next
Open

release: 0.8.0#31
stainless-app[bot] wants to merge 2 commits into
mainfrom
release-please--branches--main--changes--next

Conversation

@stainless-app

@stainless-app stainless-app Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

Automated Release PR

0.8.0 (2026-07-31)

Full Changelog: v0.7.0...v0.8.0

Features

  • api: align reply extraction contracts (ef1ae2b)

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

Note

Release version 0.8.0 with expanded tweet and account response models

  • accounts.create now returns AccountCreateResponse (a union of SanitizedXAccount, XAccountConnectionAttemptPending, and XAccountConnectionChallenge) instead of a generic object
  • tweets.get_replies now accepts limit and mode parameters and returns TweetGetRepliesResponse instead of PaginatedTweets
  • EmbeddedTweet, SearchTweet, and TweetDetail gain many optional fields: article, card, community_note, edit, note_tweet, place, previous_counts, view_state, and recursive quoted_tweet/retweeted_tweet via forward references
  • TweetMedia gains extended metadata fields (alt text, aspect ratio, crop rects, sizes, dimensions); UserProfile adds affiliation, highlights, and identity verification fields while removing can_dm, viewer_followed_by, and viewer_following
  • Cyclical Pydantic model references are now resolved on import via update_forward_refs() / model_rebuild() in types/init.py
  • Risk: UserProfile.can_dm, UserProfile.viewer_followed_by, UserProfile.viewer_following, and Community.is_member/role are removed, which is a breaking change for consumers relying on those fields

Macroscope summarized 611a60a.

@coderabbitai

coderabbitai Bot commented Jul 30, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@stainless-app[bot], you've reached your PR review limit, so we couldn't start this review.

Next review available in: 58 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 2d6b2017-3d1f-4eef-9088-1b0989b0b993

📥 Commits

Reviewing files that changed from the base of the PR and between 7d3f88c and 611a60a.

📒 Files selected for processing (49)
  • .release-please-manifest.json
  • .stats.yml
  • CHANGELOG.md
  • api.md
  • pyproject.toml
  • src/x_twitter_scraper/_version.py
  • src/x_twitter_scraper/resources/x/accounts.py
  • src/x_twitter_scraper/resources/x/communities/communities.py
  • src/x_twitter_scraper/resources/x/communities/tweets.py
  • src/x_twitter_scraper/resources/x/lists.py
  • src/x_twitter_scraper/resources/x/tweets/tweets.py
  • src/x_twitter_scraper/resources/x/users/users.py
  • src/x_twitter_scraper/types/__init__.py
  • src/x_twitter_scraper/types/shared/content_disclosure.py
  • src/x_twitter_scraper/types/shared/embedded_tweet.py
  • src/x_twitter_scraper/types/shared/paginated_tweets.py
  • src/x_twitter_scraper/types/shared/search_tweet.py
  • src/x_twitter_scraper/types/shared/tweet_media.py
  • src/x_twitter_scraper/types/shared/user_profile.py
  • src/x_twitter_scraper/types/support/ticket_list_response.py
  • src/x_twitter_scraper/types/support/ticket_retrieve_response.py
  • src/x_twitter_scraper/types/support/ticket_update_response.py
  • src/x_twitter_scraper/types/trend_list_response.py
  • src/x_twitter_scraper/types/x/__init__.py
  • src/x_twitter_scraper/types/x/account_connection_attempt_retrieve_response.py
  • src/x_twitter_scraper/types/x/account_connection_challenge_submit_response.py
  • src/x_twitter_scraper/types/x/account_create_response.py
  • src/x_twitter_scraper/types/x/account_reauth_response.py
  • src/x_twitter_scraper/types/x/communities/tweet_list_by_community_params.py
  • src/x_twitter_scraper/types/x/communities/tweet_list_params.py
  • src/x_twitter_scraper/types/x/community_retrieve_info_response.py
  • src/x_twitter_scraper/types/x/community_retrieve_search_params.py
  • src/x_twitter_scraper/types/x/list_retrieve_tweets_params.py
  • src/x_twitter_scraper/types/x/tweet_author.py
  • src/x_twitter_scraper/types/x/tweet_detail.py
  • src/x_twitter_scraper/types/x/tweet_get_quotes_params.py
  • src/x_twitter_scraper/types/x/tweet_get_replies_params.py
  • src/x_twitter_scraper/types/x/tweet_get_replies_response.py
  • src/x_twitter_scraper/types/x/tweet_get_thread_params.py
  • src/x_twitter_scraper/types/x/tweet_retrieve_response.py
  • src/x_twitter_scraper/types/x/user_retrieve_likes_params.py
  • src/x_twitter_scraper/types/x/user_retrieve_media_params.py
  • src/x_twitter_scraper/types/x/user_retrieve_mentions_params.py
  • src/x_twitter_scraper/types/x/user_retrieve_replies_params.py
  • src/x_twitter_scraper/types/x/user_retrieve_tweets_params.py
  • src/x_twitter_scraper/types/x_get_article_response.py
  • src/x_twitter_scraper/types/x_get_trends_response.py
  • tests/api_resources/x/test_accounts.py
  • tests/api_resources/x/test_tweets.py
✨ Finishing Touches 💡 1
🛠️ Fix failing CI checks 💡
  • Fix failing CI checks
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release-please--branches--main--changes--next

Comment @coderabbitai help to get the list of available commands.

@furkanerday furkanerday left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Blocking reproducibility issue: bumps the project to 0.7.1, but the release PR does not update . The required job already fails because reports that the lockfile needs to be updated, and also fails. Regenerate and commit the lockfile for this version bump, then rerun all required checks.

@furkanerday furkanerday left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Blocking reproducibility issue at pyproject.toml:3: the project version is bumped to 0.7.1, but the release PR does not update uv.lock. The required Fuzz Query Strings job fails because uv export --locked reports that the lockfile needs to be updated, and Tests & Coverage also fails. Regenerate and commit uv.lock for this version bump, then rerun all required checks.

Regenerate every SDK from the exact production OpenAPI contract.
@stainless-app
stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 0e47ac2 to 6e6fa54 Compare July 31, 2026 13:30
@stainless-app stainless-app Bot changed the title release: 0.7.1 release: 0.8.0 Jul 31, 2026
@stainless-app
stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 6e6fa54 to 611a60a Compare July 31, 2026 13:31
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