Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #84

Merged
merged 3 commits into from
Oct 13, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 26, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
cloud.google.com/go/bigquery require minor v1.51.2 -> v1.56.0
cloud.google.com/go/pubsub require minor v1.31.0 -> v1.33.0
cloud.google.com/go/storage require minor v1.30.1 -> v1.33.0
github.com/Shopify/sarama require minor v1.38.1 -> v1.41.2
github.com/arquivei/foundationkit require minor v0.3.4 -> v0.4.2
github.com/confluentinc/confluent-kafka-go/v2 require minor v2.1.1 -> v2.2.0
github.com/go-kit/kit require minor v0.12.0 -> v0.13.0
github.com/googleapis/gax-go/v2 require minor v2.11.0 -> v2.12.0
github.com/rs/zerolog require minor v1.29.1 -> v1.31.0
github.com/segmentio/kafka-go require patch v0.4.40 -> v0.4.44
golang.org/x/sync require minor v0.3.0 -> v0.4.0

Release Notes

Shopify/sarama (github.com/Shopify/sarama)

v1.41.2: Version 1.41.2 (2023-09-12)

Compare Source

What's Changed

🎉 New Features / Improvements
🐛 Fixes
📦 Dependency updates

New Contributors

Full Changelog: IBM/sarama@v1.41.1...v1.41.2

v1.41.1: Version 1.41.1 (2023-08-30)

Compare Source

What's Changed

🐛 Fixes
🔧 Maintenance
📝 Documentation
➕ Other Changes

Full Changelog: IBM/sarama@v1.41.0...v1.41.1

v1.41.0: Version 1.41.0 (2023-08-21)

Compare Source

What's Changed

🚨 Breaking Changes

Note: this version of Sarama has had a big overhaul in its adherence to the use of the right Kafka protocol versions for the given Config Version. It has also bumped the default Version set in Config (where one is not supplied) to 2.1.0. This is in preparation for Kafka 4.0 dropping support for protocol versions older than 2.1. If you are using Sarama against Kafka clusters older than v2.1.0, or using it against Azure EventHubs then you will likely have to change your application code to pin to the appropriate Version.

🎉 New Features / Improvements
🐛 Fixes
📦 Dependency updates
🔧 Maintenance
📝 Documentation

New Contributors

Full Changelog: IBM/sarama@v1.40.1...v1.41.0

v1.40.1: Version 1.40.1 (2023-07-27)

Compare Source

What's Changed

🎉 New Features / Improvements
🐛 Fixes
📦 Dependency updates
🔧 Maintenance
➕ Other Changes

New Contributors

Full Changelog: IBM/sarama@v1.40.0...v1.40.1

v1.40.0: Version 1.40.0 (2023-07-17)

Compare Source

What's Changed

Note: this is the first release after the transition of Sarama ownership from Shopify to IBM in https://github.com/IBM/sarama/issues/2461

🚨 Breaking Changes
🐛 Fixes
📦 Dependency updates
🔧 Maintenance

New Contributors

Full Changelog: IBM/sarama@v1.38.1...v1.40.0

arquivei/foundationkit (github.com/arquivei/foundationkit)

v0.4.2

Compare Source

What's Changed

Full Changelog: arquivei/foundationkit@v0.4.1...v0.4.2

v0.4.1

Compare Source

What's Changed

Full Changelog: arquivei/foundationkit@v0.4.0...v0.4.1

v0.4.0

Compare Source

What's Changed

Full Changelog: arquivei/foundationkit@v0.3.6...v0.4.0

v0.3.6

Compare Source

Updates direct dependencies:

  • cloud.google.com/go/logging v1.8.1
  • github.com/go-kit/kit v0.13.0
  • github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.18.0
  • github.com/hamba/avro/v2 v2.15.1
  • github.com/prometheus/client_golang v1.16.0
  • github.com/rs/zerolog v1.30.0
  • github.com/splitio/go-client/v6 v6.4.0
  • golang.org/x/net v0.15.0

Also:

v0.3.5

Compare Source

What's Changed

Full Changelog: arquivei/foundationkit@v0.3.4...v0.3.5

confluentinc/confluent-kafka-go (github.com/confluentinc/confluent-kafka-go/v2)

v2.2.0

Compare Source

This is a feature release.

