fix(deps): update module github.com/caarlos0/env/v6 to v11 #23
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v6.3.0->v11.3.1Release Notes
caarlos0/env (github.com/caarlos0/env/v6)
v11.3.1Compare Source
Changelog
Bug fixes
f329e88: fix: Options.Environment: Do not merge with default env (#353) (@oxzi)9bf044a: fix: retract 11.3.0 (@caarlos0)Other work
4ebfdad: ci: fix gitignore (@caarlos0)Released with GoReleaser Pro!
v11.3.0Compare Source
Changelog
New Features
59284e4: feat: implement interface { Unwrap() []error } for AggregateError to be compatibility with std errors.Join go1.20 without any breaking change (#336) (@itsabgr-raika)17fdb91: feat: set custom tag name for envDefault (#324) (@dnovikoff)1cb1967: feat: set custom tag name for envPrefix (#332) (@sv-kozlov)0136931: feat: supporttime.Location(#326) (@BorzdeG)4ab8b37: feat: support ignored value "-" for env tag (#338) (@sv-kozlov)Bug fixes
6f3a5c0: fix: better handle envDefault, refactor merge options (#349) (@astak16)3afa723: fix: improve errors (#329) (@caarlos0)0cbf40b: fix: map value with : in it (@caarlos0)e55230b: fix: parsing into ptr fields with value (#340) (@hypnoglow)Documentation updates
84c7739: docs: DefaultValueTagName example (@caarlos0)0847ba1: docs: add installation instructions to README.md (#330) (@eduardolat)76faca5: docs: project state (@caarlos0)Other work
b76caa9: ci: add EditorConfig (#327) (@BorzdeG)1f955b7: ci: update (@caarlos0)f68d1dc: refactor: enable gocritic linter and fix lint issues (#342) (@alexandear)52e7186: refactor: modify the init logic for env tag options to make it more reasonable (#347) (@astak16)Released with GoReleaser Pro!
v11.2.2Compare Source
Changelog
Documentation updates
aa50469: docs: duplicated headline (@caarlos0)Released with GoReleaser Pro!
v11.2.1Compare Source
Changelog
Bug fixes
2683e95: fix: do not init empty arrays (#321) (@caarlos0)Documentation updates
fac6114: docs: cleanup readme (#322) (@caarlos0)5d7eb0c: docs: fix bad example (@caarlos0)19de57d: docs: more examples (@caarlos0)be1c262: docs: more examples (@caarlos0)fb84246: docs: more examples (@caarlos0)1282042: docs: more examples (@caarlos0)3d8627f: docs: typos (@caarlos0)d7efb64: docs: update license year range (@caarlos0)Released with GoReleaser Pro!
v11.2.0Compare Source
Changelog
New Features
68793c0: feat: mapping slice of complex struct (#312) (@Rancbar)Documentation updates
33920af: docs: added a logo (@caarlos0)0de9383: docs: update (@caarlos0)Released with GoReleaser Pro!
v11.1.0Compare Source
Changelog
Bug fixes
432567c: fix: retract v11.0.1, gate init nil pointers (#318) (@caarlos0)Other work
de7a9cc: ci: update goreleaser configs (@caarlos0)Released with GoReleaser Pro!
v11.0.1Compare Source
Changelog
Bug fixes
0f77fef: fix: add logic to handle nil pointer structs (#306) (@NithinGudla)Documentation updates
1e2d9e1: docs: better explain UseFieldNameByDefault (@caarlos0)b436dff: docs: document generics (@caarlos0)Released with GoReleaser Pro!
v11.0.0Compare Source
Changelog
Breaking changes
New Features
8aee119: feat: ParseAs, ParseAsWithOptions, Must (#300) (@caarlos0)Bug fixes
c0ca5e0: fix: UseFieldNameByDefault when uppercased word in name (#297) (@caarlos0)Documentation updates
b400510: docs: add related projects (#290) (@g4s8)5235aff: docs: add used and supported by section to readme (#289) (@caarlos0)506c331: docs: update (@caarlos0)af0d375: docs: update caution banner (@caarlos0)8cddcf2: docs: update readme (@caarlos0)fa32ef4: docs: update readme (@caarlos0)Other work
4723331: feat!: prepare for release (@caarlos0)Released with GoReleaser Pro!
v10.0.0Compare Source
Changelog
Breaking changes
62b4ae1: feat!: ParseWithOptions: add the ability to override default opt.FuncMap keys (#272) (@Daniel538)New Features
e7e49c4: feat: GetFieldParams and GetFieldParamsWithOptions functions (#261) (@saturn4er)92df8c4: feat: adds public ToMap function (#275) (@maxfilov)13ac655: feat: custom key value separator (#284) (@ruslan944)3f90e4a: enhancement: Expand with default values (#285) (@gabrielcipriano)Documentation updates
6723663: docs: add map usage (#282) (@rfyiamcool)Other work
6061c47: release: v10 (@caarlos0)Released with GoReleaser Pro!
v9.0.0Compare Source
Changelog
New Features
7a25c17: feat!: accept expand as an option to the env tag (#263) (@caarlos0)4f6bb22: feat!: v9 (@caarlos0)9124b0a: feat: add support Web Assembly (#265) (@BorzdeG)Bug fixes
0f07b7f: fix: invalid environment variable (#271) (@aymanbagabas)0b4d8a6: fix: skip fields without env key in onSet (#266) (@aymanbagabas)Documentation updates
390412e: docs: clarify custom parser funcs and required fields (@caarlos0)3f7d8cf: docs: fix examples in readme for v8.0.0 (#264) (@Mattias-)Migrating from v8
Replace
envExpand:"true"with,expand, e.g.:Released with GoReleaser Pro!
v8.0.0Compare Source
Changelog
Other work
224d85f: build: fix goreleaser flags (@caarlos0)fac0414: build: test on go stable and oldstable (#259) (@caarlos0)4e0f915: feat!: refactor parse and parse with options (#256) (@caarlos0)Updating from v7
env.Parsewith no options, no change is required.env.Parsewith oneOptions{}, callenv.ParseWithOptionsinstead.env.Parsewith options, and pass more than oneOptions{}, merge them into a single one, and useenv.ParseWithOptionsinstead.env.ParseWithFuncs, useenv.ParseWithOptionsinstead, and put your parsers intoOptions{ FuncMap: <here> }.Released with GoReleaser Pro!
v7.1.0Compare Source
Changelog
New Features
b135bbd: feat: error types (#240) (@akutuev)17f0a63: feat: implement Is on AggregateError (#254) (@caarlos0)266f68b: feat: support map kind env (#244) (@ken8203)c08b0f9: feat: use field name by default (#253) (@caarlos0)Bug fixes
dfd68b2: fix: improve map handling, coverage (@caarlos0)e5472ec: fix: remove untested behavior (@caarlos0)Documentation updates
65ba2db: docs: caveats (@caarlos0)f434e98: docs: document how to handle error (@caarlos0)2d26ce1: docs: fix examples (@caarlos0)91e69e8: docs: maps (@caarlos0)850c2d8: docs: update to v7 (#249) (@alexandear)Released with GoReleaser Pro!
v7.0.0Compare Source
Changelog
Breaking changes
c687f95: feat!: set default if var is set but empty (#248) (@caarlos0)155f0a6: feat!: update to v7 (@caarlos0)Documentation updates
23c6da1: docs: fix badge (@caarlos0)8e8e099: docs: fix typo (#243) (@braindev)877e1bf: docs: improve warning (@caarlos0)Other work
ff86282: build: fix lint workflow (@caarlos0)0b725c8: build: fix workflows (@caarlos0)da848aa: build: remove deprecated lint option (@caarlos0)Released with GoReleaser Pro!
v6.10.1Compare Source
Changelog
Bug fixes
f3ddf1f: fix: non empty struct pointer value (#236) (@akutuev)Released with GoReleaser Pro!
v6.10.0Compare Source
Changelog
New Features
69c7b5a: feat: aggregate validation errors (#233) (@akutuev)Bug fixes
439dbad: fix: RequiredIfNoDef with nested structs (#229) (@HarmlessEvil)Documentation updates
60b5226: docs: broken link (@caarlos0)4c93d81: docs: remove duplicatestring(#232) (@dacapoday)Released with GoReleaser Pro!
v6.9.3Compare Source
Changelog
Bug fixes
a5d7cf5: fix: custom parsers with anon inner structs (#227) (@caarlos0)Released with GoReleaser Pro!
v6.9.2Compare Source
Changelog
Bug fixes
302a103: fix: race condition in ParseWithFuncs (#223) (@caarlos0)Other work
8eb2e72: refactor: remove unneccessary line (#212) (@gozeloglu)Released with GoReleaser Pro!
v6.9.1Compare Source
Changelog
Bug fixes
66696b3: fix: passing prefix on anonymous struct (#205) (@flaneur2020)Released with GoReleaser Pro!
v6.9.0Compare Source
Changelog
New Features
87131ff: feat: 0 dependencies (#204) (@caarlos0)Released with GoReleaser Pro!
v6.8.0Compare Source
Changelog
New Features
f22b819: feat: rename master to main (@caarlos0)2cf397a: feat:prefix envs (#201) (@caarlos0)Bug fixes
d8dc27c: fix: prefixes on pointers (#203) (@caarlos0)Released with GoReleaser Pro!
v6.7.2Compare Source
Changelog
db06a3f: fix: gofumpt (@caarlos0)adc0f63: fix: lint issues (@caarlos0)d255001: refactor: move from io/ioutil to os package (#176) (@Juneezee)Released with GoReleaser Pro!
v6.7.1Compare Source
Changelog
ba5c1adfix: error in embedded struct when using option RequiredIfNoDef:true (#191)v6.7.0Compare Source
Changelog
929e30echore(deps): bump codecov/codecov-action from 1 to 2 (#186)92ab404feat: Add option: 'required' by default (#187)5dd6d0cfeat: go 1.171cd374bfeat: onset hook (#185)53ff073fix: ineffective breakd96cac5fix: merge issuesfaf605drefactor: improve testv6.6.2Compare Source
Changelog
48e4777fix(ci): missing envv6.6.1Compare Source
Changelog
6683f37chore(ci): include goreleaser confige60d1e7fix(ci): distribution75568dbfix(ci): keyv6.6.0Compare Source
Changelog
f2ced39chore(deps): bump actions/cache from v2 to v2.1.4 (#156)41425b4chore(deps): bump actions/cache from v2 to v2.1.4 (#160)346d77cchore(deps): bump actions/cache from v2.1.4 to v2.1.5 (#164)c33df78chore(deps): bump actions/checkout from 2 to 2.3.4 (#168)7c39877chore(deps): bump codecov/codecov-action from 1 to 1.5.0 (#167)d80f61dchore(deps): bump golangci/golangci-lint-action from v2 to v2.5.2 (#161)2174282chore(deps): bump goreleaser/goreleaser-action from 2 to 2.5.0 (#166)6cbd70cdocs/test: document how to use custom time formats (#172)fd499bbfeat: allow to unset a variable after reading it (#171)3de7ad1feat: go 1.16, test on mac and windows (#159)b2f4697feat: notEmpty tag (#174)eb9cdc4fix(ci): workflow versions9a4342dfix(ci): workflow versionsd552093fix: linter0397ad7fix: some cases on windows (#170)f878cc5tests: use require instead of assertv6.5.0Compare Source
Changelog
54c9d5echore(ci): dependabot7e1f128chore: delete gosum workflowaa84092feat: upgrade to go 1.15 (#150)2ed4d36fix: add check for blank env key (#153)e244b8arefactor: improve ifv6.4.0Compare Source
Changelog
3ac02fechore(deps): go mod tidy (#122)f21b8c3feat(ci): dependabot52290f9feat: add options (#131)a1ac5e4fix: support custom slice types (#130)07535a5refactor: make unmarshal error handling clearerConfiguration
📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) in timezone Europe/London, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.