Prepare version 4.x for current slf4j/logback/micronaut versions
This commit is contained in:
parent
cbe06a25f2
commit
41e1eea77c
3 changed files with 17 additions and 6 deletions
11
.github/dependabot.yml
vendored
11
.github/dependabot.yml
vendored
|
@ -10,6 +10,17 @@ updates:
|
||||||
# yamllint disable-line rule:quoted-strings
|
# yamllint disable-line rule:quoted-strings
|
||||||
time: "09:00"
|
time: "09:00"
|
||||||
timezone: Europe/Berlin
|
timezone: Europe/Berlin
|
||||||
|
- package-ecosystem: maven
|
||||||
|
directory: /
|
||||||
|
open-pull-requests-limit: 20
|
||||||
|
schedule:
|
||||||
|
interval: monthly
|
||||||
|
day: monday
|
||||||
|
# github parses time without quotes to int
|
||||||
|
# yamllint disable-line rule:quoted-strings
|
||||||
|
time: "09:00"
|
||||||
|
timezone: Europe/Berlin
|
||||||
|
target-branch: 3.x
|
||||||
ignore:
|
ignore:
|
||||||
# logback 1.3 and 1.4 are compatible with slf4j 2.x only and not supported right now
|
# logback 1.3 and 1.4 are compatible with slf4j 2.x only and not supported right now
|
||||||
- dependency-name: ch.qos.logback:logback-classic
|
- dependency-name: ch.qos.logback:logback-classic
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
[](http://www.apache.org/licenses/)
|
[](http://www.apache.org/licenses/)
|
||||||
[](https://central.sonatype.com/namespace/io.kokuwa.micronaut)
|
[](https://central.sonatype.com/namespace/io.kokuwa.micronaut)
|
||||||
[](https://github.com/kokuwaio/micronaut-logging/actions/workflows/ci.yaml?query=branch%3Amain)
|
[](https://github.com/kokuwaio/micronaut-logging/actions/workflows/ci.yaml?query=branch%3A3.x)
|
||||||
[](https://github.com/kokuwaio/micronaut-logging/actions/workflows/ci.yaml?query=branch%3A4.x)
|
[](https://github.com/kokuwaio/micronaut-logging/actions/workflows/ci.yaml?query=branch%3Amain)
|
||||||
|
|
||||||
Include in your `pom.xml`:
|
Include in your `pom.xml`:
|
||||||
|
|
||||||
|
@ -41,8 +41,8 @@ Or use in `dependencyManagement` in `pom.xml`:
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
* Version [3.x](https://github.com/kokuwaio/micronaut-logging/tree/main) is based on SLF4J 1.7 & Logback 1.2
|
* Version [3.x](https://github.com/kokuwaio/micronaut-logging/tree/3.x) is based on SLF4J 1.7 & Logback 1.2 & Micronaut 3.x
|
||||||
* Version [4.x](https://github.com/kokuwaio/micronaut-logging/tree/4.x) is based on SLF4J 2.0 & Logback 1.4 (WIP)
|
* Version [4.x](https://github.com/kokuwaio/micronaut-logging/tree/main) is based on SLF4J 2.0 & Logback 1.4 & Micronaut 4.x
|
||||||
* [set log level based on MDC values](docs/features/logback_mdc_level.md)
|
* [set log level based on MDC values](docs/features/logback_mdc_level.md)
|
||||||
* [add default xml](docs/features/logback_default.md)
|
* [add default xml](docs/features/logback_default.md)
|
||||||
* [preconfigured appender for different environments](docs/features/logback_appender.md)
|
* [preconfigured appender for different environments](docs/features/logback_appender.md)
|
||||||
|
|
4
pom.xml
4
pom.xml
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
<groupId>io.kokuwa.micronaut</groupId>
|
<groupId>io.kokuwa.micronaut</groupId>
|
||||||
<artifactId>micronaut-logging</artifactId>
|
<artifactId>micronaut-logging</artifactId>
|
||||||
<version>3.1.1-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>Logging Support for Micronaut</name>
|
<name>Logging Support for Micronaut</name>
|
||||||
<description>Enhanced logging using MDC or request header.</description>
|
<description>Enhanced logging using MDC or request header.</description>
|
||||||
|
@ -102,7 +102,7 @@
|
||||||
|
|
||||||
<version.ch.qos.logback>1.2.12</version.ch.qos.logback>
|
<version.ch.qos.logback>1.2.12</version.ch.qos.logback>
|
||||||
<version.ch.qos.logback.contrib>0.1.5</version.ch.qos.logback.contrib>
|
<version.ch.qos.logback.contrib>0.1.5</version.ch.qos.logback.contrib>
|
||||||
<version.io.kokuwa.micronaut.logging>3.1.1-SNAPSHOT</version.io.kokuwa.micronaut.logging>
|
<version.io.kokuwa.micronaut.logging>4.0.0-SNAPSHOT</version.io.kokuwa.micronaut.logging>
|
||||||
<version.io.micronaut>3.9.1</version.io.micronaut>
|
<version.io.micronaut>3.9.1</version.io.micronaut>
|
||||||
<version.io.micronaut.security> 3.11.0</version.io.micronaut.security>
|
<version.io.micronaut.security> 3.11.0</version.io.micronaut.security>
|
||||||
<version.org.slf4j.api>1.7.36</version.org.slf4j.api>
|
<version.org.slf4j.api>1.7.36</version.org.slf4j.api>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue