fix(deps): update module github.com/k-capehart/go-salesforce/v2 to v3#57
Open
renovate[bot] wants to merge 1 commit into
Open
fix(deps): update module github.com/k-capehart/go-salesforce/v2 to v3#57renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
canonical-iam
approved these changes
Oct 4, 2025
8032440 to
8be0322
Compare
canonical-iam
approved these changes
Oct 8, 2025
8be0322 to
bce6d99
Compare
canonical-iam
approved these changes
Oct 8, 2025
bce6d99 to
9299ce0
Compare
canonical-iam
approved these changes
Oct 10, 2025
9299ce0 to
47a0cac
Compare
canonical-iam
approved these changes
Oct 11, 2025
47a0cac to
2fae103
Compare
canonical-iam
approved these changes
Oct 15, 2025
2fae103 to
7be3881
Compare
canonical-iam
approved these changes
Oct 15, 2025
7be3881 to
28974d8
Compare
canonical-iam
approved these changes
Oct 15, 2025
28974d8 to
78a9600
Compare
canonical-iam
previously approved these changes
Oct 16, 2025
Contributor
Author
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
78a9600 to
87111b2
Compare
canonical-iam
approved these changes
Oct 17, 2025
87111b2 to
cb74967
Compare
canonical-iam
approved these changes
Oct 18, 2025
cb74967 to
7776d02
Compare
canonical-iam
approved these changes
Oct 18, 2025
7776d02 to
2c46ab7
Compare
canonical-iam
approved these changes
Oct 18, 2025
2c46ab7 to
cb66d99
Compare
canonical-iam
approved these changes
Oct 20, 2025
canonical-iam
approved these changes
Mar 23, 2026
canonical-iam
approved these changes
Mar 25, 2026
canonical-iam
approved these changes
Mar 28, 2026
canonical-iam
approved these changes
Mar 28, 2026
canonical-iam
previously approved these changes
Mar 30, 2026
canonical-iam
previously approved these changes
Apr 17, 2026
canonical-iam
previously approved these changes
Apr 22, 2026
canonical-iam
approved these changes
Apr 24, 2026
canonical-iam
approved these changes
Apr 24, 2026
canonical-iam
approved these changes
Apr 24, 2026
canonical-iam
approved these changes
Apr 24, 2026
canonical-iam
approved these changes
Apr 24, 2026
canonical-iam
approved these changes
May 1, 2026
canonical-iam
approved these changes
May 1, 2026
canonical-iam
approved these changes
May 1, 2026
canonical-iam
approved these changes
May 1, 2026
canonical-iam
approved these changes
May 1, 2026
canonical-iam
approved these changes
May 4, 2026
canonical-iam
approved these changes
May 4, 2026
canonical-iam
approved these changes
May 4, 2026
canonical-iam
approved these changes
May 4, 2026
canonical-iam
approved these changes
May 4, 2026
canonical-iam
approved these changes
May 4, 2026
canonical-iam
approved these changes
May 4, 2026
canonical-iam
approved these changes
May 5, 2026
canonical-iam
approved these changes
May 5, 2026
canonical-iam
approved these changes
May 6, 2026
canonical-iam
approved these changes
May 9, 2026
canonical-iam
approved these changes
May 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
v2.5.2→v3.2.0Release Notes
k-capehart/go-salesforce (github.com/k-capehart/go-salesforce/v2)
v3.2.0Compare Source
What's Changed
Full Changelog: k-capehart/go-salesforce@v3.1.2...v3.2.0
v3.1.2Compare Source
What's Changed
Full Changelog: k-capehart/go-salesforce@v3.1.1...v3.1.2
v3.1.1Compare Source
What's Changed
New Contributors
Full Changelog: k-capehart/go-salesforce@v3.1.0...v3.1.1
v3.1.0Compare Source
What's Changed
Full Changelog: k-capehart/go-salesforce@v3.0.3...v3.1.0
v3.0.3Compare Source
What's Changed
Full Changelog: k-capehart/go-salesforce@v3.0.2...v3.0.3
v3.0.2Compare Source
What's Changed
New Contributors
Full Changelog: k-capehart/go-salesforce@v3.0.1...v3.0.2
v3.0.1Compare Source
What's Changed
Full Changelog: k-capehart/go-salesforce@v3.0.0...v3.0.1
v3.0.0Compare Source
Big Changes
We've made it to version 3.0! 🎉 These include some big changes to how configuration is handled as well as some notable deprecations.
Big shoutout to @mutovkin for the hard work in getting these new features.
Configuration during client initialization overhaul
func WithCompressionHeaders(compression bool) Option- see docsfunc WithAPIVersion(version string) Option- set API version manually instead of using defaultfunc WithBatchSizeMax(size int)- for collections APIfunc WithBulkBatchSizeMax(size int) Option- for Bulk APIfunc WithRoundTripper(rt http.RoundTripper) Option- for http requestsfunc WithHTTPTimeout(timeout time.Duration) Option- set custom timeoutfunc WithValidateAuthentication(validate bool) Option- optionally skip validation during certain auth flowsExample:
See more examples: https://github.com/k-capehart/go-salesforce/tree/main/examples
Retrieve current configuration using one of these new methods:
func (sf *Salesforce) GetAPIVersion() stringfunc (sf *Salesforce) GetBatchSizeMax() intfunc (sf *Salesforce) GetBulkBatchSizeMax() intfunc (sf *Salesforce) GetCompressionHeaders() boolfunc (sf *Salesforce) GetHTTPClient() *http.ClientThe biggest new feature to come out of this is the ability add a round tripper with
WithRoundTripper(), allowing you to hook in to what happens in between sending a request and receiving the response.There is additional documentation on this in a new markdown file here
There has also been a bug fix for using the Upsert methods with an external ID of type
intorfloat64. Before, this just wouldn't work but it plays nicely now.Updates to GitHub actions for formatting and linting enforcement and a new MAKEFILE for a much improved developer experience.
Deprecated
These methods and structs are no longer available.
salesforce.Config- this is now a private struct so is inaccessiblesalesforce.Config.SetDefaults()- defaults are set on initialization if specific overrides are not given.salesforce.Config.SetCompressionHeaders()- this is now handled throughWithCompressionHeaders()What's Changed
New Contributors
Full Changelog: k-capehart/go-salesforce@v2.5.2...v3.0.0
Configuration
📅 Schedule: (in timezone Europe/London)
* * * * 1,3,6)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.