Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to the Apify Go client are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.3] - 2026-06-30

### Changed
- Bumped `API_SPEC_VERSION` to `v2-2026-06-30T091455Z`.
- Bumped `CLIENT_VERSION` to `0.4.3`.
- Synced the `API_SPEC_VERSION` reference in the `README.md` "Versioning" section to match `version.go`.

### Documentation
- `docs/actors.md`: document the nil-`waitSecs` behaviour of `Call`.

## [0.4.2] - 2026-06-29

Synchronized with Apify OpenAPI specification `v2-2026-06-29T142258Z` (previously
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func main() {

- `apify.CLIENT_VERSION` — the semantic version of this library.
- `apify.API_SPEC_VERSION` — the Apify OpenAPI spec version this client was built against
(`v2-2026-06-29T142258Z`).
(`v2-2026-06-30T091455Z`).

### Releasing

Expand Down
2 changes: 1 addition & 1 deletion docs/actors.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ The `Actor` value returned by `Get`/`Create`/`Update` and listed by `List`:
| `Update(ctx, newFields any) (Actor, error)` | Update the Actor. |
| `Delete(ctx) error` | Delete the Actor. |
| `Start(ctx, input any, ActorStartOptions) (ActorRun, error)` | Start a run, return immediately. |
| `Call(ctx, input any, ActorStartOptions, waitSecs *int64) (ActorRun, error)` | Start and wait for the run to finish. |
| `Call(ctx, input any, ActorStartOptions, waitSecs *int64) (ActorRun, error)` | Start and wait for the run to finish. `waitSecs` bounds the client-side wait; pass `nil` to wait indefinitely (until the run reaches a terminal state). |
| `Build(ctx, versionNumber string, ActorBuildOptions) (Build, error)` | Build a version. |
| `DefaultBuild(ctx, waitForFinish *int64) (*BuildClient, error)` | Resolve the default build. |
| `ValidateInput(ctx, input any) (json.RawMessage, error)` | Validate input against the `latest` build's schema. |
Expand Down
4 changes: 2 additions & 2 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ package apify
//
// It follows Semantic Versioning (https://semver.org/). Changes to the public
// interface (other than additive ones) are considered breaking changes.
const CLIENT_VERSION = "0.4.2"
const CLIENT_VERSION = "0.4.3"

// API_SPEC_VERSION is the version of the Apify OpenAPI specification that this
// client was generated and verified against.
//
// It corresponds to the `info.version` field of the Apify OpenAPI document.
const API_SPEC_VERSION = "v2-2026-06-29T142258Z"
const API_SPEC_VERSION = "v2-2026-06-30T091455Z"
Loading