go-resty/resty (github.com/go-resty/resty/v2)
### [`v2.15.3`](https://redirect.github.com/go-resty/resty/releases/tag/v2.15.3)
[Compare Source](https://redirect.github.com/go-resty/resty/compare/v2.15.2...v2.15.3)
### Release Notes
#### Bug Fixes
- fix: 'invalid memory address or nil pointer dereference' in response logger by [@matlockx](https://redirect.github.com/matlockx) in [https://github.com/go-resty/resty/pull/872](https://redirect.github.com/go-resty/resty/pull/872)
#### Documentation
- For release v2.15.3 by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/874](https://redirect.github.com/go-resty/resty/pull/874)
#### New Contributors
- [@matlockx](https://redirect.github.com/matlockx) made their first contribution in [https://github.com/go-resty/resty/pull/872](https://redirect.github.com/go-resty/resty/pull/872)
**Full Changelog**: https://github.com/go-resty/resty/compare/v2.15.2...v2.15.3
### [`v2.15.2`](https://redirect.github.com/go-resty/resty/releases/tag/v2.15.2)
[Compare Source](https://redirect.github.com/go-resty/resty/compare/v2.15.1...v2.15.2)
### Release Notes
#### Bug Fixes
- fix: do not use `errors.Join`, just use custom error approach by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/863](https://redirect.github.com/go-resty/resty/pull/863)
#### Documentation
- release: version bump and readme update for v2.15.2 by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/864](https://redirect.github.com/go-resty/resty/pull/864)
**Full Changelog**: https://github.com/go-resty/resty/compare/v2.15.1...v2.15.2
### [`v2.15.1`](https://redirect.github.com/go-resty/resty/releases/tag/v2.15.1)
[Compare Source](https://redirect.github.com/go-resty/resty/compare/v2.15.0...v2.15.1)
### Release Notes
#### Bug Fixes
- fix: do not parse response debug log with correct text by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/858](https://redirect.github.com/go-resty/resty/pull/858)
#### Documentation
- for v2.15.1 release by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/859](https://redirect.github.com/go-resty/resty/pull/859)
**Full Changelog**: https://github.com/go-resty/resty/compare/v2.15.0...v2.15.1
### [`v2.15.0`](https://redirect.github.com/go-resty/resty/releases/tag/v2.15.0)
[Compare Source](https://redirect.github.com/go-resty/resty/compare/v2.14.0...v2.15.0)
### Release Notes
#### New Features
- feat: add max reponse body limit by [@trim21](https://redirect.github.com/trim21) in [https://github.com/go-resty/resty/pull/830](https://redirect.github.com/go-resty/resty/pull/830)
- feat: add SetClientRootCertificate method support clientCAs usage by [@MagHErmit](https://redirect.github.com/MagHErmit) in [https://github.com/go-resty/resty/pull/826](https://redirect.github.com/go-resty/resty/pull/826)
#### Enhancements
- feat: add ability to set custom multipart boundary value by [@PokeGuys](https://redirect.github.com/PokeGuys) in [https://github.com/go-resty/resty/pull/820](https://redirect.github.com/go-resty/resty/pull/820)
- feat(refactor): for pr [#826](https://redirect.github.com/go-resty/resty/issues/826) by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/848](https://redirect.github.com/go-resty/resty/pull/848)
#### Bug Fixes
- Fix request/response logging for SetDoNotParseResponse(true) by [@kon3gor](https://redirect.github.com/kon3gor) in [https://github.com/go-resty/resty/pull/836](https://redirect.github.com/go-resty/resty/pull/836)
- fix(enhancement): add explicit option to enable generate curl command in conjunction with debug mode and few clean ups [#828](https://redirect.github.com/go-resty/resty/issues/828) by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/842](https://redirect.github.com/go-resty/resty/pull/842)
#### Build
- feat(enhancement): update bazel config by [@frank30941](https://redirect.github.com/frank30941) in [https://github.com/go-resty/resty/pull/833](https://redirect.github.com/go-resty/resty/pull/833)
- build: go min version and build config update [#835](https://redirect.github.com/go-resty/resty/issues/835) by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/837](https://redirect.github.com/go-resty/resty/pull/837)
- Update go vesion to 1.20 by [@kon3gor](https://redirect.github.com/kon3gor) in [https://github.com/go-resty/resty/pull/841](https://redirect.github.com/go-resty/resty/pull/841)
#### Documentation
- doc: godoc improvements and corrections by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/849](https://redirect.github.com/go-resty/resty/pull/849), [https://github.com/go-resty/resty/pull/851](https://redirect.github.com/go-resty/resty/pull/851)
- doc(readme): Add a note, GenerateCurlCommand by [@ahuigo](https://redirect.github.com/ahuigo) in [https://github.com/go-resty/resty/pull/817](https://redirect.github.com/go-resty/resty/pull/817)
- release: version bump and readme update for v2.15.0 by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/852](https://redirect.github.com/go-resty/resty/pull/852)
#### New Contributors
- [@PokeGuys](https://redirect.github.com/PokeGuys) made their first contribution in [https://github.com/go-resty/resty/pull/820](https://redirect.github.com/go-resty/resty/pull/820)
- [@trim21](https://redirect.github.com/trim21) made their first contribution in [https://github.com/go-resty/resty/pull/830](https://redirect.github.com/go-resty/resty/pull/830)
- [@frank30941](https://redirect.github.com/frank30941) made their first contribution in [https://github.com/go-resty/resty/pull/833](https://redirect.github.com/go-resty/resty/pull/833)
- [@kon3gor](https://redirect.github.com/kon3gor) made their first contribution in [https://github.com/go-resty/resty/pull/841](https://redirect.github.com/go-resty/resty/pull/841)
- [@MagHErmit](https://redirect.github.com/MagHErmit) made their first contribution in [https://github.com/go-resty/resty/pull/826](https://redirect.github.com/go-resty/resty/pull/826)
**Full Changelog**: https://github.com/go-resty/resty/compare/v2.14.0...v2.15.0
Configuration
📅 Schedule: Branch creation - "on the 1st day of the month" in timezone Asia/Shanghai, 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
v2.14.0
->v2.15.3
Release Notes
go-resty/resty (github.com/go-resty/resty/v2)
### [`v2.15.3`](https://redirect.github.com/go-resty/resty/releases/tag/v2.15.3) [Compare Source](https://redirect.github.com/go-resty/resty/compare/v2.15.2...v2.15.3) ### Release Notes #### Bug Fixes - fix: 'invalid memory address or nil pointer dereference' in response logger by [@matlockx](https://redirect.github.com/matlockx) in [https://github.com/go-resty/resty/pull/872](https://redirect.github.com/go-resty/resty/pull/872) #### Documentation - For release v2.15.3 by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/874](https://redirect.github.com/go-resty/resty/pull/874) #### New Contributors - [@matlockx](https://redirect.github.com/matlockx) made their first contribution in [https://github.com/go-resty/resty/pull/872](https://redirect.github.com/go-resty/resty/pull/872) **Full Changelog**: https://github.com/go-resty/resty/compare/v2.15.2...v2.15.3 ### [`v2.15.2`](https://redirect.github.com/go-resty/resty/releases/tag/v2.15.2) [Compare Source](https://redirect.github.com/go-resty/resty/compare/v2.15.1...v2.15.2) ### Release Notes #### Bug Fixes - fix: do not use `errors.Join`, just use custom error approach by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/863](https://redirect.github.com/go-resty/resty/pull/863) #### Documentation - release: version bump and readme update for v2.15.2 by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/864](https://redirect.github.com/go-resty/resty/pull/864) **Full Changelog**: https://github.com/go-resty/resty/compare/v2.15.1...v2.15.2 ### [`v2.15.1`](https://redirect.github.com/go-resty/resty/releases/tag/v2.15.1) [Compare Source](https://redirect.github.com/go-resty/resty/compare/v2.15.0...v2.15.1) ### Release Notes #### Bug Fixes - fix: do not parse response debug log with correct text by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/858](https://redirect.github.com/go-resty/resty/pull/858) #### Documentation - for v2.15.1 release by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/859](https://redirect.github.com/go-resty/resty/pull/859) **Full Changelog**: https://github.com/go-resty/resty/compare/v2.15.0...v2.15.1 ### [`v2.15.0`](https://redirect.github.com/go-resty/resty/releases/tag/v2.15.0) [Compare Source](https://redirect.github.com/go-resty/resty/compare/v2.14.0...v2.15.0) ### Release Notes #### New Features - feat: add max reponse body limit by [@trim21](https://redirect.github.com/trim21) in [https://github.com/go-resty/resty/pull/830](https://redirect.github.com/go-resty/resty/pull/830) - feat: add SetClientRootCertificate method support clientCAs usage by [@MagHErmit](https://redirect.github.com/MagHErmit) in [https://github.com/go-resty/resty/pull/826](https://redirect.github.com/go-resty/resty/pull/826) #### Enhancements - feat: add ability to set custom multipart boundary value by [@PokeGuys](https://redirect.github.com/PokeGuys) in [https://github.com/go-resty/resty/pull/820](https://redirect.github.com/go-resty/resty/pull/820) - feat(refactor): for pr [#826](https://redirect.github.com/go-resty/resty/issues/826) by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/848](https://redirect.github.com/go-resty/resty/pull/848) #### Bug Fixes - Fix request/response logging for SetDoNotParseResponse(true) by [@kon3gor](https://redirect.github.com/kon3gor) in [https://github.com/go-resty/resty/pull/836](https://redirect.github.com/go-resty/resty/pull/836) - fix(enhancement): add explicit option to enable generate curl command in conjunction with debug mode and few clean ups [#828](https://redirect.github.com/go-resty/resty/issues/828) by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/842](https://redirect.github.com/go-resty/resty/pull/842) #### Build - feat(enhancement): update bazel config by [@frank30941](https://redirect.github.com/frank30941) in [https://github.com/go-resty/resty/pull/833](https://redirect.github.com/go-resty/resty/pull/833) - build: go min version and build config update [#835](https://redirect.github.com/go-resty/resty/issues/835) by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/837](https://redirect.github.com/go-resty/resty/pull/837) - Update go vesion to 1.20 by [@kon3gor](https://redirect.github.com/kon3gor) in [https://github.com/go-resty/resty/pull/841](https://redirect.github.com/go-resty/resty/pull/841) #### Documentation - doc: godoc improvements and corrections by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/849](https://redirect.github.com/go-resty/resty/pull/849), [https://github.com/go-resty/resty/pull/851](https://redirect.github.com/go-resty/resty/pull/851) - doc(readme): Add a note, GenerateCurlCommand by [@ahuigo](https://redirect.github.com/ahuigo) in [https://github.com/go-resty/resty/pull/817](https://redirect.github.com/go-resty/resty/pull/817) - release: version bump and readme update for v2.15.0 by [@jeevatkm](https://redirect.github.com/jeevatkm) in [https://github.com/go-resty/resty/pull/852](https://redirect.github.com/go-resty/resty/pull/852) #### New Contributors - [@PokeGuys](https://redirect.github.com/PokeGuys) made their first contribution in [https://github.com/go-resty/resty/pull/820](https://redirect.github.com/go-resty/resty/pull/820) - [@trim21](https://redirect.github.com/trim21) made their first contribution in [https://github.com/go-resty/resty/pull/830](https://redirect.github.com/go-resty/resty/pull/830) - [@frank30941](https://redirect.github.com/frank30941) made their first contribution in [https://github.com/go-resty/resty/pull/833](https://redirect.github.com/go-resty/resty/pull/833) - [@kon3gor](https://redirect.github.com/kon3gor) made their first contribution in [https://github.com/go-resty/resty/pull/841](https://redirect.github.com/go-resty/resty/pull/841) - [@MagHErmit](https://redirect.github.com/MagHErmit) made their first contribution in [https://github.com/go-resty/resty/pull/826](https://redirect.github.com/go-resty/resty/pull/826) **Full Changelog**: https://github.com/go-resty/resty/compare/v2.14.0...v2.15.0Configuration
📅 Schedule: Branch creation - "on the 1st day of the month" in timezone Asia/Shanghai, 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.