🔨 升级版本.

This commit is contained in:
lijiahangmax
2025-10-20 00:23:48 +08:00
parent 55d0dfd27d
commit a2f7ab7f9c
11 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
version: '3.3' version: '3.3'
# latest = 2.5.3 # latest = 2.5.4
# 支持以下源 # 支持以下源
# lijiahangmax/* # lijiahangmax/*

View File

@@ -7,7 +7,7 @@ set -e
source ./project-build.sh "$@" source ./project-build.sh "$@"
# 版本号 # 版本号
version=2.5.3 version=2.5.4
# 是否推送镜像 # 是否推送镜像
push_image=false push_image=false
# 是否构建 latest # 是否构建 latest

View File

@@ -4,7 +4,7 @@ set -e
# DockerContext: orion-visor # DockerContext: orion-visor
# 版本号 # 版本号
version=2.5.3 version=2.5.4
# 是否构建 service # 是否构建 service
export build_service=false export build_service=false
# 是否构建 ui # 是否构建 ui

View File

@@ -36,7 +36,7 @@ public interface AppConst extends OrionConst {
/** /**
* 同 ${orion.version} 迭代时候需要手动更改 * 同 ${orion.version} 迭代时候需要手动更改
*/ */
String VERSION = "2.5.3"; String VERSION = "2.5.4";
/** /**
* 同 ${spring.application.name} * 同 ${spring.application.name}

View File

@@ -14,11 +14,11 @@
<url>https://github.com/dromara/orion-visor</url> <url>https://github.com/dromara/orion-visor</url>
<properties> <properties>
<revision>2.5.3</revision> <revision>2.5.4</revision>
<spring.boot.version>2.7.17</spring.boot.version> <spring.boot.version>2.7.17</spring.boot.version>
<spring.boot.admin.version>2.7.15</spring.boot.admin.version> <spring.boot.admin.version>2.7.15</spring.boot.admin.version>
<flatten.maven.plugin.version>1.5.0</flatten.maven.plugin.version> <flatten.maven.plugin.version>1.5.0</flatten.maven.plugin.version>
<orion.kit.version>2.0.4</orion.kit.version> <orion.kit.version>2.0.5</orion.kit.version>
<aspectj.version>1.9.7</aspectj.version> <aspectj.version>1.9.7</aspectj.version>
<lombok.version>1.18.26</lombok.version> <lombok.version>1.18.26</lombok.version>
<springdoc.version>1.6.15</springdoc.version> <springdoc.version>1.6.15</springdoc.version>

View File

@@ -39,9 +39,9 @@ import java.util.function.Function;
*/ */
public class ReplaceVersion { public class ReplaceVersion {
private static final String TARGET_VERSION = "2.5.2"; private static final String TARGET_VERSION = "2.5.3";
private static final String REPLACE_VERSION = "2.5.3"; private static final String REPLACE_VERSION = "2.5.4";
private static final String PATH = new File("").getAbsolutePath(); private static final String PATH = new File("").getAbsolutePath();

View File

@@ -135,7 +135,7 @@ public class MetricsAlarmEngine extends BaseAlarmEngine {
@Override @Override
protected void setExtraAlarmPushParams(Map<String, Object> params, AlarmEventTriggerDTO event) { protected void setExtraAlarmPushParams(Map<String, Object> params, AlarmEventTriggerDTO event) {
HostAlarmSourceInfo sourceInfo = JSON.parseObject(event.getAlarmInfo(), HostAlarmSourceInfo.class); HostAlarmSourceInfo sourceInfo = JSON.parseObject(event.getSourceInfo(), HostAlarmSourceInfo.class);
params.put("hostId", event.getSourceId()); params.put("hostId", event.getSourceId());
params.put("hostName", sourceInfo.getName()); params.put("hostName", sourceInfo.getName());
params.put("hostCode", sourceInfo.getCode()); params.put("hostCode", sourceInfo.getCode());

View File

@@ -3,4 +3,4 @@ VITE_API_BASE_URL=http://127.0.0.1:9200/orion-visor/api
# websocket 路径 # websocket 路径
VITE_WS_BASE_URL=ws://127.0.0.1:9200/orion-visor/keep-alive VITE_WS_BASE_URL=ws://127.0.0.1:9200/orion-visor/keep-alive
# 版本号 # 版本号
VITE_APP_VERSION=2.5.3 VITE_APP_VERSION=2.5.4

View File

@@ -3,4 +3,4 @@ VITE_API_BASE_URL=/orion-visor/api
# websocket 路径 # websocket 路径
VITE_WS_BASE_URL=/orion-visor/keep-alive VITE_WS_BASE_URL=/orion-visor/keep-alive
# 版本号 # 版本号
VITE_APP_VERSION=2.5.3 VITE_APP_VERSION=2.5.4

View File

@@ -1,7 +1,7 @@
{ {
"name": "orion-visor-ui", "name": "orion-visor-ui",
"description": "Orion Visor UI", "description": "Orion Visor UI",
"version": "2.5.3", "version": "2.5.4",
"private": true, "private": true,
"author": "Jiahang Li", "author": "Jiahang Li",
"license": "Apache 2.0", "license": "Apache 2.0",

View File

@@ -22,7 +22,7 @@
</modules> </modules>
<properties> <properties>
<revision>2.5.3</revision> <revision>2.5.4</revision>
<maven.compiler.source>8</maven.compiler.source> <maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target> <maven.compiler.target>8</maven.compiler.target>
<maven.surefire.plugin.version>3.0.0-M5</maven.surefire.plugin.version> <maven.surefire.plugin.version>3.0.0-M5</maven.surefire.plugin.version>