docs: restore v2.5 docs snapshot and add missing v3.0 versioned docs#808
Merged
vdusek merged 2 commits intoMay 20, 2026
Merged
Conversation
8 tasks
Agent-Logs-Url: https://github.com/apify/apify-client-python/sessions/352c6819-35ef-49dd-8702-3b75948f5d94 Co-authored-by: vdusek <25082181+vdusek@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix restore version 2.5 and add version 3.0 due to release issue
docs: restore v2.5 docs snapshot and add missing v3.0 versioned docs
May 20, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #808 +/- ##
==========================================
- Coverage 94.50% 94.44% -0.07%
==========================================
Files 48 48
Lines 4916 4916
==========================================
- Hits 4646 4643 -3
- Misses 270 273 +3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
vdusek
approved these changes
May 20, 2026
vdusek
approved these changes
May 20, 2026
janbuchar
approved these changes
May 20, 2026
vdusek
added a commit
that referenced
this pull request
May 20, 2026
#806) ## Summary The v3.0.0 release versioned the docs as `2.5` instead of `3.0` (overwriting v2.5 content with v3). Root cause: `manual_version_docs.yaml` reads `uv version --short` from a checkout of the workflow's dispatch ref (pre-bump), so the job sees the old version. Run [#26156928273](https://github.com/apify/apify-client-python/actions/runs/26156928273) logged `Version: 2.5.1, Major.Minor: 2.5, Major: 2`; bad output is commit e0a0bc8. ## Fix - `manual_version_docs.yaml` — optional `version_number` input; snapshot step uses it when set, falls back to `uv version --short` for manual dispatch. Companion data-restore PR: #808.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The v3.0.0 docs versioning run snapshotted docs using the pre-bump version (
2.5.1), which overwroteversion-2.5with v3 content and never createdversion-3.0. This PR restores the correct historical2.5snapshot and adds a proper3.0snapshot from current docs.Restore
2.5to the last known good snapshotwebsite/versioned_docs/version-2.5/with the tree from5f7f7b1.website/versioned_sidebars/version-2.5-sidebars.jsonto match that snapshot.2.5(e.g.upgrading_to_v3.mdx, custom HTTP client/timeouts/typed-models concept pages).Create a proper
3.0versioned snapshotwebsite/versioned_docs/version-3.0/from currentdocs/+ API versioned output.website/versioned_sidebars/version-3.0-sidebars.jsonand reformatted to 4-space indentation to match existing versioned sidebar files.3.0(includingupgrading_to_v3.mdxand new concepts docs), with the larger v3api-typedoc.json.Correct version registry ordering
website/versions.jsonto:Keep versioned snapshot clean
version-3.0(.ruff_cache,changelog.md,pyproject.toml).