-
Notifications
You must be signed in to change notification settings - Fork 51
Comparing changes
Open a pull request
base repository: heetch/confita
base: v0.6.0
head repository: heetch/confita
compare: master
Commits on Sep 22, 2018
-
b0000000000000t committed
Sep 22, 2018 Configuration menu - View commit details
-
Copy full SHA for 2666580 - Browse repository at this point
Copy the full SHA 2666580View commit details
Commits on Aug 21, 2019
-
track fields that have been found in resolve
so value from the first backend wins
Configuration menu - View commit details
-
Copy full SHA for c3f1cb1 - Browse repository at this point
Copy the full SHA c3f1cb1View commit details
Commits on Aug 22, 2019
-
Merge pull request #65 from steamrolla/master
set value only from first successful backend
Yasss authoredAug 22, 2019 Configuration menu - View commit details
-
Copy full SHA for 20131ab - Browse repository at this point
Copy the full SHA 20131abView commit details -
Add optional parameter for file backend
Yasss committedAug 22, 2019 Configuration menu - View commit details
-
Copy full SHA for 51fcea2 - Browse repository at this point
Copy the full SHA 51fcea2View commit details -
Add logging when optional file is not found
Yasss committedAug 22, 2019 Configuration menu - View commit details
-
Copy full SHA for a3c6fcb - Browse repository at this point
Copy the full SHA a3c6fcbView commit details -
Yasss committed
Aug 22, 2019 Configuration menu - View commit details
-
Copy full SHA for 8079db3 - Browse repository at this point
Copy the full SHA 8079db3View commit details -
Yasss committed
Aug 22, 2019 Configuration menu - View commit details
-
Copy full SHA for c254518 - Browse repository at this point
Copy the full SHA c254518View commit details
Commits on Aug 27, 2019
-
Yasss committed
Aug 27, 2019 Configuration menu - View commit details
-
Copy full SHA for 5fa198b - Browse repository at this point
Copy the full SHA 5fa198bView commit details -
Add a type that implements error interface instead of using an alias
Yasss committedAug 27, 2019 Configuration menu - View commit details
-
Copy full SHA for fc3f62e - Browse repository at this point
Copy the full SHA fc3f62eView commit details -
Remove boolean argument and add method to create optional file
Yasss committedAug 27, 2019 Configuration menu - View commit details
-
Copy full SHA for 36e84cd - Browse repository at this point
Copy the full SHA 36e84cdView commit details -
Yasss committed
Aug 27, 2019 Configuration menu - View commit details
-
Copy full SHA for a36e153 - Browse repository at this point
Copy the full SHA a36e153View commit details -
Yasss committed
Aug 27, 2019 Configuration menu - View commit details
-
Copy full SHA for 93b83c5 - Browse repository at this point
Copy the full SHA 93b83c5View commit details -
Merge pull request #59 from heetch/add-optional-parameter
Add optional parameter for file backend
Yasss authoredAug 27, 2019 Configuration menu - View commit details
-
Copy full SHA for 31dcf3b - Browse repository at this point
Copy the full SHA 31dcf3bView commit details
Commits on Aug 31, 2019
-
enable a short option for flags backend
using flag.Var to enable parsing the flags from long or short flag
Configuration menu - View commit details
-
Copy full SHA for 7bebbcd - Browse repository at this point
Copy the full SHA 7bebbcdView commit details
Commits on Sep 2, 2019
-
Merge pull request #67 from steamrolla/master
enable a short option for flags
Geoffrey J. Teale authoredSep 2, 2019 Configuration menu - View commit details
-
Copy full SHA for 1fd65b7 - Browse repository at this point
Copy the full SHA 1fd65b7View commit details
Commits on Sep 7, 2019
-
Configuration menu - View commit details
-
Copy full SHA for ada95fc - Browse repository at this point
Copy the full SHA ada95fcView commit details
Commits on Sep 18, 2019
-
The module boundary has changed, and this can cause ambiguous module imports when a requirement wants to use consul/api v1.1.0, which is ambiguous with respect to consul v1.0.7 which also has an api package.
Configuration menu - View commit details
-
Copy full SHA for 42016a6 - Browse repository at this point
Copy the full SHA 42016a6View commit details -
Merge pull request #72 from heetch/rog-002-consul-v1.1.0
use consul v1.1.0
Configuration menu - View commit details
-
Copy full SHA for 6aaa9fb - Browse repository at this point
Copy the full SHA 6aaa9fbView commit details
Commits on Sep 19, 2019
-
Merge pull request #69 from steamrolla/floatuintshort
support for float and uint short flags
Configuration menu - View commit details
-
Copy full SHA for a955922 - Browse repository at this point
Copy the full SHA a955922View commit details -
set usage message from description tag (#70)
set usage message in flags backend from description tag
Configuration menu - View commit details
-
Copy full SHA for 63a14d4 - Browse repository at this point
Copy the full SHA 63a14d4View commit details -
Merge pull request #45 from eliastor/feature/toml
some more toml cases in tests
Geoffrey J. Teale authoredSep 19, 2019 Configuration menu - View commit details
-
Copy full SHA for fd18d35 - Browse repository at this point
Copy the full SHA fd18d35View commit details
Commits on Sep 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for ab84900 - Browse repository at this point
Copy the full SHA ab84900View commit details
Commits on Sep 23, 2019
-
Merge pull request #75 from steamrolla/travis-go1213
only run go versions 1.12, 1.13 and tip. allows us to remove dep
Geoffrey J. Teale authoredSep 23, 2019 Configuration menu - View commit details
-
Copy full SHA for 1982253 - Browse repository at this point
Copy the full SHA 1982253View commit details
Commits on Sep 26, 2019
-
This implements a backend that uses the Amazon AWS SSM parameter store for keys.
Configuration menu - View commit details
-
Copy full SHA for 1833a32 - Browse repository at this point
Copy the full SHA 1833a32View commit details
Commits on Oct 16, 2019
-
backend/ssm: minor cleanups (#76)
Avoid the opaque-looking generated mock code and apply some other minor cleanups.
Configuration menu - View commit details
-
Copy full SHA for 86d03df - Browse repository at this point
Copy the full SHA 86d03dfView commit details
Commits on Nov 20, 2019
-
backend/env: treat empty environment variables as not found (#78)
It's very unusual to distinguish between an environment variable that's unset and one that's empty. When a value is required, looking for a non-empty environment variable feels more correct. As a recent example, the kafka-go config contained a "required" entry for `KAFKA_ADDRS` which was satisfied by an empty environment variable.
Configuration menu - View commit details
-
Copy full SHA for ec7d80e - Browse repository at this point
Copy the full SHA ec7d80eView commit details
Commits on Nov 28, 2019
-
backend/flags: avoiding setting values that aren't specified
In #67, the `isFlagSet` logic was changed so that it always returned true, so even unmentioned flags would override previously set values. This PR fixes that issue (fixes #79) and also changes the flag tests to be somewhat more flexible and test this specific issue. I haven't made any wider fixes because the concept of using command-line flags as a backend is fundamentally broken in a way that cannot be fixed (see #63), so will probably be removed in a future major version release of confita.
Configuration menu - View commit details
-
Copy full SHA for 0782bac - Browse repository at this point
Copy the full SHA 0782bacView commit details
Commits on May 6, 2020
-
update vault module version (#83)
By requiring the old version of vault, we were breaking dependency resolution because that version has an api package which conflicts with the later api module that has the same import path. Also fix the error message checking so that it copes with the latest Go tip.
Configuration menu - View commit details
-
Copy full SHA for c6edf60 - Browse repository at this point
Copy the full SHA c6edf60View commit details
Commits on Jun 23, 2020
-
Merge pull request #80 from heetch/rog-005-fix-flags
backend/flags: avoiding setting values that aren't specified
Configuration menu - View commit details
-
Copy full SHA for 3cdb63e - Browse repository at this point
Copy the full SHA 3cdb63eView commit details
Commits on Mar 24, 2021
-
Add support for Vault KV secrets engine v2 (#86)
* Fix vault couldn't get a value * Add support for Vault KV secrets engine v2 * Allow simpler paths like the Vault CLI does * Fix Vault tests fail when run twice Due to data versioning the deferred deletion doesn't completely remove the secret - only the data. * Improve path change Co-authored-by: Jean-Philippe Moal <skateinmars@users.noreply.github.com> Co-authored-by: mopemope <yutaka.matsubara@gmail.com> Co-authored-by: Jean-Philippe Moal <skateinmars@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a80b748 - Browse repository at this point
Copy the full SHA a80b748View commit details
Commits on Jun 22, 2021
-
Configuration menu - View commit details
-
Copy full SHA for ecea6a0 - Browse repository at this point
Copy the full SHA ecea6a0View commit details
Commits on Jun 23, 2021
-
Merge pull request #89 from heetch/chore/add-gh-ci
Add CI tests using Github actions
Configuration menu - View commit details
-
Copy full SHA for f4b02c5 - Browse repository at this point
Copy the full SHA f4b02c5View commit details
There are no files selected for viewing