Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion agents/changelog/agents/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,15 @@ When updating the changelog, follow these rules:
privateRepositories: string[],
) {
this.logger.startSpan(
`Generating changelog from changes in ${repositories.join(", ")}...`,
`Generating changelog from changes in ${repositories.join(", ")} and ${privateRepositories.join(", ")}...`,
);

const result = await this.run(
`
Today is ${new Date().toISOString().split("T")[0]}.
The full path to the changelog.md that you will be appending to is \`${changelogPath}\`.
The Github repositories to load commits from are: ${repositories.join(", ")}
The Github private repositories to load commits from are: ${privateRepositories.join(", ")}
When appending to the changelog, do not include links for the private repositories, which are: ${privateRepositories.join(", ")}
`,
);
Expand Down
4 changes: 2 additions & 2 deletions agents/changelog/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ program
.argument(
"[repos]",
"A comma separated list of repositories to load the changelogs from",
"ArcadeAI/docs,ArcadeAI/arcade-mcp,ArcadeAI/Cloud,ArcadeAI/Engine,ArcadeAI/dashboard,ArcadeAI/toolkits",
"ArcadeAI/docs,ArcadeAI/arcade-mcp",
)
.argument(
"[private_repos]",
"A comma separated list of private repositories to load the changelogs from",
"ArcadeAI/Cloud,ArcadeAI/Engine,ArcadeAI/dashboard,ArcadeAI/toolkits",
"ArcadeAI/monorepo",
)
.action(
async (
Expand Down
12 changes: 12 additions & 0 deletions app/en/references/changelog/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ import { Callout } from "nextra/components";

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

## 2026-01-16

**Arcade MCP Servers**
- `[feature - 🚀]` [`arcade-mcp`](https://github.com/ArcadeAI/arcade-mcp) Support Ed25519 Algorithm
- `[bugfix - 🐛]` [`arcade-mcp`](https://github.com/ArcadeAI/arcade-mcp) Fix dateutil dependency issue
- `[bugfix - 🐛]` [`arcade-mcp`](https://github.com/ArcadeAI/arcade-mcp) Fix PostHog dependency issue

**Platform and Engine**
- `[bugfix - 🐛]` fix: Allow long custom verifier URLs
- `[feature - 🚀]` Add Dashboard support for expiring API keys


## 2026-01-09

<Callout type="important">
Expand Down