Skip to content

Commit c618ab6

Browse files
committed
Merge remote-tracking branch 'origin/master' into crawler-tests
2 parents 6272200 + e6761ae commit c618ab6

File tree

8 files changed

+30
-16
lines changed

8 files changed

+30
-16
lines changed

.github/workflows/pre_release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
# Or it can be triggered manually.
1212
workflow_dispatch:
1313

14+
concurrency:
15+
group: release
16+
cancel-in-progress: false
17+
1418
jobs:
1519
release_metadata:
1620
if: "!startsWith(github.event.head_commit.message, 'docs') && !startsWith(github.event.head_commit.message, 'ci') && startsWith(github.repository, 'apify/')"

.github/workflows/release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ on:
2121
type: string
2222
default: ""
2323

24+
concurrency:
25+
group: release
26+
cancel-in-progress: false
27+
2428
jobs:
2529
release_metadata:
2630
name: Prepare release metadata

.github/workflows/run_code_checks.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,7 @@ on:
66
# step required for PRs from forks. This prevents their potential exposure.
77
pull_request:
88

9-
# Pushing to the master branch triggers code checks
10-
push:
11-
branches:
12-
- master
13-
tags-ignore:
14-
- "**" # Ignore all tags to prevent duplicate checks when tags are pushed.
9+
# Trigger for pushing to the master branch is handled by the pre-release workflow.
1510

1611
# It should also be possible to trigger checks manually
1712
workflow_dispatch:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [2.7.2](https://github.com/apify/apify-sdk-python/releases/tag/v2.7.2) (2025-07-30)
6+
7+
### 🐛 Bug Fixes
8+
9+
- Restrict apify-shared and apify-client versions ([#523](https://github.com/apify/apify-sdk-python/pull/523)) ([581ebae](https://github.com/apify/apify-sdk-python/commit/581ebae5752a984a34cbabc02c49945ae392db00)) by [@vdusek](https://github.com/vdusek)
10+
11+
512
## [2.7.1](https://github.com/apify/apify-sdk-python/releases/tag/v2.7.1) (2025-07-24)
613

714
### 🐛 Bug Fixes

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "apify"
7-
version = "2.7.1"
7+
version = "2.7.3"
88
description = "Apify SDK for Python"
99
authors = [{ name = "Apify Technologies s.r.o.", email = "[email protected]" }]
1010
license = { file = "LICENSE" }
@@ -62,7 +62,7 @@ scrapy = ["scrapy>=2.11.0"]
6262

6363
[dependency-groups]
6464
dev = [
65-
"build~=1.2.0",
65+
"build~=1.3.0",
6666
"crawlee[parsel]~=0.6.0",
6767
"dycw-pytest-only>=2.1.1",
6868
"griffe~=1.9.0",

uv.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/docusaurus.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ module.exports = {
3636
projectName: 'apify-sdk-python',
3737
scripts: ['/js/custom.js'],
3838
favicon: 'img/favicon.ico',
39+
scripts: [...(config.scripts ?? [])],
3940
githubHost: 'github.com',
4041
future: {
4142
experimental_faster: {
@@ -270,4 +271,7 @@ module.exports = {
270271
image: 'https://docs.apify.com/sdk/python/img/docs-og.png',
271272
},
272273
staticDirectories: ['node_modules/@apify/docs-theme/static', 'static'],
274+
customFields: {
275+
...(config.customFields ?? []),
276+
},
273277
};

website/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)