Skip to content

Releases: ory/x

v0.0.144

21 Aug 14:43
6dcd69d
Compare
Choose a tag to compare
fix(tracing): ignore health endpoints (#189)

v0.0.143

13 Aug 12:47
77a1151
Compare
Choose a tag to compare
refactor: improve decoderx wording for parse errors (#187)

v0.0.142

10 Aug 11:01
e97db59
Compare
Choose a tag to compare
feat: add x-total-count to pagination headers (#186)

See https://github.com/ory/hydra/issues/1666

v0.0.141

06 Aug 07:57
1da1886
Compare
Choose a tag to compare
fix(clidoc): improve link generator (#184)

v0.0.140

05 Aug 21:20
6136a89
Compare
Choose a tag to compare
feat: add clidoc helpers (#183)

v0.0.139

04 Aug 11:47
59ba571
Compare
Choose a tag to compare
fix(logrusx): prettify on json_pretty only (#182)

v0.0.138

23 Jul 13:35
5d5b073
Compare
Choose a tag to compare
feat: add debug config dumping to viperx (#175)

v0.0.137

03 Jul 11:10
51246f8
Compare
Choose a tag to compare
fix: removing whitespaces in config file path (#173)

This fixes simply trims whitespaces from the configuration file path if one has been specified -c // --config flag. 
This fixes a problem if you try to run e.g. Kratos and specify a custom configuration will with -c // --config flag without specifying each part of the commandline call as a seperate string literal: 

`kratos serve "-c ./myconfig.yml"`

fails with the following error message, although the file exists and the process has sufficient permissions to read the file:

`Unable to open config file. Make sure it exists and the process has sufficient permissions to read it  audience=application error=map[message:open  ./myconfig.yml: no such file or directory] path= ./contrib/quickstart/kratos/email-password/.kratos.yml service_name=kratos service_version=`

This is caused by the handling of flags as defined by https://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html, which results in a whitespace in the beginning of the config file path. 

As the error message is misleading and it is easy to overlook the whitespace in the error message, the fix simply removes whitespaces from the file path before it gets passed to viperx.

v0.0.136

01 Jul 20:12
Compare
Choose a tag to compare
fix(reqlog): resolve broken test

v0.0.135

01 Jul 13:56
c7877d8
Compare
Choose a tag to compare
feat: add helpers for viper unstructured config (#170)