Releases: microconfig/microconfig
Releases · microconfig/microconfig
4.9.3
4.9.2
added .@
syntax to match yaml spec
4.9.1
v4.9.1 fix windows native build
4.9.0
Added support for multi-line yaml values.
4.7.0
env overrides update.
added abstract environments support.
4.6.0
environment overrides inside files with @env:
syntax
multi-line var support with @var
syntax
please use 4.7.0 instead of this release.
4.5.0
added profiles for envs.
#45
https://microconfig.io/documentation.html#/?id=environment-profiles
4.4.3
renamed base64(byte[]) to bytesBase64(byte[]) cause Spring EL doesn't support method overloading
4.4.2
renamed base64(byte[]) to bytesBase64(byte[]) cause Spring EL doesn't support method overloading
4.4.1
added custom functions:
public static byte[] readBytes(String path) //throws exception if the file does not exist
public static byte[] readBytesOrEmpty(String path) //returns empty byte[] if the file does not exist
public static String readString(String path) //throws exception if the file does not exist
public static String readStringOrEmpty(String path) //returns empty string if the file does not exist
public static String base64(byte[] bytes)
you can call them using el #{#readString('/file.txt')}