This is an automated email from the ASF dual-hosted git repository.
He-Pin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-persistence-r2dbc.git
The following commit(s) were added to refs/heads/main by this push:
new 1950892 chore: normalize UTF-8 XML encoding declarations (#441)
1950892 is described below
commit 19508924c3971d9fd7d1caea38db828536ba3d1b
Author: He-Pin(kerr) <[email protected]>
AuthorDate: Mon Jul 6 22:03:53 2026 +0800
chore: normalize UTF-8 XML encoding declarations (#441)
Motivation:\nAvoid lowercase utf-8 XML declarations in the codebase-wide
charset cleanup.\n\nModification:\nNormalize XML encoding declarations to
UTF-8.\n\nResult:\nTracked XML resources use the canonical UTF-8 encoding
spelling.
---
core/src/test/resources/logback-test.xml | 2 +-
migration/src/test/resources/logback-main.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/src/test/resources/logback-test.xml
b/core/src/test/resources/logback-test.xml
index 2806f05..64787f0 100644
--- a/core/src/test/resources/logback-test.xml
+++ b/core/src/test/resources/logback-test.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
diff --git a/migration/src/test/resources/logback-main.xml
b/migration/src/test/resources/logback-main.xml
index 7042fcd..f470347 100644
--- a/migration/src/test/resources/logback-main.xml
+++ b/migration/src/test/resources/logback-main.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]