Skip to content

Commit 98f5038

Browse files
committed
chore(changelog): add changelog.yaml and format the CHANGELOG.md file
Signed-off-by: Anupam Kumar <kyteinsky@gmail.com>
1 parent 46f1aeb commit 98f5038

2 files changed

Lines changed: 158 additions & 23 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,47 +8,47 @@ All notable changes to this project will be documented in this file.
88
The format is based on [Keep a Changelog](http://keepachangelog.com/)
99
and this project adheres to [Semantic Versioning](http://semver.org/).
1010

11-
## [1.1.6] – 2025-11-27
12-
13-
### Fixed
14-
- do not reload on code change (#43) @kyteinsky
15-
- add user_id to taskproc OCS calls to avoid 401 resp (#43) @kyteinsky
16-
- use "admin" as fallback if no user is found (#43) @kyteinsky
17-
- disallow anon users to request summaries (#43) @kyteinsky
11+
## 1.1.6 - 2025-11-27
1812

1913
### Changed
20-
- improve LLM taskproc error message (#43) @kyteinsky
21-
- upgrade to python3.13 and nc_py_api to 0.23.0 (#43) @kyteinsky
22-
- bump max supported NC to 33 (#43) @kyteinsky
14+
- improve LLM taskproc error message ([#43](https://github.com/nextcloud/summary_bot/pull/43)) @kyteinsky
15+
- upgrade to python3.13 and nc_py_api to 0.23.0 ([#43](https://github.com/nextcloud/summary_bot/pull/43)) @kyteinsky
16+
- bump max supported NC to 33 ([#43](https://github.com/nextcloud/summary_bot/pull/43)) @kyteinsky
2317

18+
### Fixed
19+
- do not reload on code change ([#43](https://github.com/nextcloud/summary_bot/pull/43)) @kyteinsky
20+
- add user_id to taskproc OCS calls to avoid 401 resp ([#43](https://github.com/nextcloud/summary_bot/pull/43)) @kyteinsky
21+
- use "admin" as fallback if no user is found ([#43](https://github.com/nextcloud/summary_bot/pull/43)) @kyteinsky
22+
- disallow anon users to request summaries ([#43](https://github.com/nextcloud/summary_bot/pull/43)) @kyteinsky
2423

25-
## [1.1.5] – 2025-07-24
24+
25+
## 1.1.5 - 2025-07-24
2626

2727
### Fixed
28-
- Fix scheduled summary jobs #40 @lukasdotcom
29-
- Enable dependabot and other maintenance tasks #37 @kyteinsky
30-
- Add Github actions for reuse #36 @AndyScherzinger
28+
- Fix scheduled summary jobs ([#40](https://github.com/nextcloud/summary_bot/pull/40)) @lukasdotcom
29+
- Enable dependabot and other maintenance tasks ([#37](https://github.com/nextcloud/summary_bot/pull/37)) @kyteinsky
30+
- Add Github actions for reuse ([#36](https://github.com/nextcloud/summary_bot/pull/36)) @AndyScherzinger
3131

3232

33-
## [1.1.4] 2024-10-01
33+
## 1.1.4 - 2024-10-01
3434

3535
### Fixed
3636
- Enable appstore-build-publish on nextcloud-releases
3737

3838

39-
## [1.1.3] 2024-10-01
39+
## 1.1.3 - 2024-10-01
4040

4141
### Fixed
4242
- Add files required for nc release
4343

4444

45-
## [1.1.2] 2024-09-30
45+
## 1.1.2 - 2024-09-30
4646

4747
### Fixed
4848
- Preserve pip cache on code change
4949

5050

51-
## [1.1.1] 2024-09-30
51+
## 1.1.1 - 2024-09-30
5252

5353
### Fixed
5454
- Timezone handling
@@ -57,16 +57,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5757
- Minor fixes
5858

5959

60-
## [1.1.0] – 2024-09-18
61-
62-
### Changed
63-
- Use TaskProcessing instead of TextProcessing
60+
## 1.1.0 - 2024-09-18
6461

6562
### Added
6663
- Add on-demand execution command
6764

65+
### Changed
66+
- Use TaskProcessing instead of TextProcessing
67+
6868

69-
## [1.0.0] 2024-08-02
69+
## 1.0.0 - 2024-08-02
7070

7171
### Added
7272
- The app

changelog.yaml

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
repository_link: https://github.com/nextcloud/summary_bot
2+
title: Change Log
3+
description: All notable changes to this project will be documented in this file.
4+
markdown_preamble: |-
5+
<!--
6+
- SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
7+
- SPDX-License-Identifier: AGPL-3.0-or-later
8+
-->
9+
# Change Log
10+
All notable changes to this project will be documented in this file.
11+
12+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
13+
and this project adheres to [Semantic Versioning](http://semver.org/).
14+
release_agent:
15+
ignore_commits:
16+
- author: "^pre-commit-ci\\[bot\\]$"
17+
- author: "^Nextcloud-bot$"
18+
- email: bot@nextcloud.com
19+
- author: "^dependabot\\[bot\\]$"
20+
- message: "^chore\\(changelog\\):"
21+
entries:
22+
- version: 1.1.6
23+
release_date: '2025-11-27'
24+
sections:
25+
- name: Changed
26+
items:
27+
- text: improve LLM taskproc error message
28+
authors:
29+
- kyteinsky
30+
issue_number: 43
31+
- text: upgrade to python3.13 and nc_py_api to 0.23.0
32+
authors:
33+
- kyteinsky
34+
issue_number: 43
35+
- text: bump max supported NC to 33
36+
authors:
37+
- kyteinsky
38+
issue_number: 43
39+
- name: Fixed
40+
items:
41+
- text: do not reload on code change
42+
authors:
43+
- kyteinsky
44+
issue_number: 43
45+
- text: add user_id to taskproc OCS calls to avoid 401 resp
46+
authors:
47+
- kyteinsky
48+
issue_number: 43
49+
- text: use "admin" as fallback if no user is found
50+
authors:
51+
- kyteinsky
52+
issue_number: 43
53+
- text: disallow anon users to request summaries
54+
authors:
55+
- kyteinsky
56+
issue_number: 43
57+
- version: 1.1.5
58+
release_date: '2025-07-24'
59+
sections:
60+
- name: Fixed
61+
items:
62+
- text: Fix scheduled summary jobs
63+
authors:
64+
- lukasdotcom
65+
issue_number: 40
66+
- text: Enable dependabot and other maintenance tasks
67+
authors:
68+
- kyteinsky
69+
issue_number: 37
70+
- text: Add Github actions for reuse
71+
authors:
72+
- AndyScherzinger
73+
issue_number: 36
74+
- version: 1.1.4
75+
release_date: '2024-10-01'
76+
sections:
77+
- name: Fixed
78+
items:
79+
- text: Enable appstore-build-publish on nextcloud-releases
80+
authors: []
81+
issue_number:
82+
- version: 1.1.3
83+
release_date: '2024-10-01'
84+
sections:
85+
- name: Fixed
86+
items:
87+
- text: Add files required for nc release
88+
authors: []
89+
issue_number:
90+
- version: 1.1.2
91+
release_date: '2024-09-30'
92+
sections:
93+
- name: Fixed
94+
items:
95+
- text: Preserve pip cache on code change
96+
authors: []
97+
issue_number:
98+
- version: 1.1.1
99+
release_date: '2024-09-30'
100+
sections:
101+
- name: Fixed
102+
items:
103+
- text: Timezone handling
104+
authors: []
105+
issue_number:
106+
- text: Docker build container repo url
107+
authors: []
108+
issue_number:
109+
- text: Docker runs-only-on github runners
110+
authors: []
111+
issue_number:
112+
- text: Minor fixes
113+
authors: []
114+
issue_number:
115+
- version: 1.1.0
116+
release_date: '2024-09-18'
117+
sections:
118+
- name: Added
119+
items:
120+
- text: Add on-demand execution command
121+
authors: []
122+
issue_number:
123+
- name: Changed
124+
items:
125+
- text: Use TaskProcessing instead of TextProcessing
126+
authors: []
127+
issue_number:
128+
- version: 1.0.0
129+
release_date: '2024-08-02'
130+
sections:
131+
- name: Added
132+
items:
133+
- text: The app
134+
authors: []
135+
issue_number:

0 commit comments

Comments
 (0)