Compare commits

...

2 Commits

Author SHA1 Message Date
liukj 31065dc677 docs: fix gather branches and tags 2025-01-25 15:29:33 +08:00
liukj 74ff7ee115 docs: update v1.28.0 docs 2025-01-25 15:09:00 +08:00
4 changed files with 3 additions and 21 deletions

View File

@ -52,7 +52,7 @@ jobs:
# Gather branches and tags, filter for semantic versions, sort, remove duplicates
VERSIONS=$(git for-each-ref refs/remotes/origin refs/tags --format="%(refname:short)" | \
grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$" | sort -Vr | uniq | tr '\n' ',' | sed 's/,$//')
grep -E "v[0-9]+\.[0-9]+\.[0-9]+$" | awk -F'[v]' '{print "v"$2}' | sort -Vr | uniq | tr '\n' ',' | sed 's/,$//')
echo "VERSIONS=main,$VERSIONS" >> $GITHUB_ENV
- name: Install Hugo

View File

@ -7,15 +7,6 @@ title: "Release Notes"
Information about release notes of INFINI Console is provided here.
## Latest (In development)
### Breaking changes
### Features
- Support function-format parameters in Insight Data API
- Support configuring multiple hosts when creating a cluster
### Bug fix
### Improvements
## 1.28.0 (2025-01-11)
### Breaking changes

View File

@ -7,15 +7,6 @@ title: "版本历史"
这里是 INFINI Console 历史版本发布的相关说明。
## Latest (In development)
### Breaking changes
### Features
- Insight Data API 支持函数格式查询,方便拓展查询功能
- 创建集群时支持配置多个主机地址,增强集群的高可用性
### Bug fix
### Improvements
## 1.28.0 (2025-01-11)
### Features

View File

@ -11,7 +11,7 @@ console: {
contacts: ':',
}
],
version: '1.27.0-1936',
version: '1.28.0-1972',
doc: "/docs/latest/console/getting-started/install/"
}
@ -23,6 +23,6 @@ agent: {
contacts: ' -v ',
}
],
version: '1.27.0-1936',
version: '1.28.0-1972',
doc: "/docs/latest/agent/getting-started/install/"
}