Fixes

  • Fixes a nil pointer bug in the protobuf Serializer.Serialize(), caused due to
    an unchecked error (#​997, @​baganokodo2022).
  • Fixes incorrect protofbuf FileDescriptor references (#​989, @​Mrmann87).
  • Allow fetching all partition offsets for a consumer group by passing a
    nil slice in AdminClient.ListConsumerGroupOffsets, when earlier it
    was not processing that correctly (#​985, @​alexandredantas).
  • Deprecate m.LeaderEpoch in favor of m.TopicPartition.LeaderEpoch (#​1012).

confluent-kafka-go is based on librdkafka v2.2.0, see the
librdkafka v2.2.0 release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.1.1

This is a maintenance release.

It is strongly recommended to update to v2.1.1 if v2.1.0 is being used, as it
fixes a critical issue in the consumer (#​980).

confluent-kafka-go is based on librdkafka v2.1.1, see the
librdkafka v2.1.1 release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.1.0

This is a feature release:

  • Added Consumer SeekPartitions() method to seek multiple partitions at
    once and deprecated Seek() (#​940).
  • KIP-320:
    add offset leader epoch to the TopicPartition
    and Message structs (#​968).
  • The minimum version of Go supported has been changed from 1.14 to 1.16
    (#​973).
  • Add validation on the Producer, the Consumer and the AdminClient to prevent
    panic when they are used after close (#​901).
  • Fix bug causing schema-registry URL with existing path to not be parsed
    correctly (#​950).
  • Support for Offset types on Offset.Set() (#​962, @​jdockerty).
  • Added example for using rebalance callback with manual commit.

confluent-kafka-go is based on librdkafka v2.1.0, see the
librdkafka v2.1.0 release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.0.2

This is a feature release:

  • Added SetSaslCredentials. This new method (on the Producer, Consumer, and
    AdminClient) allows modifying the stored SASL PLAIN/SCRAM credentials that
    will be used for subsequent (new) connections to a broker.
  • Channel based producer (Producer ProduceChannel()) and channel based
    consumer (Consumer Events()) are deprecated.
  • Added IsTimeout() on Error type. This is a convenience method that checks
    if the error is due to a timeout.
  • The timeout parameter on Seek() is now ignored and an infinite timeout is
    used, the method will block until the fetcher state is updated (typically
    within microseconds).
  • The minimum version of Go supported has been changed from 1.11 to 1.14.
  • KIP-222
    Add Consumer Group operations to Admin API.
  • KIP-518
    Allow listing consumer groups per state.
  • KIP-396
    Partially implemented: support for AlterConsumerGroupOffsets.
  • As result of the above KIPs, added (#​923)
    • ListConsumerGroups Admin operation. Supports listing by state.
    • DescribeConsumerGroups Admin operation. Supports multiple groups.
    • DeleteConsumerGroups Admin operation. Supports multiple groups (@​vsantwana).
    • ListConsumerGroupOffsets Admin operation. Currently, only supports
      1 group with multiple partitions. Supports the requireStable option.
    • AlterConsumerGroupOffsets Admin operation. Currently, only supports
      1 group with multiple offsets.
  • Added SetRoundtripDuration to the mock broker for setting RTT delay for
    a given mock broker (@​kkoehler, #​892).
  • Built-in support for Linux/ arm64. (#​933).
Fixes
  • The SpecificDeserializer.Deserialize method was not returning its result
    result correctly, and was hence unusable. The return has been fixed (#​849).
  • The schema ID to use during serialization, specified in SerializerConfig,
    was ignored. It is now used as expected (@​perdue, #​870).
  • Creating a new schema registry client with an SSL CA Certificate led to a
    panic. This was due to a nil pointer, fixed with proper initialization
    (@​HansK-p, @​ju-popov, #​878).
Upgrade considerations
  • OpenSSL 3.0.x upgrade in librdkafka requires a major version bump, as some legacy
    ciphers need to be explicitly configured to continue working, but it is highly
    recommended not to use them.
    The rest of the API remains backward compatible, see the librdkafka release notes
    below for details.
  • As required by the Go module system, a suffix with the new major version has been
    added to the module name, and package imports must reflect this change.

confluent-kafka-go is based on librdkafka v2.0.2, see the
librdkafka v2.0.0 release notes
and later ones for a complete list of changes, enhancements, fixes and upgrade considerations.

Note: There were no confluent-kafka-go v2.0.0 or v2.0.1 releases.

v1.9.2

This is a maintenance release:

confluent-kafka-go is based on librdkafka v1.9.2, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v1.9.1

This is a feature release:

confluent-kafka-go is based on librdkafka v1.9.1, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v1.9.0

This is a feature release:

Fixes

confluent-kafka-go is based on librdkafka v1.9.0, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v1.8.2

This is a maintenance release:

  • Bundles librdkafka v1.8.2
  • Check termination channel while reading delivery reports (by @​zjj)
  • Added convenience method Consumer.StoreMessage() (@​finncolman, #​676)

confluent-kafka-go is based on librdkafka v1.8.2, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

Note: There were no confluent-kafka-go v1.8.0 and v1.8.1 releases.

v1.7.0

Enhancements
  • Experimental Windows support (by @​neptoess).
  • The produced message headers are now available in the delivery report
    Message.Headers if the Producer's go.delivery.report.fields
    configuration property is set to include headers, e.g.:
    "go.delivery.report.fields": "key,value,headers"
    This comes at a performance cost and are thus disabled by default.
Fixes
  • AdminClient.CreateTopics() previously did not accept default value(-1) of
    ReplicationFactor without specifying an explicit ReplicaAssignment, this is
    now fixed.

confluent-kafka-go is based on librdkafka v1.7.0, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v1.6.1

v1.6.1 is a feature release:

  • KIP-429: Incremental consumer rebalancing - see cooperative_consumer_example.go
    for an example how to use the new incremental rebalancing consumer.
  • KIP-480: Sticky producer partitioner - increase throughput and decrease
    latency by sticking to a single random partition for some time.
  • KIP-447: Scalable transactional producer - a single transaction producer can
    now be used for multiple input partitions.

confluent-kafka-go is based on and bundles librdkafka v1.6.1, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

Enhancements
  • go.delivery.report.fields=all,key,value,none can now be used to
    avoid copying message key and/or value to the delivery report, improving
    performance in high-throughput applications (by @​kevinconaway).
Fixes
  • Consumer.Close() previously did not trigger the final RevokePartitions
    callback, this is now fixed.

v1.5.2

v1.5.2 is a maintenance release with the following fixes and enhancements:

  • Bundles librdkafka v1.5.2 - see release notes for all enhancements and fixes.
  • Documentation fixes

confluent-kafka-go is based on librdkafka v1.5.2, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

go-kit/kit (github.com/go-kit/kit)

v0.13.0

Compare Source

Go kit v0.13.0 is released, containing mostly minor fixes and dependency updates.

What's Changed

New Contributors

Full Changelog: go-kit/kit@v0.12.0...v0.13.0

googleapis/gax-go (github.com/googleapis/gax-go/v2)

v2.12.0

Compare Source

Features
  • v2/callctx: add new callctx package (#​291) (11503ed)
  • v2: add BuildHeaders and InsertMetadataIntoOutgoingContext to header (#​290) (6a4b89f)
rs/zerolog (github.com/rs/zerolog)

v1.31.0

Compare Source

v1.30.0

Compare Source

segmentio/kafka-go (github.com/segmentio/kafka-go)

v0.4.44

Compare Source

What's Changed

New Contributors

Full Changelog: segmentio/kafka-go@v0.4.43...v0.4.44

v0.4.43

Compare Source

What's Changed

New Contributors

Full Changelog: segmentio/kafka-go@v0.4.42...v0.4.43

v0.4.42

Compare Source

What's Changed

Full Changelog: segmentio/kafka-go@v0.4.41...v0.4.42

v0.4.41

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - "before 8am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7e85eb6 to 4593d42 Compare June 26, 2023 19:33
@renovate renovate bot changed the title fix(deps): update module github.com/arquivei/foundationkit to v0.3.5 fix(deps): update all non-major dependencies Jun 26, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 39ffeaf to 6e1d9f2 Compare June 28, 2023 22:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from e9f1c24 to 5989999 Compare July 12, 2023 13:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5989999 to d0256e3 Compare July 17, 2023 13:48
@renovate
Copy link
Contributor Author

renovate bot commented Jul 17, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: docker run --rm --name=renovate_a_sidecar --label=renovate_a_child --memory=3584m -v "/tmp/worker/0ad6b3/ffa530/repos/github/arquivei/goduck":"/tmp/worker/0ad6b3/ffa530/repos/github/arquivei/goduck" -v "/tmp/worker/0ad6b3/ffa530/cache":"/tmp/worker/0ad6b3/ffa530/cache" -e GOPATH -e GOPROXY -e GOSUMDB -e GOFLAGS -e CGO_ENABLED -e GIT_CONFIG_KEY_0 -e GIT_CONFIG_VALUE_0 -e GIT_CONFIG_KEY_1 -e GIT_CONFIG_VALUE_1 -e GIT_CONFIG_KEY_2 -e GIT_CONFIG_VALUE_2 -e GIT_CONFIG_COUNT -e CONTAINERBASE_CACHE_DIR -w "/tmp/worker/0ad6b3/ffa530/repos/github/arquivei/goduck" ghcr.io/containerbase/sidecar:9.20.8 bash -l -c "install-tool golang 1.21.3 && go get -d -t ./... && go mod tidy && go mod tidy"
go: github.com/Shopify/sarama@v1.41.2: parsing go.mod:
	module declares its path as: github.com/IBM/sarama
	        but was required as: github.com/Shopify/sarama

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0c4ec56 to 7dbf2d2 Compare July 30, 2023 01:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 3d8a8f0 to c280555 Compare August 21, 2023 23:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 680aad8 to 0a65aff Compare August 30, 2023 14:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d4a21df to c041921 Compare September 12, 2023 20:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from bb70b58 to b88d735 Compare September 25, 2023 13:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b88d735 to 4282188 Compare October 5, 2023 13:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e79b6d0 to d368407 Compare October 12, 2023 16:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 75432e2 to f67ee06 Compare October 13, 2023 17:56
@renovate
Copy link
Contributor Author

renovate bot commented Oct 13, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@sonarcloud
Copy link

sonarcloud bot commented Oct 13, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@marcosbmf marcosbmf merged commit 75e3ed1 into master Oct 13, 2023
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant