Compare commits
2 Commits
fix_gw_age
...
v1.28.0
Author | SHA1 | Date |
---|---|---|
|
31065dc677 | |
|
74ff7ee115 |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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/"
|
||||
}
|
Loading…
Reference in New Issue