Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 907f68b

Browse filesBrowse files
committed
Prepend to changelog instead of overwriting
1 parent 60aded7 commit 907f68b
Copy full SHA for 907f68b

File tree

Expand file treeCollapse file tree

3 files changed

+29
-28
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+29
-28
lines changed

‎.github/workflows/pre_release.yaml

Copy file name to clipboardExpand all lines: .github/workflows/pre_release.yaml
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
version_number: ${{ steps.release_metadata.outputs.version_number }}
1818
tag_name: ${{ steps.release_metadata.outputs.tag_name }}
1919
changelog: ${{ steps.release_metadata.outputs.changelog }}
20+
existing_changelog_path: CHANGELOG.md
2021
steps:
2122
- uses: apify/workflows/git-cliff-release@main
2223
id: release_metadata

‎.github/workflows/release.yaml

Copy file name to clipboardExpand all lines: .github/workflows/release.yaml
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
with:
3131
version_number: ${{ needs.release_metadata.outputs.version_number }}
3232
changelog: ${{ needs.release_metadata.outputs.changelog }}
33+
existing_changelog_path: CHANGELOG.md
3334
secrets:
3435
version_number: ${{ steps.release_metadata.outputs.version_number }}
3536
tag_name: ${{ steps.release_metadata.outputs.tag_name }}

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+27-28Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,56 @@
11
# Changelog
22

3-
## [2.0.2](../../releases/tag/v2.0.2) - Unreleased
3+
All notable changes to this project will be documented in this file.
44

5-
- ...
6-
7-
## [2.0.1](../../releases/tag/v2.0.1) - 2024-10-25
5+
## [2.0.1](https://github.com/apify/apify-sdk-python/releases/tags/v2.0.1) (2024-10-25)
86

97
### 🚀 Features
108

