Skip to content

chore(deps): bump the benthos group across 1 directory with 2 updates#3383

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/benthos-8656c13e83
Open

chore(deps): bump the benthos group across 1 directory with 2 updates#3383
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/benthos-8656c13e83

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Sep 15, 2025

Bumps the benthos group with 2 updates in the / directory: github.com/redpanda-data/benthos/v4 and github.com/redpanda-data/connect/public/bundle/free/v4.

Updates github.com/redpanda-data/benthos/v4 from 4.55.0 to 4.73.0

Changelog

Sourced from github.com/redpanda-data/benthos/v4's changelog.

4.73.0 - 2026-05-07

Added

  • Schema: Added Date, TimeOfDay, UUID and timestamp/time-of-day params (@​twmb)

4.72.0 - 2026-05-01

Added

  • Schema: Added a Decimal common type carrying precision and scale via a new LogicalParams struct, enabling lossless conversion between Avro, Parquet, and database NUMBER/NUMERIC decimals. Includes NewDecimal, FormatDecimal/ParseDecimal, and DecimalParams.Format/Parse/ValidateValue helpers, plus a Common.Validate entry point. ParseFromAny and InferFromAny now accept encoding/json.Number values, so schemas pipelined through json.Decoder.UseNumber() round-trip without precision loss. (@​Jeffail)
  • Schema: Added a BigDecimal common type for arbitrary-precision decimals, alongside NewBigDecimal, FormatBigDecimal, and ParseBigDecimal helpers. Use it for sources that lack column-level precision (Postgres numeric without (p, s), Oracle NUMBER with no DATA_PRECISION, MongoDB Decimal128). Common.Validate enforces BigDecimal as a leaf type with no logical parameters. (@​Jeffail)

4.70.0 - 2026-04-02

Added

Changed

4.69.0 - 2026-03-19

Added

  • Bloblang: The hash method now supports sha3_256 and sha3_512 algorithms. (@​prakhargarg105)
  • Bloblang: Added parse_logfmt method. (@​twmb)
  • Bloblang: Added escape_url_path and unescape_url_path methods. (@​twmb)
  • Processor/switch: Added continue option for conditional case chaining. (@​twmb)
  • API: Added custom resource type registration. (@​mmatczuk)
  • CLI: Added --verbose flag to list test case names. (@​twmb)

Changed

  • Codec: Default to all-bytes reader for decompression codecs. (@​twmb)

Fixed

  • Stdin: Fix watcher mode swallowing first message after reload. (@​twmb)
  • Env: Handle Windows line terminators in dotenv parser. (@​twmb)
  • Pipeline: Defer processor close in pool until all workers exit. (@​twmb)

4.68.0 - 2026-03-13

Added

  • Go API: Add NewMessageWithContext to service package for constructing messages with an associated context. (@​prakhargarg105)

... (truncated)

