Releases: darccio/mergo
v1.0.1
What's Changed
- fixes issue #187 by @vsemichev in #253
- fix:
WithoutDereference
should respect non-nil struct pointers by @joshkaplinsky in #251
New Contributors
- @vsemichev made their first contribution in #253
- @joshkaplinsky made their first contribution in #251
Full Changelog: v1.0.0...v1.0.1
1.0.0 released with new module URL: dario.cat/mergo
This PR is a release containing 0.3.15 features but changing the module URL to dario.cat/mergo
.
What's Changed
Full Changelog: v0.3.16...v1.0.0
Announcement: v1.0.0 will be released on June 18th
This release doesn't contain code changes.
After 10 years, with many corner cases covered, very few issues pending (at least, comparing them with the usage of the library as part of Docker, Kubernetes, Datadog's agent, etc.), and a very stable API, I think it's time to release a 1.0.0 version.
This version will be released under a vanity URL: dario.cat/mergo
PS: although I'll make sure that github.com/imdario/mergo will be available, I'm going to also change my GitHub handle, so expect for a few minutes to not be able to pull from github.com/imdario as I fork it from the new handle to the old one.
PS2: I'm creating a discussion for this release to make sure we can have a conversation around the topic, and anything else about Mergo that you care about.
Issues #131, #170, #220, and #202 fixed
v0.3.15 Update stackaid dependencies for imdario/mergo
fix: Respect overwriteWithEmptySrc when merging maps #231
v0.3.14 Update stackaid dependencies for imdario/mergo
Merging same-type slices supported, YAML upgraded to v3 (only used in tests), and more flexibility for transformers
What's Changed
- Fix typo in README.md by @eltociear in #184
- Adding StructBot to Mergo in the wild section by @tjpnz in #193
- Add Goreleaser to featured projects by @marcauberer in #191
- fix: gate transformers on valid non-nil destinations by @zaquestion in #211
- Support slices of same type by @heaths in #210
- Upgrade yaml to v3 by @imdario in #212
New Contributors
- @eltociear made their first contribution in #184
- @tjpnz made their first contribution in #193
- @marcauberer made their first contribution in #191
- @zaquestion made their first contribution in #211
- @heaths made their first contribution in #210
Full Changelog: 0.3.12...v0.3.13
Some bug fixes
v0.3.11: Merge pull request #161 from modopayments/fix160
fixed issue #160 by removing unused old test code
v0.3.10: frozen codebase + next steps
After the broken 0.3.9, I decided to revert the faulty PR #105, reopening the issues #90 and #103. Also, this release includes all the other pending bugs. As it is getting harder to modify the codebase, I decided to freeze it. I'm going to merge only PRs fixing bugs with proper tests.
On the other hand, I will start a new cleanroom implementation. Existing tests will be reviewed and used as "test subjects". Also, I plan to collect real-world examples to use them also as "test subjects" in a separate repository.
In this process, I would like to work from the bottom to the top, focusing on getting the core right. I plan to keep a legacy compatibility layer, but the new API may differ from the current one to allow better maintenance and new features.
Support for Struct in Map
Merge pull request #105 from svyotov/fix-panic-on-merge add support for Struct in Map