Skip to content

Commit cc66b62

Browse files
committed
v2.21.0
1 parent eaaf690 commit cc66b62

9 files changed

Lines changed: 18 additions & 17 deletions

File tree

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
organization := "net.yoshinorin"
22
name := "qualtet"
3-
version := "v2.20.0"
3+
version := "v2.21.0"
44
scalaVersion := "3.7.4"
55
val repository = "https://github.com/yoshinorin/qualtet"
66

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM ghcr.io/yoshinorin/docker-sbt:v1.11.7-scala3.7.4-jdk21 as builder
33

44
LABEL maintainer="yoshinorin"
5-
ENV QUALTET_VERSION="v2.20.0"
5+
ENV QUALTET_VERSION="v2.21.0"
66

77
RUN apt update -y \
88
&& apt upgrade -y \

docs/_docs/docker/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ The following are representative environment variables.
2121
| --- | --- |
2222
| `JAVA_VERSION` | `jdk-17.0.7+7` |
2323
| `SBT_VERSION` | `1.9.0` |
24-
| `QUALTET_VERSION` | `v2.20.0` |
24+
| `QUALTET_VERSION` | `v2.21.0` |
2525

2626
If you want to see more details, please execute `docker inspect <image_id>`.

docs/_docs/releases/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ title: Releases
55

66
| Version | Code name | Released at |
77
| --- | --- | --- |
8+
| [v2.21.0](https://github.com/yoshinorin/qualtet/releases/tag/v2.21.0) | Scarlet Velvet | |
89
| [v2.20.0](https://github.com/yoshinorin/qualtet/releases/tag/v2.20.0) | Scarlet Ugui | 2025-10-20T14:51:03Z |
910
| [v2.19.0](https://github.com/yoshinorin/qualtet/releases/tag/v2.19.0) | Scarlet Tshering | 2025-08-09T15:04:58Z |
1011
| [v2.18.0](https://github.com/yoshinorin/qualtet/releases/tag/v2.18.0) | Scarlet Soui | 2025-07-20T14:32:04Z |

docs/rest-api/components/schemas/response/applicationInfo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ properties:
55
example: "qualtet"
66
version:
77
type: string
8-
example: "v2.20.0"
8+
example: "v2.21.0"
99
repository:
1010
type: string
1111
example: "https://github.com/yoshinorin/qualtet"

docs/rest-api/openapi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.1.0
22
info:
33
title: Qualtet API
4-
version: v2.20.0
4+
version: v2.21.0
55
description: |
66
# Description
77
This API documentation regarding OpenAPI specification. Generated by [ReDoc](https://github.com/Rebilly/ReDoc).

docs/rest-api/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/rest-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "api",
3-
"version": "v2.20.0",
3+
"version": "v2.21.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

src/test/scala/net/yoshinorin/qualtet/infrastructure/telemetry/OtelSpec.scala

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ class OtelSpec extends AnyWordSpec {
3131
val properties = Otel.configureSystemProperties(config)
3232

3333
assert(properties("otel.java.global-autoconfigure.enabled") === "true")
34-
assert(properties("otel.service.version") === "v2.20.0") // BuildInfo.version
34+
assert(properties("otel.service.version") === "v2.21.0") // BuildInfo.version
3535
assert(properties("otel.service.name") === "test-service")
3636
assert(properties("otel.service.namespace") === "test-namespace")
3737
assert(properties("otel.exporter.otlp.endpoint") === "http://localhost:4317")
3838
assert(properties("otel.propagators") === "tracecontext,baggage")
39-
assert(properties("otel.resource.attributes") === "service.name=test-service,service.version=v2.20.0,service.namespace=test-namespace")
39+
assert(properties("otel.resource.attributes") === "service.name=test-service,service.version=v2.21.0,service.namespace=test-namespace")
4040
assert(properties("otel.exporter.otlp.protocol") === "http/protobuf")
4141
}
4242

@@ -50,9 +50,9 @@ class OtelSpec extends AnyWordSpec {
5050
val properties = Otel.configureSystemProperties(config)
5151

5252
assert(properties("otel.java.global-autoconfigure.enabled") === "true")
53-
assert(properties("otel.service.version") === "v2.20.0")
53+
assert(properties("otel.service.version") === "v2.21.0")
5454
assert(properties("otel.propagators") === "tracecontext") // default
55-
assert(properties("otel.resource.attributes") === "service.name=qualtet,service.version=v2.20.0")
55+
assert(properties("otel.resource.attributes") === "service.name=qualtet,service.version=v2.21.0")
5656
assert(properties("otel.exporter.otlp.protocol") === "http/protobuf")
5757
assert(!properties.contains("otel.service.name"))
5858
assert(!properties.contains("otel.service.namespace"))
@@ -69,7 +69,7 @@ class OtelSpec extends AnyWordSpec {
6969
val properties = Otel.configureSystemProperties(config)
7070

7171
assert(properties("otel.java.global-autoconfigure.enabled") === "true")
72-
assert(properties("otel.service.version") === "v2.20.0")
72+
assert(properties("otel.service.version") === "v2.21.0")
7373
assert(properties("otel.service.name") === "mixed-service")
7474
assert(properties("otel.propagators") === "b3")
7575
assert(properties("otel.exporter.otlp.protocol") === "http/protobuf")
@@ -147,7 +147,7 @@ class OtelSpec extends AnyWordSpec {
147147
"return all resource attributes when config has all values" in {
148148
val resourceAttributes = Otel.buildResourceAttributes(baseConfig)
149149

150-
assert(resourceAttributes === "service.name=test-service,service.version=v2.20.0,service.namespace=test-namespace")
150+
assert(resourceAttributes === "service.name=test-service,service.version=v2.21.0,service.namespace=test-namespace")
151151
}
152152

153153
"return minimal resource attributes when config has no optional values" in {
@@ -156,7 +156,7 @@ class OtelSpec extends AnyWordSpec {
156156
)
157157
val resourceAttributes = Otel.buildResourceAttributes(config)
158158

159-
assert(resourceAttributes === "service.name=qualtet,service.version=v2.20.0")
159+
assert(resourceAttributes === "service.name=qualtet,service.version=v2.21.0")
160160
}
161161

162162
"return resource attributes with only service name when namespace is None" in {
@@ -165,7 +165,7 @@ class OtelSpec extends AnyWordSpec {
165165
)
166166
val resourceAttributes = Otel.buildResourceAttributes(config)
167167

168-
assert(resourceAttributes === "service.name=test-service,service.version=v2.20.0")
168+
assert(resourceAttributes === "service.name=test-service,service.version=v2.21.0")
169169
}
170170

171171
"return resource attributes with custom service name" in {
@@ -174,7 +174,7 @@ class OtelSpec extends AnyWordSpec {
174174
)
175175
val resourceAttributes = Otel.buildResourceAttributes(config)
176176

177-
assert(resourceAttributes === "service.name=custom-service,service.version=v2.20.0,service.namespace=test-namespace")
177+
assert(resourceAttributes === "service.name=custom-service,service.version=v2.21.0,service.namespace=test-namespace")
178178
}
179179
}
180180

0 commit comments

Comments
 (0)