v0.2.0
What's Changed
Logging DSL
This DSL allows you to configure logging levels. Setting levels with logging.level
configuration properties will override the DSL setting.
Usage
class TestKotlinApplication : SpringFunkApplication {
override fun dsl(): SpringDslContainer.() -> Unit = {
logging {
root(LogLevel.INFO)
level<MyClass>(LogLevel.OFF)
level("com.example.package", LogLevel.DEBUG)
}
}
}
All Changes
- improve README.md (fixes #56) by @wakingrufus in #59
- skip jacoco checks on PRs coming from forks by @wakingrufus in #61
- exclude AWS SDK apache-client by @sullis in #60
- testcontainers-java 1.20.0 by @sullis in #62
- add a Logging DSL by @wakingrufus in #65
- change release name convention to not use "Release" prefix by @wakingrufus in #66
New Contributors
Full Changelog: v0.1.0...v0.2.0