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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.3.1](../../releases/tag/v1.3.1) - 2025-03-07

### Added

- Added STANDBY option to origin enum in actor run model

## [1.3.0](../../releases/tag/v1.3.0) - 2025-03-04

### Removed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "apify_shared"
version = "1.3.0"
version = "1.3.1"
description = "Tools and constants shared across Apify projects."
readme = "README.md"
license = { text = "Apache Software License" }
Expand Down
2 changes: 2 additions & 0 deletions src/apify_shared/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@ class MetaOrigin(str, Enum):
WEBHOOK = 'WEBHOOK'
#: Job started by another actor run
ACTOR = 'ACTOR'
#: Job started via Actor standby
STANDBY = 'STANDBY'


INTEGER_ENV_VARS_TYPE = Literal[
Expand Down