Skip to content

Latest commit

 

History

History
76 lines (52 loc) · 2.2 KB

CHANGELOG.md

File metadata and controls

76 lines (52 loc) · 2.2 KB

Changelog

Unrelease

after 0.1.2 CHANGELOG

0.1.1 - 2024.9.8

0.1.0 - 2024.9.8

  • added: add ConfigRegistry trait. (#31)
  • added: add Config extractor for spring-web,spring-job,spring-stream. (#31)
  • breaking: refactor app configuration management: Configuration and plugins are independent of each other. (#31)

Migrating from 0.0 to 0.1

-#[derive(Configurable)]
-#[config_prefix = "my-plugin"]
struct MyPlugin;
 #[derive(Debug, Configurable, Deserialize)]
+#[config_prefix = "my-plugin"]
 struct Config {
     a: u32,
     b: bool,
 }

0.0.9 - 2024.9.4

  • added: spring-postgres plugin
  • added: spring-boot testcase
  • changed: fix spring-web default binding ip
  • changed: the added component must implement the Clone trait
  • removed: spring-actuator

0.0.8 - 2024.8.25

0.0.7 - 2024.8.21

0.0.0 - 2024.7.15

Initial implementation of spring-boot plugin system