Commits
  • 665a60a fix changelog (#431)
  • 4846d30 Update Changelog (#430)
  • b13320b public/schema: add Date, TimeOfDay, UUID and timestamp/time-of-day params (#429)
  • d3ecb49 Update cl (#424)
  • 76e9aa1 Update CL
  • ddb2b04 gh: increase max-turns for Claude code review from 30 to 50 (#422)
  • ef3a242 Update public/schema/bigdecimal_test.go
  • 4b82977 public/schema: bound fractional digits in canonical decimal parser
  • 9b6f8c4 public/schema: bump bigdecimal.go copyright to 2026
  • 2ff41e6 public/schema: add BigDecimal common type
  • Additional commits viewable in compare view

Updates github.com/redpanda-data/connect/public/bundle/free/v4 from 4.61.0 to 4.90.3

Release notes

Sourced from github.com/redpanda-data/connect/public/bundle/free/v4's releases.

v4.90.3

For installation instructions check out the getting started guide.

Added

  • mysql_cdc: MySQL CDC connector now supports parallel snapshots to improve initial data capture performance when replicating large tables. (@​josephwoodward, #4363)
  • bigquery: Added storage write API connector. (@​squiidz, #4220)

Fixed

The full change log can be found here.

v4.90.2

For installation instructions check out the getting started guide.

Added

  • mysql_cdc: MySQL CDC connector now supports parallel snapshots to improve initial data capture performance when replicating large tables. (@​josephwoodward, #4363)
  • bigquery: Added storage write API connector. (@​squiidz, #4220)

Fixed

The full change log can be found here.

v4.90.1

For installation instructions check out the getting started guide.

Added

  • mysql_cdc: MySQL CDC connector now supports parallel snapshots to improve initial data capture performance when replicating large tables. (@​josephwoodward, #4363)
  • bigquery: Added storage write API connector. (@​squiidz, #4220)

Fixed

The full change log can be found here.

v4.90.0

For installation instructions check out the getting started guide.

Added

  • mysql_cdc: MySQL CDC connector now supports parallel snapshots to improve initial data capture performance when replicating large tables. (@​josephwoodward, #4363)
  • bigquery: Added storage write API connector. (@​squiidz, #4220)

... (truncated)

Changelog

Sourced from github.com/redpanda-data/connect/public/bundle/free/v4's changelog.

Changelog

All notable changes to this project will be documented in this file.

4.92.0 - 2026-05-14

Added

  • kafka: Exposed Franz Kafka producer configuration options including acks, max_buffered_records, max_buffered_bytes, max_in_flight_requests, record_retries, and record_delivery_timeout for greater control over message delivery behavior. (@​dyurchanka, #4028)
  • telemetry: Add deployment-type and tenant-id to call-home payload (@​prakhargarg105, #4426)

Fixed

  • iceberg: Improved Iceberg commit performance by skipping the redundant duplicate-path check on AddDataFiles operations, which was causing multiplicative slowdowns on busy tables. (@​Jeffail, #4421)

Changed

4.91.0 - 2026-05-08

Fixed

  • aws_s3: Fixed object_canned_acl field to properly accept empty string value in schema validation and runtime, allowing uploads to buckets with ACLs disabled. (@​josephwoodward, #4413)
  • iceberg: Fixed Iceberg v2 manifest list writer to accept v1 manifest files from tables upgraded from v1 to v2, resolving commit failures on upgraded tables. (@​Jeffail, #4404)

4.90.0 - 2026-04-30

Added

  • mysql_cdc: MySQL CDC connector now supports parallel snapshots to improve initial data capture performance when replicating large tables. (@​josephwoodward, #4363)
  • bigquery: Added storage write API connector. (@​squiidz, #4220)

Fixed

4.89.3 - 2026-04-30

Fixed

  • iceberg: fix decimal min/max stats extraction for parquet files (@​josephwoodward, #4368)
  • iceberg: Preserve schema-registry column order when auto-creating tables. Build-time ordering now follows schema_metadata when present and falls back to sorted record keys otherwise, replacing Go's randomised map iteration. In case-insensitive mode, top-level column names use the metadata's casing — record keys are matched by case-folding and the metadata's name lands in the table, mirroring how nested struct fields supplied via metadata are named. (@​josephwoodward, #4373)

Added

  • iceberg: Added a case_sensitive_columns field to the iceberg output. When false, column-name matching follows iceberg's recommended case-insensitive convention end-to-end (shredding, schema evolution, partition specs, schema_metadata). Defaults to true for backwards compatibility. (@​Jeffail)

4.89.2 - 2026-04-28

... (truncated)

Commits
  • 2cc2cde iceberg: add configurable Parquet string encoding for Redshift Spectrum compa...
  • 4c25d02 mysqlcdc: checkpoint at transaction boundary (#4396)
  • 6510f1c redpanda_migrator: fix strict linting error (#4397)
  • 47c2c53 aws_s3: Don't set ACL by default since ACLs are disabled by default for bucke...
  • 0ecdfff redis: increase pubsub channel buffer to prevent message drops (#4310)
  • 64da492 chore: add component versions (#4389)
  • 503c6d4 oracledb: various test fixes (#4307)
  • 931ff6b mongodb: various test fixes (#4303)
  • 4ec9581 postgresql: various test fixes (#4308)
  • 8fe821c mssqlserver: various test fixes (#4304)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added area/dependencies Pull requests that update a dependency file dependency/go Pull requests that update Go code labels Sep 15, 2025
@dependabot dependabot Bot requested a review from a team as a code owner September 15, 2025 12:02
@dependabot dependabot Bot added area/dependencies Pull requests that update a dependency file dependency/go Pull requests that update Go code labels Sep 15, 2025
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Sep 15, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Sep 16, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 4 times, most recently from 8c53c0a to a607c0d Compare September 24, 2025 11:10
@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 5 times, most recently from a941134 to ca89c1b Compare October 1, 2025 11:14
@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 4 times, most recently from d76ed10 to f01e085 Compare October 8, 2025 11:10
@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 10 times, most recently from 0a2fcb2 to af547d9 Compare October 14, 2025 09:22
@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 5 times, most recently from 516668b to 6f584f0 Compare November 11, 2025 11:09
@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 5 times, most recently from d895d9f to 2690073 Compare November 19, 2025 11:09
@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 6 times, most recently from 9b471cc to f352ad9 Compare November 27, 2025 11:08
@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 3 times, most recently from c7d4b99 to 16f873a Compare December 3, 2025 11:10
@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 6 times, most recently from 1a282b6 to 99dcde5 Compare December 11, 2025 11:15
@dependabot dependabot Bot force-pushed the dependabot/go_modules/benthos-8656c13e83 branch 3 times, most recently from 54ecf55 to e8b6a32 Compare December 16, 2025 11:09
@chrisgacsal
Copy link
Copy Markdown
Collaborator

@dependabot rebase

Bumps the benthos group with 2 updates in the / directory: [github.com/redpanda-data/benthos/v4](https://github.com/redpanda-data/benthos) and [github.com/redpanda-data/connect/public/bundle/free/v4](https://github.com/redpanda-data/connect).


Updates `github.com/redpanda-data/benthos/v4` from 4.55.0 to 4.73.0
- [Changelog](https://github.com/redpanda-data/benthos/blob/main/CHANGELOG.md)
- [Commits](redpanda-data/benthos@v4.55.0...v4.73.0)

Updates `github.com/redpanda-data/connect/public/bundle/free/v4` from 4.61.0 to 4.90.3
- [Release notes](https://github.com/redpanda-data/connect/releases)
- [Changelog](https://github.com/redpanda-data/connect/blob/main/CHANGELOG.md)
- [Commits](redpanda-data/connect@v4.61.0...v4.90.3)

---
updated-dependencies:
- dependency-name: github.com/redpanda-data/benthos/v4
  dependency-version: 4.56.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: benthos
- dependency-name: github.com/redpanda-data/connect/public/bundle/free/v4
  dependency-version: 4.62.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: benthos
...

Signed-off-by: dependabot[bot] <support@github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/dependencies Pull requests that update a dependency file dependency/go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant