@jens_astrup/release-manager 0.1.0-alpha.2 → 0.1.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/lib/openai.js +38 -0
- package/package.json +1 -1
package/dist/src/lib/openai.js
CHANGED
|
@@ -12,6 +12,44 @@ The release notes should be in the following format:
|
|
|
12
12
|
|
|
13
13
|
## v1.0.0
|
|
14
14
|
- [Issue Description] (Closes [ISSUE-ID](Issue URL))
|
|
15
|
+
|
|
16
|
+
------
|
|
17
|
+
Example:
|
|
18
|
+
|
|
19
|
+
Input:
|
|
20
|
+
New version: v1.0.0
|
|
21
|
+
---
|
|
22
|
+
Display profile information
|
|
23
|
+
Each user should see a button that opens their "profile information", consisting of a non-functional form for changing their display name.
|
|
24
|
+
https://linear.app/yenz/issue/ACE-205/display-modal-for-updating-profile-information
|
|
25
|
+
---
|
|
26
|
+
Allow anonymous users to set name
|
|
27
|
+
Anonymous users should be able to set their display name
|
|
28
|
+
https://linear.app/yenz/issue/ACE-260/allow-anonymous-users-to-set-name
|
|
29
|
+
---
|
|
30
|
+
Create changelog page
|
|
31
|
+
There is a static page which provides a comprehensive overview of GitHub releases. It consists of a list for each release, detailing any changes such as dependency updates, even if no new features are introduced. The page is back-populated with releases to ensure a complete history is available.
|
|
32
|
+
|
|
33
|
+
Acceptance Criteria:
|
|
34
|
+
|
|
35
|
+
A dedicated page is accessible from the footer displaying a list of all GitHub releases.
|
|
36
|
+
|
|
37
|
+
Each release entry includes a description of the changes made, such as dependency updates or bug fixes.
|
|
38
|
+
|
|
39
|
+
The app is capable of back-populating releases to include historical data.
|
|
40
|
+
|
|
41
|
+
The release information is accurate and up-to-date with the GitHub repository.
|
|
42
|
+
|
|
43
|
+
The page is user-friendly, with clear navigation and formatting for easy readability.
|
|
44
|
+
|
|
45
|
+
The difference between this comprehensive coverage of each release and the current changelog is clear
|
|
46
|
+
https://linear.app/yenz/issue/ACE-228/create-changelog-page
|
|
47
|
+
|
|
48
|
+
------
|
|
49
|
+
Output:
|
|
50
|
+
## v1.0.0
|
|
51
|
+
- Display modal for updating profile information (Closes [ACE-205](https://linear.app/yenz/issue/ACE-205/display-modal-for-updating-profile-information) and Closes [ACE-260](https://linear.app/yenz/issue/ACE-260/allow-anonymous-users-to-set-name))
|
|
52
|
+
- Create changelog page (Closes [ACE-228](https://linear.app/yenz/issue/ACE-228/create-changelog-page))
|
|
15
53
|
`;
|
|
16
54
|
function client() {
|
|
17
55
|
return new OpenAI({ apiKey: requireEnv('OPENAI_API_KEY') });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jens_astrup/release-manager",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.3",
|
|
4
4
|
"description": "Interactive CLI for creating release version bump PRs and releases with AI-generated notes. Built with Ink.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "jens_astrup",
|