Releases: wakingrufus/spring-funk
Releases · wakingrufus/spring-funk
v0.3.0
What's Changed
- support routers which inject beans by @wakingrufus in #67
Full Changelog: v0.2.0...v0.3.0
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
Release v0.1.0
What's Changed
- add maven badge by @wakingrufus in #54
- update maven badge by @wakingrufus in #55
- add apache 2.0 LICENSE.txt by @wakingrufus in #58
Full Changelog: v0.0.12...v0.1.0
Release v0.0.12
What's Changed
- wait longer and retry more for maven central publish by @wakingrufus in #53
Full Changelog: v0.0.11...v0.0.12