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
46 changes: 46 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: update-changelog
on:
push:
branches:
- main
permissions:
contents: write
jobs:
changelog:
name: Update CHANGELOG
runs-on: ubuntu-latest
timeout-minutes: 15
if: |
!startsWith(github.event.head_commit.message, '[Release]') &&
!startsWith(github.event.head_commit.message, 'chore(changelog): update CHANGELOG.md') &&
github.event.head_commit.author.name != 'github-actions[bot]'
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: jdx/mise-action@v3
with:
experimental: true
- name: Generate CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: git cliff --config ./cliff.toml -o ./CHANGELOG.md
- name: Check for CHANGELOG changes
id: changelog-changes
run: |
if git diff --quiet CHANGELOG.md; then
echo "No changes in CHANGELOG.md"
echo "has-changes=false" >> $GITHUB_OUTPUT
else
echo "CHANGELOG.md has changes"
echo "has-changes=true" >> $GITHUB_OUTPUT
fi
- name: Commit CHANGELOG
uses: stefanzweifel/git-auto-commit-action@v7
if: steps.changelog-changes.outputs.has-changes == 'true'
with:
commit_message: "chore(changelog): update CHANGELOG.md"
commit_options: '--no-verify'
file_pattern: CHANGELOG.md
commit_user_name: github-actions[bot]
commit_user_email: github-actions[bot]@users.noreply.github.com
127 changes: 86 additions & 41 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,66 +1,111 @@
# Change Log
# Changelog

All notable changes to this project will be 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).

