Prepare version 4.x for current slf4j/logback/micronaut versions (#147)

This commit is contained in:
Stephan Schnabel 2023-07-02 15:56:57 +02:00 committed by Stephan Schnabel
parent 52a0478cf1
commit 90a2d223b2
3 changed files with 7 additions and 6 deletions

View file

@ -2,7 +2,7 @@ name: Build
on: on:
push: push:
branches: [main] branches: [main, "*.x"]
jobs: jobs:

View file

@ -2,7 +2,8 @@
[![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/kokuwaio/micronaut-logging.svg?label=License)](http://www.apache.org/licenses/) [![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/kokuwaio/micronaut-logging.svg?label=License)](http://www.apache.org/licenses/)
[![Maven Central](https://img.shields.io/maven-central/v/io.kokuwa.micronaut/micronaut-logging.svg?label=Maven%20Central)](https://central.sonatype.com/namespace/io.kokuwa.micronaut) [![Maven Central](https://img.shields.io/maven-central/v/io.kokuwa.micronaut/micronaut-logging.svg?label=Maven%20Central)](https://central.sonatype.com/namespace/io.kokuwa.micronaut)
[![Build](https://img.shields.io/github/actions/workflow/status/kokuwaio/micronaut-logging/build.yaml?label=Build)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/build.yaml) [![Build](https://img.shields.io/github/actions/workflow/status/kokuwaio/micronaut-logging/build.yaml?branch=3.x&label=3.x)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/build.yaml?query=branch%3A3.x)
[![Build](https://img.shields.io/github/actions/workflow/status/kokuwaio/micronaut-logging/build.yaml?branch=main&label=4.x)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/build.yaml?query=branch%3Amain)
Include in your `pom.xml`: Include in your `pom.xml`:
@ -17,8 +18,8 @@ Include in your `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)

View file

@ -5,13 +5,13 @@
<parent> <parent>
<groupId>io.kokuwa.maven</groupId> <groupId>io.kokuwa.maven</groupId>
<artifactId>maven-parent</artifactId> <artifactId>maven-parent</artifactId>
<version>0.6.9</version> <version>0.6.10</version>
<relativePath /> <relativePath />
</parent> </parent>
<groupId>io.kokuwa.micronaut</groupId> <groupId>io.kokuwa.micronaut</groupId>
<artifactId>micronaut-logging</artifactId> <artifactId>micronaut-logging</artifactId>
<version>3.3.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>