changelog
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseChangelog
更新日志
Railway publishes a weekly product changelog. All changelog data is available as markdown for easy consumption.
Railway每周发布产品更新日志。所有更新日志数据均以markdown格式提供,便于查看使用。
Data Sources
数据来源
Index: all entries
索引:所有条目
Fetch the full changelog index:
https://railway.com/llms-changelog.mdReturns a list of every changelog entry with this format per entry:
undefined获取完整的更新日志索引:
https://railway.com/llms-changelog.md返回的每个更新日志条目格式如下:
undefinedRailway Product Changelog <Title>
Railway Product Changelog <Title>
- Title: <title>
- Number: #<4-digit number>
- Link: https://railway.com/changelog/<slug>.md
- Date: <M/D/YYYY>
Entries are numbered descending (newest first). The index currently contains 280+ entries spanning 2021 to present.- Title: <title>
- Number: #<4-digit number>
- Link: https://railway.com/changelog/<slug>.md
- Date: <M/D/YYYY>
条目按编号降序排列(最新的在前)。目前索引包含280+条条目,时间跨度从2021年至今。Individual entry
单个条目
Every entry link from the index is already an URL. Fetch it directly:
.mdhttps://railway.com/changelog/<slug>.mdReturns full markdown with YAML frontmatter:
yaml
---
title: "<title>"
date: <YYYY-MM-DD>
number: <4-digit number>
url: https://railway.com/changelog/<slug>
---Followed by the full post body (headings, images, links, etc.).
索引中的每个条目链接本身就是格式的URL,可直接获取:
.mdhttps://railway.com/changelog/<slug>.md返回包含YAML前置元数据的完整markdown内容:
yaml
---
title: "<title>"
date: <YYYY-MM-DD>
number: <4-digit number>
url: https://railway.com/changelog/<slug>
---后续是完整的文章内容(包括标题、图片、链接等)。
Quick Operations
快速操作
Get latest changelog entries
获取最新更新日志条目
- Fetch
https://railway.com/llms-changelog.md - The first entries are the most recent. Extract the titles, dates, and links.
- 获取
https://railway.com/llms-changelog.md - 开头的条目即为最新内容,提取标题、日期和链接。
Read a specific entry
读取特定条目
- Take the link from the index (already ends in )
.md - Fetch it directly to get the full post content
- 从索引中获取对应链接(已为格式)
.md - 直接获取该链接以获取完整文章内容
Search for a topic
按主题搜索
- Fetch the index
- Scan entry titles for keywords
- Fetch matching entries for full details
- 获取索引
- 扫描条目标题以查找关键词
- 获取匹配的条目以查看完整详情
Get the N most recent entries
获取最近N条条目
- Fetch the index
- Take the first N entries
- Optionally fetch each one for full content
- 获取索引
- 提取前N条条目
- 可选地获取每条条目以查看完整内容
Routing
路由规则
| Intent | Action |
|---|---|
| "What's new" / "latest changelog" / "recent changes" | Fetch index, return top 3-5 entries with titles and dates |
| "Tell me about <feature>" | Fetch index, find matching entry by title, fetch that entry's |
| "What shipped on <date>" | Fetch index, find entry matching the date, fetch full content |
| "Summarize changelog #<number>" | Fetch index, find by number, fetch full content |
| "What's the changelog URL" | Return |
| 意图 | 操作 |
|---|---|
| “新功能介绍”/“最新更新日志”/“近期变更” | 获取索引,返回前3-5条包含标题和日期的条目 |
| “告诉我关于<功能>的内容” | 获取索引,通过标题查找匹配条目,获取该条目的 |
| “<日期>发布了什么内容” | 获取索引,查找匹配日期的条目,获取完整内容 |
| “总结更新日志#<编号>” | 获取索引,通过编号查找条目,获取完整内容 |
| “更新日志的URL是什么” | 返回 |
Execution Rules
执行规则
- Always fetch fresh data. The changelog updates weekly (typically Thursdays).
- Use to retrieve markdown content. Fall back to
WebFetchif WebFetch is unavailable.curl - When summarizing entries, preserve the entry number and date for reference.
- Link to the human-readable URL (without ) when presenting results to users.
.md - For broad questions ("what's new"), return 3-5 recent entries. Don't dump the entire index.
- For specific lookups, fetch the full entry content and summarize the relevant sections.
- 始终获取最新数据。更新日志每周更新(通常在周四)。
- 使用获取markdown内容。如果WebFetch不可用,回退使用
WebFetch。curl - 总结条目时,保留条目编号和日期以供参考。
- 向用户展示结果时,链接到人类可读的URL(不带后缀)。
.md - 对于宽泛的问题(如“新功能介绍”),返回3-5条近期条目,不要输出整个索引。
- 对于特定查询,获取完整条目内容并总结相关部分。
Response Format
响应格式
When presenting changelog entries:
- Title with link to (no
https://railway.com/changelog/<slug>suffix for user-facing links).md - Date and number
- Summary of key items when full content is fetched
展示更新日志条目时:
- 标题,链接到(面向用户的链接不带
https://railway.com/changelog/<slug>后缀).md - 日期和编号
- 获取完整内容时,添加关键内容的摘要