owner v1.0.12 Release Notes

Release Date: 2020-06-07 // almost 4 years ago
  • ๐Ÿš€ RELEASE NOTES

    ๐Ÿ›  OWNER v1.0.12 contains following enhancements and bug fixes.

    ๐Ÿ› Bugs fixes

    • ๐Ÿ›  Fixed #268: Calling a value is not thread safe (return another value)
    • ๐Ÿ›  Fixed #266: PropertyEditor - Concurrency Issues

    ๐Ÿš€ Downloadable artifacts are published on GitHub and
    on Maven Central Repository.


Previous changes from v1.0.10

  • ๐Ÿš€ After long time (more than 2 years now), and many people asking for a new release, here we are.
    And here my apologies for the delay.

    ๐Ÿ‘ As you may know, I had serious health problems that kept me away from coding. Now my health is getting better, but I
    feel much slower in coding and using awesome tools like IntelliJ IDEA; in the meantime, my open source license has
    expired, so I hope the guys from JetBrains will be so nice to renew it :).

    ๐Ÿš€ Also, I always found the maven release process being cumbersome so that also kept me away from the effort.
    Now I took some time to simply it a little bit, and I kept some note for the future.

    ๐Ÿš€ In this release, a huge amount of work has been conducted by contributors, and I mostly did housekeeping with
    ๐Ÿ“š refactoring, code review, enforcing quality standards, asking for documentation and tests, and integrating the great
    ideas coming from the users' community.

    ๐Ÿš€ I took back the project recently to upgrade it to have Java 9 support, and simplify release deployment, and only now
    ๐Ÿš€ that I am writing this release note, I realize how many things have been added and was waiting to be released.

    ๐Ÿ“š Documentation is very important; I hadn't had the chance to keep all in sync, so many things here need to be
    ๐Ÿ†“ documented. If you think you can help, feel free to help: this website is a sub-project
    owner-site, and uses Markdown language, which is very
    handy and quick to learn; the structure is quite easy to follow.
    ๐Ÿ’Ž Jekyll is used as site generator, which is written in Ruby and can be tricky for a Java dev
    ๐Ÿ†“ like me, but it works awesomely with github. So feel free to help there too.
    ๐Ÿ— There is also an ant script which allows
    you to launch Jekyll and live-preview the end result of your edits.

    I don't feel very comfortable in making promises, but I'd really like to give back life to this project and, for the
    ๐Ÿš€ future, avoid such a long wait for a release.

    Please notice that at the moment I am not professionally working, I closed my consultancy company years back, and
    in this moment I am writing from a nice Coworking Space "ImpactHub" here in Torino.
    So, let me quickly say that donations are very welcome.
    Or if you want, you can hire me for some custom development on OWNER, training, or to help implementing your
    projects.
    This would definitely help keeping OWNER alive.

    Credits to ALL the contributors of OWNER, and to the end-users of this neat library.
    ๐Ÿš€ To you all it goes my gratitude for this release.

    Thank you!

    --Luigi.


    ๐Ÿš€ RELEASE NOTES

    ๐Ÿ›  OWNER v1.0.10 contains following enhancements and bug fixes.

    โœจ Enhancements

    • โž• Added Java 9 support, dropped Java 6 support. All code and tests are running and built with Java 9, so you can use
      โœ… OWNER with the latest Java version. It was not trivial. If you want to use some specific feature like default
      methods in interfaces introduced in Java8, you still need to add owner-java8 dependency. I know... I didn't want to
      create a new sub-module for Java 9 and every newer versions, if it's not necessary.
    • โšก๏ธ Updated all dependencies (testing, and optional) and Maven plugins, in order to have it working with Java 9.
    • โž• Added list() method to ConfigCache. ConfigCache is a great way to centralise configuration for various
      parts of an application. This commit adds a list() method to the ConfigCache class, which lists the keys for all
      ๐Ÿ”ง configurations present in the cache. This allows the entire application configuration to be inspected (e.g. for
      debugging) without the need for storing cache keys elsewhere. Thanks
      ๐Ÿ“š @kevin-canadian, who also was so nice to update the documentation on the
      website.
    • โž• Added @EncryptedValue and @DecryptorClass annotations to allow hiding passwords stored in configuration
      ๐Ÿ‘€ properties. See #49, thanks @rrialq
      ๐Ÿ“š for the implementation and the awesome documentation.
    • โž• Added a Java 8 duration converter class: DurationConverter.class in owner-java8-extras.jar .
      Thanks @StFS.
    • โž• Added system properties and enviroment variable as sources: example @Sources({"system:properties", "system:env"}).
      ๐Ÿ‘€ See #110. Thanks @gintau for the
      implementation and @kevin-canadian for the idea.
    • โž• Added ByteSizeConverter and DurationConverter classes in owner-java8-extras jar, see
      #155. Thanks @StFS, also for providing
      ๐Ÿ“š the necessary documentation and unit tests.
    • โž• Added the ability to register default converters for types and classes defined by users.
      ๐Ÿ‘€ See #184.
      Thanks @StFS.
    • โž• Added inheritance support for @Sources, @LoadPolicy and @HotReload.
      ๐Ÿ”€ Sources defined for all extended interfaces will be merged.
      LoadPolicy and HotReload can be inherited and override by the extended interface.
      Thanks chengmingwang.

    ๐Ÿ› Bugs fixes

    • ๐Ÿ‘ Replaced fixBackslashForRegex with better implementation. Thanks @kiefinger.
    • ๐Ÿ‘ป Have ConfigFactory throw an exception on imported Maps having either null keys or null values.
      ๐Ÿ‘€ See #185, #184.
      Thanks @StFS.
    • โšก๏ธ Accept file URI containing spaces. Updated the uri processing to allow loading files that contain spaces in
      their paths.
      ๐Ÿ‘€ See #134. Thanks @icirellik.
    • ๐Ÿ‘€ Maps with null values cause an unclear exception. See #184.
      Thanks @StFS.
    • ๐Ÿ— Set tar long file mode to posix in maven assembly plugin to avoid build errors.
      Thanks gdenning.

    Site Enhancements

    • โž• Added Crypto support documentation page.
    • โž• Added ByteSize Converter converter documentation
      section.
    • ๐Ÿ“š Chinese documentation has been contributed by @cyfonly and is available
      โšก๏ธ here. Sorry, I cannot check that everything is correct or update that! :-)
      ๐Ÿ‘€ See #172.
    • โž• Added security/stability badges by Meterian.
      Thanks @fdiotalevi, @bbossola

    ๐Ÿš€ Downloadable artifacts are published on GitHub and
    on Maven Central Repository.