Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
65fd607
WIP: changelog and versioning methods
MaciejKaras Jun 10, 2025
993753e
WIP: generate_changelog func
MaciejKaras Jun 10, 2025
f41c9f3
Working release notes generation
MaciejKaras Jun 10, 2025
30d5b04
Added tests for release notes generation
MaciejKaras Jun 11, 2025
a8e6782
Release with breaking change test
MaciejKaras Jun 11, 2025
6de3703
Added more releases
MaciejKaras Jun 12, 2025
c353737
Added release branch test cases
MaciejKaras Jun 12, 2025
c220f2e
Get the previous version based on current HEAD
MaciejKaras Jun 12, 2025
891d821
Added tests, gitgraph, docs and cmd input
MaciejKaras Jun 13, 2025
a2cdcb4
Add main method in versioning.py
MaciejKaras Jun 15, 2025
5465b98
Move main method to calculate_next_version.py
MaciejKaras Jun 16, 2025
20fded0
Optimize imports
MaciejKaras Jun 16, 2025
df195d1
Lint fix
MaciejKaras Jun 16, 2025
aebd634
Add changelog entry frontmatter text
MaciejKaras Jul 11, 2025
371499a
Added frontmatter validation
MaciejKaras Jul 13, 2025
a7d7f60
Script for generating changelog file
MaciejKaras Jul 13, 2025
136a939
Review fixes
MaciejKaras Jul 13, 2025
5dfa8cd
Review fixes v2
MaciejKaras Jul 14, 2025
ce49927
Review fixes v3
MaciejKaras Jul 14, 2025
240f2c9
Review fixes v4
MaciejKaras Jul 14, 2025
4a97699
Using ChangeEntry type
MaciejKaras Jul 15, 2025
76f0f74
Making release a module
MaciejKaras Jul 15, 2025
c9b6857
Fixing other kind of change issue + missing tests
MaciejKaras Jul 15, 2025
e51357b
Adding quotes to error message variables
MaciejKaras Jul 15, 2025
896db65
remove venv from .gitignore
MaciejKaras Jul 16, 2025
d55f322
fix unit tests
MaciejKaras Jul 16, 2025
5b35ab0
Adding changelog file for testing
MaciejKaras Jul 15, 2025
6723380
Adding GHA workflow
MaciejKaras Jul 15, 2025
a723387
Adding GHA workflow
MaciejKaras Jul 15, 2025
16b1285
Adding GHA workflow
MaciejKaras Jul 15, 2025
48f2507
Fixing GHA workflow
MaciejKaras Jul 15, 2025
bf50605
Removing changelog file
MaciejKaras Jul 15, 2025
5d066f7
Adding release notes action
MaciejKaras Jul 15, 2025
fcd74d6
test
MaciejKaras Jul 15, 2025
35a904d
wip
MaciejKaras Jul 15, 2025
5d72a98
Change permissions
MaciejKaras Jul 16, 2025
8eae2aa
Fix summary
MaciejKaras Jul 16, 2025
3a79629
Add more changes
MaciejKaras Jul 16, 2025
c9850f1
Update activity types
MaciejKaras Jul 16, 2025
2b484ba
Remove test changelog file
MaciejKaras Jul 16, 2025
a6c3360
Fix missing pipefail
MaciejKaras Jul 16, 2025
d6e789d
Added documentation for changelogs
MaciejKaras Jul 16, 2025
8a5cd18
Remove unnecessary default value
MaciejKaras Jul 17, 2025
d956a13
Don't post PR comment on forks - the token has only read permissions
MaciejKaras Jul 17, 2025
0286ddf
Add disclaimer to PR comment
MaciejKaras Jul 17, 2025
4d81905
Merge branch 'master' into maciejk/ar-gha-integration
MaciejKaras Jul 28, 2025
b14bd5c
Review fixes
MaciejKaras Jul 28, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix unit tests
  • Loading branch information
MaciejKaras committed Jul 16, 2025
commit d55f32289d45793ae8b04d732e63cc19b7218cc6
3 changes: 2 additions & 1 deletion scripts/release/changelog_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ def test_invalid_date(self):
with self.assertRaises(Exception) as context:
extract_date_and_kind_from_file_name("20250640_refactor_codebase.md")
self.assertEqual(
str(context.exception), "20250640_refactor_codebase.md - date 20250640 is not in the expected format %Y%m%d"
str(context.exception),
"20250640_refactor_codebase.md - date '20250640' is not in the expected format %Y%m%d",
)

def test_wrong_file_name_format_date(self):
Expand Down