Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 支持Prometheus的指标聚合API #676 #677

Merged
merged 2 commits into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

更新日志文档,版本顺序从新到旧,最新版本在最前(上)面。

# 0.15.9

- 支持Prometheus的指标聚合API #676

# 0.15.8

- [X] Console条目详情页剧集看完按钮动态显示 #671
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.15.8
version=0.15.9
4 changes: 1 addition & 3 deletions server/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import org.apache.tools.ant.filters.ReplaceTokens
import org.springframework.core.io.ClassPathResource

plugins {
id 'org.springframework.boot' version '3.0.1'
id 'io.spring.dependency-management' version '1.1.0'
Expand Down Expand Up @@ -71,6 +68,7 @@ dependencies {
implementation 'org.json:json:20230227'

implementation "org.flywaydb:flyway-core:$flywaydb"
implementation "io.micrometer:micrometer-registry-prometheus"


implementation 'io.jsonwebtoken:jjwt-api:0.12.5'
Expand Down
Loading