Skip to content

Commit 97777be

Browse files
authored
Changelog: 2025-10-03 (#472)
1 parent b825e31 commit 97777be

File tree

4 files changed

+19
-33
lines changed

4 files changed

+19
-33
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ There are 4 possible types of changes, which each have an emoji associated with
2626
- πŸ”§ Maintenance
2727
2828
The steps to follow are:
29-
1. Load the changelog.mdx file and note the date of the most recent entry.
30-
2. Load all new commits since the most recent entry in the changelog.mdx file from the provided Github repositories.
31-
3. Append the changes to the changelog.mdx file. Keep and do not alter the older entries in the changelog. Do not ask the user for confirmation. 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.
29+
1. Load the changelog file and note the date of the most recent entry.
30+
2. Load all new commits since the most recent entry in the changelog file from the provided Github repositories.
31+
3. Append the changes to the changelog file. Keep and do not alter the older entries in the changelog. Do not ask the user for confirmation. The changelog should be in the same format as the changelog file. Do not include any other text in the changelog file. Do not combine multiple changes into a single entry.
3232
3333
When updating the changelog, follow these rules:
3434
- The date to use for the changelog is always the most recent Friday.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dotenv.config();
1212
const __filename = fileURLToPath(import.meta.url);
1313
const __dirname = path.dirname(__filename);
1414
const pagesDirectory = path.normalize(
15-
path.join(__dirname, "..", "..", "pages"),
15+
path.join(__dirname, "..", "..", "app", "en", "home"),
1616
);
1717

1818
program.version(pkg.version).name(pkg.name).description(pkg.description);
@@ -60,12 +60,12 @@ program
6060
.argument(
6161
"[changelog_path]",
6262
"The path to the changelog.md file",
63-
path.join(pagesDirectory, "home", "changelog.mdx"),
63+
path.join(pagesDirectory, "changelog", "page.mdx"),
6464
)
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,ArcadeAI/dashboard,ArcadeAI/toolkits",
68+
"ArcadeAI/docs,ArcadeAI/arcade-mcp,ArcadeAI/Cloud,ArcadeAI/Engine,ArcadeAI/dashboard,ArcadeAI/toolkits",
6969
)
7070
.argument(
7171
"[private_repos]",

β€Žapp/en/home/changelog/page.mdxβ€Ž

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
---
23
title: "Changelog"
34
description: "What's new at Arcade.dev"
@@ -9,6 +10,17 @@ import { Callout } from "nextra/components";
910

1011
_Here's what's new at Arcade.dev!_
1112

13+
## 2025-10-03
14+
15+
**Toolkits**
16+
17+
- `[feature - πŸš€]` Box.com Starter MCP Server released ([docs](https://docs.arcade.dev/mcp-servers/productivity/box-api))
18+
- `[feature - πŸš€]` Stripe Starter MCP Server released ([docs](https://docs.arcade.dev/en/mcp-servers/payments/stripe_api))
19+
20+
**Misc**
21+
22+
- `[documentation - πŸ“]` Add FAQ explaining personal vs project API keys
23+
1224
## 2025-09-26
1325

1426
**Toolkits**
@@ -330,3 +342,4 @@ Self-hosed Arcade developers cannot be grandfathered into the old (insecure) beh
330342

331343
- `[feature - πŸš€]` Launched Github Discussions for product feedback and support ([link](https://github.com/ArcadeAI/arcade-ai/discussions))
332344
- `[feature - πŸš€]` Launched status.arcade.dev for monitoring platform status ([link](https://status.arcade.dev))
345+

β€Žchangelog-instructions.mdβ€Ž

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
Β (0)