changelog

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Changelog

更新日志

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.md
Returns a list of every changelog entry with this format per entry:
undefined
获取完整的更新日志索引:
https://railway.com/llms-changelog.md
返回的每个更新日志条目格式如下:
undefined

Railway Product Changelog <Title>

Railway Product Changelog <Title>



Entries are numbered descending (newest first). The index currently contains 280+ entries spanning 2021 to present.


条目按编号降序排列(最新的在前)。目前索引包含280+条条目,时间跨度从2021年至今。

Individual entry

单个条目

Every entry link from the index is already an
.md
URL. Fetch it directly:
https://railway.com/changelog/<slug>.md
Returns 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.).
索引中的每个条目链接本身就是
.md
格式的URL,可直接获取:
https://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

获取最新更新日志条目

  1. Fetch
    https://railway.com/llms-changelog.md
  2. The first entries are the most recent. Extract the titles, dates, and links.
  1. 获取
    https://railway.com/llms-changelog.md
  2. 开头的条目即为最新内容,提取标题、日期和链接。

Read a specific entry

读取特定条目

  1. Take the link from the index (already ends in
    .md
    )
  2. Fetch it directly to get the full post content
  1. 从索引中获取对应链接(已为
    .md
    格式)
  2. 直接获取该链接以获取完整文章内容

Search for a topic

按主题搜索

  1. Fetch the index
  2. Scan entry titles for keywords
  3. Fetch matching entries for full details
  1. 获取索引
  2. 扫描条目标题以查找关键词
  3. 获取匹配的条目以查看完整详情

Get the N most recent entries

获取最近N条条目

  1. Fetch the index
  2. Take the first N entries
  3. Optionally fetch each one for full content
  1. 获取索引
  2. 提取前N条条目
  3. 可选地获取每条条目以查看完整内容

Routing

路由规则

IntentAction
"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
.md
URL
"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
https://railway.com/changelog
(web) or
https://railway.com/llms-changelog.md
(markdown)
意图操作
“新功能介绍”/“最新更新日志”/“近期变更”获取索引,返回前3-5条包含标题和日期的条目
“告诉我关于<功能>的内容”获取索引,通过标题查找匹配条目,获取该条目的
.md
URL
“<日期>发布了什么内容”获取索引,查找匹配日期的条目,获取完整内容
“总结更新日志#<编号>”获取索引,通过编号查找条目,获取完整内容
“更新日志的URL是什么”返回
https://railway.com/changelog
(网页版)或
https://railway.com/llms-changelog.md
(markdown版)

Execution Rules

执行规则

  1. Always fetch fresh data. The changelog updates weekly (typically Thursdays).
  2. Use
    WebFetch
    to retrieve markdown content. Fall back to
    curl
    if WebFetch is unavailable.
  3. When summarizing entries, preserve the entry number and date for reference.
  4. Link to the human-readable URL (without
    .md
    ) when presenting results to users.
  5. For broad questions ("what's new"), return 3-5 recent entries. Don't dump the entire index.
  6. For specific lookups, fetch the full entry content and summarize the relevant sections.
  1. 始终获取最新数据。更新日志每周更新(通常在周四)。
  2. 使用
    WebFetch
    获取markdown内容。如果WebFetch不可用,回退使用
    curl
  3. 总结条目时,保留条目编号和日期以供参考。
  4. 向用户展示结果时,链接到人类可读的URL(不带
    .md
    后缀)。
  5. 对于宽泛的问题(如“新功能介绍”),返回3-5条近期条目,不要输出整个索引。
  6. 对于特定查询,获取完整条目内容并总结相关部分。

Response Format

响应格式

When presenting changelog entries:
  • Title with link to
    https://railway.com/changelog/<slug>
    (no
    .md
    suffix for user-facing links)
  • Date and number
  • Summary of key items when full content is fetched
展示更新日志条目时:
  • 标题,链接到
    https://railway.com/changelog/<slug>
    (面向用户的链接不带
    .md
    后缀)
  • 日期编号
  • 获取完整内容时,添加关键内容的摘要