Skip to content

Commit 94bc628

Browse files
authored
Changelog for the week ending on 2025-07-04 (#338)
* Changelog for the week ending on 2025-07-04 * move rule * cleanup
1 parent cdd0480 commit 94bc628

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-5
lines changed

agents/changelog/agents/changelog.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,16 @@ There are 4 possible types of changes, which each have an emoji associated with
2828
The steps to follow are:
2929
1. Load the changelog.mdx file and note the date of the most recent entry.
3030
2. Load all new commits since the most recent entry in the changelog.mdx file from the provided Github repositories.
31-
3. Categorize the changes into the 5 categories and 3 types. If the change is not in one of the categories, it should be categorized as "Misc". Ignore small changes that are not worth mentioning - use your judgement.
32-
4. Update the changelog.mdx file with the new changes. The changelog should be in the same format as the changelog.mdx file. Do not include any other text in the changelog.mdx file.
31+
3. Update the changelog.mdx file with the new changes. The changelog should be in the same format as the changelog.mdx file. Do not include any other text in the changelog.mdx file. Do not combine multiple changes into a single entry.
32+
33+
When generating the changelog, follow these rules:
34+
- The date to use for the changelog is always the most recent Friday.
35+
- Categorize the changes into the 5 categories and 3 types. If the change is not in one of the categories, it should be categorized as "Misc".
36+
- Ignore small changes that are not worth mentioning and skip changes that are internal only (about the CI pipeline, tests, publishing, etc.) - use your judgement.
37+
- Do not combine categories. Do not add any new categories.
38+
- Do not combine types. Do not add any new types.
39+
- Any changes to the Dashboard should be categorized as "Platform and Engine".
40+
- Any changes for the private repositories, Cloud, Engine, and Dashboard should not have a pull request link.
3341
3442
Report the steps you took to update the changelog when complete, or any errors you encountered.
3543
`;

agents/changelog/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ program
6565
.argument(
6666
"[repos]",
6767
"A comma separated list of repositories to load the changelogs from",
68-
"ArcadeAI/docs,ArcadeAI/arcade-ai,ArcadeAI/Cloud,ArcadeAI/Engine",
68+
"ArcadeAI/docs,ArcadeAI/arcade-ai,ArcadeAI/Cloud,ArcadeAI/Engine,ArcadeAI/dashboard",
6969
)
7070
.action(async (changelog_path: string, repositories: string, options) => {
7171
const config = new Config(options);

agents/changelog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"type": "module",
99
"packageManager": "[email protected]",
1010
"scripts": {
11-
"start": "tsx agent.ts"
11+
"agent": "tsx index.ts generate"
1212
},
1313
"dependencies": {
1414
"@commander-js/extra-typings": "^14.0.0",

agents/changelog/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ This agent is used to generate a changelog for the Arcade.dev software projects.
77
```bash
88
pnpm install
99
cp .env.example .env # and fill in the values
10-
./node_modules/.bin/tsx index.ts generate
10+
npm run agent
1111
```

pages/home/changelog.mdx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ description: "What's new at Arcade.dev"
77

88
*Here's what's new at Arcade.dev!*
99

10+
## For the week ending on 2025-07-04
11+
12+
**Toolkits**
13+
* `[bugfix - 🐛]` patching toolkit template generator for outside the main repo ([PR #460](https://github.com/ArcadeAI/arcade-ai/pull/460))
14+
* `[bugfix - 🐛]` Filter out unneeded files/directories before deploying workers ([PR #464](https://github.com/ArcadeAI/arcade-ai/pull/464))
15+
16+
**Platform and Engine**
17+
* `[feature - 🚀]` Concurrent auth requests for the same user and same scopes use the same authentication flow and URLs. This means that your users only have to authenticate once if the agent chooses to use multiple tools at once with teh same scopes.
18+
* `[bugfix - 🐛]` Fix secret deletion
19+
20+
**Cloud**
21+
* `[bugfix - 🐛]` Update cross-origin-opener-policy header to allow Google Drive File Picker popup
22+
23+
**Platform and Engine**
24+
* `[feature - 🚀]` Dashboard: Allow editing the description of a secret ([PR #95](https://github.com/ArcadeAI/dashboard/pull/95))
25+
* `[feature - 🚀]` Dashboard: Preserve tools when resetting parameters ([PR #97](https://github.com/ArcadeAI/dashboard/pull/97))
26+
1027
## For the week ending on 2025-06-28
1128

1229
**Toolkits**
@@ -34,3 +51,4 @@ description: "What's new at Arcade.dev"
3451
* `[feature - 🚀]` Launched Github Discussions for product feedback and support ([link](https://github.com/ArcadeAI/arcade-ai/discussions))
3552
* `[feature - 🚀]` Launched status.arcade.dev for monitoring platform status ([link](https://status.arcade.dev))
3653

54+

0 commit comments

Comments
 (0)