Skip to content

Releases: microconfig/microconfig

4.9.3

05 Jan 10:25
Compare
Choose a tag to compare

fix incorrect yaml list parsing
fix incorrect multiline key parsing

4.9.2

10 Feb 15:06
Compare
Choose a tag to compare

added .@ syntax to match yaml spec

4.9.1

03 Jan 16:15
Compare
Choose a tag to compare
v4.9.1

fix windows native build

4.9.0

04 Jul 20:04
05d9382
Compare
Choose a tag to compare

Added support for multi-line yaml values.

4.7.0

15 Jun 20:32
79946e5
Compare
Choose a tag to compare

env overrides update.
added abstract environments support.

4.6.0

12 Jun 18:18
Compare
Choose a tag to compare

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

18 Aug 18:25
Compare
Choose a tag to compare

4.4.3

16 Jul 15:32
Compare
Choose a tag to compare

renamed base64(byte[]) to bytesBase64(byte[]) cause Spring EL doesn't support method overloading

4.4.2

16 Jul 14:30
Compare
Choose a tag to compare

renamed base64(byte[]) to bytesBase64(byte[]) cause Spring EL doesn't support method overloading

4.4.1

16 Jul 12:25
f5afb7e
Compare
Choose a tag to compare

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')}