#### 1.x Releases
- `1.3.x` Releases - [1.3.0](#130)
- `1.2.x` Releases - [1.2.0](#120) | [1.2.1](#121)
- `1.1.x` Releases - [1.1.0](#110) | [1.1.1](#111)
- `1.2.x` Releases - [1.2.1](#121) | [1.2.0](#120)
- `1.1.x` Releases - [1.1.1](#111) | [1.1.0](#110)
- `1.0.x` Releases - [1.0.0](#100)

## [1.3.0](https://github.com/space-code/typhoon/releases/tag/1.2.1)
Released on 2025-11-16.
---

#### Added
- Add support for Swift 6.2
- Added in Pull Request [#21](https://github.com/space-code/typhoon/pull/21)

## [1.3.0](https://github.com/space-code/typhoon/releases/tag/1.3.0)

Released on 2025-11-16. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/typhoon/milestones?state=closed&q=1.3.0).

### Uncategorized Changes
- Release `1.3.0`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#24](https://github.com/space-code/typhoon/pull/24).
- Update `CHANGELOG.md`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#25](https://github.com/space-code/typhoon/pull/25).
- Bump actions/checkout from 2 to 5
- Contributed by [@dependabot[bot]](https://github.com/dependabot[bot]) in Pull Request [#23](https://github.com/space-code/typhoon/pull/23).
- Add `dependabot.yml`
- Added in Pull Request [#22](https://github.com/space-code/typhoon/pull/22)
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#22](https://github.com/space-code/typhoon/pull/22).
- Add support for Swift 6.2
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#21](https://github.com/space-code/typhoon/pull/21).

### New Contributors
* @dependabot[bot] made their first contribution in [#23](https://github.com/space-code/typhoon/pull/23)

## [1.2.1](https://github.com/space-code/typhoon/releases/tag/1.2.1)
Released on 2024-12-24.

#### Added
- Mark the closures as @Sendable.
- Added in Pull Request [#18](https://github.com/space-code/typhoon/pull/18)
Released on 2024-12-24. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/typhoon/milestones?state=closed&q=1.2.1).

### Uncategorized Changes
- Release `1.2.1`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#20](https://github.com/space-code/typhoon/pull/20).
- Update `CHANGELOG.md`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#19](https://github.com/space-code/typhoon/pull/19).
- Mark the closures as `@Sendable`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#18](https://github.com/space-code/typhoon/pull/18).

## [1.2.0](https://github.com/space-code/typhoon/releases/tag/1.2.0)
Released on 2024-12-23.

#### Added
- Increase the Swift version to 6.0.
- Added in Pull Request [#15](https://github.com/space-code/typhoon/pull/15)
Released on 2024-12-23. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/typhoon/milestones?state=closed&q=1.2.0).

## [1.1.1](https://github.com/space-code/typhoon/releases/tag/1.1.1)
Released on 2024-05-11.
### Uncategorized Changes
- Release `1.2.0`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#17](https://github.com/space-code/typhoon/pull/17).
- Update `CHANGELOG.md`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#16](https://github.com/space-code/typhoon/pull/16).
- Increase the `Swift` version to 6.0
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#15](https://github.com/space-code/typhoon/pull/15).

#### Added
- Add the `upload_test_coverage_report` action
- Added in Pull Request [#11](https://github.com/space-code/typhoon/pull/11)
- Add files to comply with community standards
- Added in Pull Request [#9](https://github.com/space-code/typhoon/pull/9)
## [1.1.1](https://github.com/space-code/typhoon/releases/tag/1.1.1)

#### Updated
- Update GitHub Actions
- Updated in Pull Request [#10](https://github.com/space-code/typhoon/pull/10)
Released on 2024-05-11. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/typhoon/milestones?state=closed&q=1.1.1).

#### 1.x Releases
- `1.1.x` Releases - [1.0.0](#110)
- `1.0.x` Releases - [1.0.0](#100)
### Uncategorized Changes
- Update `CHANGELOG.md`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#14](https://github.com/space-code/typhoon/pull/14).
- Update `CHANGELOG.md`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#13](https://github.com/space-code/typhoon/pull/13).
- Release `1.1.1`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#12](https://github.com/space-code/typhoon/pull/12).
- Update `ci.yml`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#11](https://github.com/space-code/typhoon/pull/11).
- Add files to comply with community standards
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#9](https://github.com/space-code/typhoon/pull/9).
- Update workflow
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#10](https://github.com/space-code/typhoon/pull/10).

## [1.1.0](https://github.com/space-code/typhoon/releases/tag/1.1.0)
Released on 2023-12-08.

#### Added
- Increase the test coverage of the project
- Added in Pull Request [#6](https://github.com/space-code/typhoon/pull/6).
- Implement error handling in RetryPolicyService
- Added in Pull Request [#5](https://github.com/space-code/typhoon/pull/5).
Released on 2023-12-08. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/typhoon/milestones?state=closed&q=1.1.0).

### Uncategorized Changes
- Release `1.1.0`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#8](https://github.com/space-code/typhoon/pull/8).
- Update `CHANGELOG.md`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#7](https://github.com/space-code/typhoon/pull/7).
- Implement `RetryPolicyStrategyTests`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#6](https://github.com/space-code/typhoon/pull/6).
- Implement error handling in `RetryPolicyService`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#5](https://github.com/space-code/typhoon/pull/5).
- Implement exponential backoff with jitter
- Added in Pull Request [#4](https://github.com/space-code/typhoon/pull/4).
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#4](https://github.com/space-code/typhoon/pull/4).
- Lowered the minimum OS version
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#2](https://github.com/space-code/typhoon/pull/2).

## [1.0.0](https://github.com/space-code/typhoon/releases/tag/1.0.0)
Released on 2023-11-10.

#### Added
- Initial release of Typhoon.
- Added by [Nikita Vasilev](https://github.com/nik3212).
Released on 2023-11-12. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/typhoon/milestones?state=closed&q=1.0.0).

### Uncategorized Changes
- Lowered the minimum OS version
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#3](https://github.com/space-code/typhoon/pull/3).
- Release `1.0.0`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#1](https://github.com/space-code/typhoon/pull/1).

[1.3.0]: https://github.com/space-code/typhoon/compare/1.2.1..1.3.0
[1.2.1]: https://github.com/space-code/typhoon/compare/1.2.0..1.2.1
[1.2.0]: https://github.com/space-code/typhoon/compare/1.1.1..1.2.0
[1.1.1]: https://github.com/space-code/typhoon/compare/1.1.0..1.1.1
[1.1.0]: https://github.com/space-code/typhoon/compare/1.0.0..1.1.0

Loading