Skip to content

Commit 204c353

Browse files
committed
chore: sync Rust client with Apify OpenAPI spec v2-2026-09-10T091137Z
The new spec version (apify/apify-docs#2965) only documents pagination response headers already returned by the API on 17 list endpoints, adds the X-Apify-Pagination-Desc header, and documents the pre-existing offset/limit/desc query parameters on the webhook-dispatches-by-webhook endpoint. The client's shared list/iterate implementation already supported all of this, so no functional code changes were required. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01RSRQiKuykuXATHK8g1FDqU
1 parent 6d2a808 commit 204c353

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to the Rust Apify API client are documented here. The format
44
based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project adheres
55
to [Semantic Versioning](https://semver.org/).
66

7+
## [0.10.1] - 2026-09-11
8+
9+
### Changed
10+
- Bumped `API_SPEC_VERSION` to `v2-2026-09-10T091137Z` (spec now documents pagination
11+
response headers on all offset-paginated list endpoints and the `offset`/`limit`/`desc`
12+
query parameters on the webhook-dispatches-by-webhook endpoint; the client already
13+
implemented both, so no code changes were needed).
14+
- Bumped crate version to `0.10.1`.
15+
716
## [0.10.0] - 2026-09-04
817

918
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apify-client"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors = ["Apify Technologies <support@apify.com>"]
55
description = "An official, but experimental, AI-generated and AI-maintained Rust client for the Apify API (https://apify.com)."
66
license = "Apache-2.0"

src/version.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ pub const CLIENT_VERSION: &str = env!("CARGO_PKG_VERSION");
1010
/// and verified against.
1111
///
1212
/// This corresponds to the `info.version` field of the Apify OpenAPI document.
13-
pub const API_SPEC_VERSION: &str = "v2-2026-09-02T154542Z";
13+
pub const API_SPEC_VERSION: &str = "v2-2026-09-10T091137Z";

0 commit comments

Comments
 (0)