11-
- Add standby URL and change default standby port
12-
- Add crawlee version to system info output
9+
- Add standby URL, change default standby port (#287) ([8cd2f2c](https://github.com/apify/apify-sdk-python/commit/8cd2f2cb9d1191dbc93bf1b8a2d70189881c64ad))
10+
- Add crawlee version to system info print (#304) ([c28f38f](https://github.com/apify/apify-sdk-python/commit/c28f38f4e205515e1b5d1ce97a2072be3a09d338))
1311

1412
### 🐛 Bug Fixes
1513

16-
- Allow empty timeout_at environment variable
17-
- Use HttpHeaders type in Scrapy integration
18-
- Adjust tests for Scrapy user data
14+
- Adjust tests of scrapy user data (#284) ([26ffb15](https://github.com/apify/apify-sdk-python/commit/26ffb15797effcfad1a25c840dd3d17663e26ea3))
15+
- Use HttpHeaders type in Scrapy integration (#289) ([3e33e91](https://github.com/apify/apify-sdk-python/commit/3e33e9147bfd60554b9da41b032c0451f91ba27b))
16+
- Allow empty timeout_at env variable (#303) ([b67ec98](https://github.com/apify/apify-sdk-python/commit/b67ec989dfcc21756cc976c52edc25735a3f0501))
17+
1918

20-
## [2.0.0](../../releases/tag/v2.0.0) - 2024-09-10
19+
## [2.0.0](https://github.com/apify/apify-sdk-python/releases/tags/v2.0.0) (2024-09-10)
2120

2221
- Check the [Upgrading to v2.0](https://docs.apify.com/sdk/python/docs/upgrading/upgrading-to-v2) guide.
2322

2423
### 🚀 Features
2524

26-
- Using Crawlee for Python under the hood ([#210](https://github.com/apify/apify-sdk-python/pull/210)) by [@janbuchar](https://github.com/janbuchar)
27-
- Better Actor API typing ([#256](https://github.com/apify/crawlee-python/pull/256)) by [@janbuchar](https://github.com/janbuchar)
28-
- Expose Request from Crawlee ([#266](https://github.com/apify/crawlee-python/pull/266)) by [@vdusek](https://github.com/vdusek)
29-
- Improve examples in README ([#269](https://github.com/apify/crawlee-python/pull/269)) by [@vdusek](https://github.com/vdusek)
30-
- Automatically configure logging ([#271](https://github.com/apify/crawlee-python/pull/271)) by [@janbuchar](https://github.com/janbuchar)
25+
- Better Actor API typing (#256) ([abb87e7](https://github.com/apify/apify-sdk-python/commit/abb87e7f3c272f88a9a76292d8394fe93b98428a))
26+
- Expose Request from Crawlee (#266) ([1f01278](https://github.com/apify/apify-sdk-python/commit/1f01278c77f261500bc74efd700c0583ac45fd82))
27+
- Automatically configure logging (#271) ([1906bb2](https://github.com/apify/apify-sdk-python/commit/1906bb216b8a3f1c2ad740c551ee019c2ba0696f))
3128

3229
### 🐛 Bug Fixes
3330

34-
- Make `apify.log` public ([#249](https://github.com/apify/crawlee-python/pull/249)) by [@janbuchar](https://github.com/janbuchar)
35-
- Dataset list response handling ([#257](https://github.com/apify/crawlee-python/pull/257)) by [@janbuchar](https://github.com/janbuchar)
36-
- Ignore deprecated platform events ([#258](https://github.com/apify/crawlee-python/pull/258)) by [@janbuchar](https://github.com/janbuchar)
37-
- Possible infinity loop in Apify-Scrapy proxy middleware ([#259](https://github.com/apify/crawlee-python/pull/259)) by [@vdusek](https://github.com/vdusek)
38-
- Hotfix for `batch_add_requests` batch size limit ([#261](https://github.com/apify/crawlee-python/pull/261)) by [@janbuchar](https://github.com/janbuchar)
31+
- Make apify.log public again (#249) ([22677f5](https://github.com/apify/apify-sdk-python/commit/22677f57b2aff6c9bddbee305e5a62e39bbf5915))
32+
- Dataset list response handling (#257) ([0ea57d7](https://github.com/apify/apify-sdk-python/commit/0ea57d7c4788bff31f215c447c1881e56d6508bb))
33+
- Ignore deprecated platform events (#258) ([ed5ab3b](https://github.com/apify/apify-sdk-python/commit/ed5ab3b80c851a817aa87806c39cd8ef3e86fde5))
34+
- Possible infinity loop in Apify-Scrapy proxy middleware (#259) ([8647a94](https://github.com/apify/apify-sdk-python/commit/8647a94289423528f2940d9f7174f81682fbb407))
35+
- Hotfix for batch_add_requests batch size limit (#261) ([61d7a39](https://github.com/apify/apify-sdk-python/commit/61d7a392d182a752c91193170dca351f4cb0fbf3))
3936

40-
### Added
37+
### Refactor
4138

42-
- Upgrade Apify Client to 1.7.1
39+
- Preparation for v2 release (#210) ([2f9dcc5](https://github.com/apify/apify-sdk-python/commit/2f9dcc559414f31e3f4fc87e72417a36494b9c84))
4340

44-
## [1.7.2](../../releases/tag/v1.7.2) - 2024-07-08
4541

46-
### Added
42+
## [1.7.2](https://github.com/apify/apify-sdk-python/releases/tags/v1.7.2) (2024-07-08)
4743

48-
- Add Actor Standby port
44+
### 🚀 Features
4945

50-
## [1.7.1](../../releases/tag/v1.7.1) - 2024-05-23
46+
- Add actor standby port (#220) ([6d0d87d](https://github.com/apify/apify-sdk-python/commit/6d0d87dcaedaf42d8eeb7d23c56f6b102434cbcb))
5147

52-
### Fixed
5348

54-
- Set a timeout for Actor cleanup
49+
## [1.7.1](https://github.com/apify/apify-sdk-python/releases/tags/v1.7.1) (2024-05-23)
50+
51+
### 🐛 Bug Fixes
52+
53+
- Set a timeout for Actor cleanup (#206) ([cfed57d](https://github.com/apify/apify-sdk-python/commit/cfed57d6cff4fd15fe4b25578573190d53b9942c))
5554

5655
## [1.7.0](../../releases/tag/v1.7.0) - 2024-03-12
5756

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.