Skip to content

Commit 6abc7cb

Browse files
committed
Changelog for the week ending on 2025-07-04
1 parent cdd0480 commit 6abc7cb

5 files changed

Lines changed: 33 additions & 5 deletions

File tree

β€Žagents/changelog/agents/changelog.tsβ€Ž

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,21 @@ There are 4 possible types of changes, which each have an emoji associated with
2525
- πŸ“ Documentation
2626
- πŸ”§ Maintenance
2727
28+
Do not combine types.
29+
2830
The steps to follow are:
2931
1. Load the changelog.mdx file and note the date of the most recent entry.
3032
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.
33+
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.
34+
35+
When generating the changelog, follow these rules:
36+
- The date to use for the changelog is always the most recent Friday.
37+
- 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".
38+
- 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.
39+
- Do not combine categories. Do not add any new categories.
40+
- Any changes to the Dashboard should be categorized as "Platform and Engine".
41+
- Any changes for the private repositories, Cloud, Engine, and Dashboard should not have a pull request link.
42+
- Do not combine types.
3343
3444
Report the steps you took to update the changelog when complete, or any errors you encountered.
3545
`;

β€Ž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": "pnpm@10.9.0",
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)