Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 17, 2025

Bumps de.siegmar:fastcsv from 2.2.2 to 3.7.0.

Release notes

Sourced from de.siegmar:fastcsv's releases.

v3.7.0

Added

  • FieldModifiers.modify(Function<String, String>) to simply modify fields via functional interface

Deprecated

  • SimpleFieldModifier interface
  • FieldModifiers.lower and FieldModifiers.upper methods

v3.6.0

Added

  • Configuration of maximum fields, maximum field size, and maximum record size via record handler
  • Fluent configuration for CsvRecordHandler, NamedCsvRecordHandler, and StringArrayHandler
  • maxBufferSize(int) in CsvReaderBuilder and IndexedCsvReaderBuilder to alter the maximum buffer size of the parser

Changed

  • Use ReentrantLock in IndexedCsvReader instead of synchronized to prevent pinning of virtual threads
  • More precise error messages when exceeding the maximum field or record size
  • More precise error when parsing error occurs within IndexedCsvReader
  • Apply length constraints (maximum field size and maximum record size) after applying field modifiers

Deprecated

  • Setting the maximum field size (and maximum buffer size) via system property fastcsv.max.field.size
  • Setting the maximum field count per record via system property fastcsv.max.field.count
  • Constructor initialization of CsvRecordHandler, NamedCsvRecordHandler, and StringArrayHandler

v3.5.0

Added

  • Support InputStream as an input source for CsvReader including BOM detection #130
  • Support OutputStream as an output target for CsvWriter

v3.4.0

Added

  • Add skipLines(int) and skipLines(Predicate<String>, int) to CsvReader to skip lines before the actual CSV data starts

v3.3.1

Fixed

  • Fixed a bug in CsvReader where lines were mistakenly treated as empty and skipped when skipEmptyLines was set (default). These affected lines made up solely of field separators, solely empty quoted fields, or fields rendered empty after applying optional field modifiers.

v3.3.0

Added

  • Implement Flushable interface for CsvWriter to allow flushing the underlying writer
  • Implement autoFlush option for CsvWriter to automatically flush the writer after writing a record
  • Implement toConsole method for CsvWriter to write records to the console

v3.2.0

Added

  • Add writeRecord() to CsvWriter to allow writing records field by field
  • Allow overwriting the limits of 16K fields per record and 16M characters per field (#104); Thanks to @​Obolrom!

v3.1.0

... (truncated)

Changelog

Sourced from de.siegmar:fastcsv's changelog.

[3.7.0] - 2025-05-11

Added

  • FieldModifiers.modify(Function<String, String>) to simply modify fields via functional interface

Deprecated

  • SimpleFieldModifier interface
  • FieldModifiers.lower and FieldModifiers.upper methods

[3.6.0] - 2025-03-04

Added

  • Configuration of maximum fields, maximum field size, and maximum record size via record handler
  • Fluent configuration for CsvRecordHandler, NamedCsvRecordHandler, and StringArrayHandler
  • maxBufferSize(int) in CsvReaderBuilder and IndexedCsvReaderBuilder to alter the maximum buffer size of the parser

Changed

  • Use ReentrantLock in IndexedCsvReader instead of synchronized to prevent pinning of virtual threads
  • More precise error messages when exceeding the maximum field or record size
  • More precise error when parsing error occurs within IndexedCsvReader
  • Apply length constraints (maximum field size and maximum record size) after applying field modifiers

Deprecated

  • Setting the maximum field size (and maximum buffer size) via system property fastcsv.max.field.size
  • Setting the maximum field count per record via system property fastcsv.max.field.count
  • Constructor initialization of CsvRecordHandler, NamedCsvRecordHandler, and StringArrayHandler

[3.5.0] - 2025-02-22

Added

  • Support InputStream as an input source for CsvReader including BOM detection #130
  • Support OutputStream as an output target for CsvWriter

[3.4.0] - 2024-11-04

Added

  • Add skipLines(int) and skipLines(Predicate<String>, int) to CsvReader to skip lines before the actual CSV data starts

[3.3.1] - 2024-09-23

Fixed

  • Fixed a bug in CsvReader where lines were mistakenly treated as empty and skipped when skipEmptyLines was set (default). These affected lines made up solely of field separators, solely empty quoted fields, or fields rendered empty after applying optional field modifiers.

[3.3.0] - 2024-09-19

Added

  • Implement Flushable interface for CsvWriter to allow flushing the underlying writer
  • Implement autoFlush option for CsvWriter to automatically flush the writer after writing a record
  • Implement toConsole method for CsvWriter to write records to the console

[3.2.0] - 2024-06-15

Added

  • Add writeRecord() to CsvWriter to allow writing records field by field
  • Allow overwriting the limits of 16K fields per record and 16M characters per field (#104); Thanks to @​Obolrom!

[3.1.0] - 2024-03-09

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jun 17, 2025
@dependabot dependabot bot force-pushed the dependabot/gradle/de.siegmar-fastcsv-3.7.0 branch from da92acf to 38ab368 Compare June 17, 2025 01:26
Bumps [de.siegmar:fastcsv](https://github.com/osiegmar/FastCSV) from 2.2.2 to 3.7.0.
- [Release notes](https://github.com/osiegmar/FastCSV/releases)
- [Changelog](https://github.com/osiegmar/FastCSV/blob/main/CHANGELOG.md)
- [Commits](osiegmar/FastCSV@v2.2.2...v3.7.0)

---
updated-dependencies:
- dependency-name: de.siegmar:fastcsv
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/gradle/de.siegmar-fastcsv-3.7.0 branch from 38ab368 to 0ea7e4d Compare June 17, 2025 01:46
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 23, 2025

Superseded by #243.

@dependabot dependabot bot closed this Jun 23, 2025
@dependabot dependabot bot deleted the dependabot/gradle/de.siegmar-fastcsv-3.7.0 branch June 23, 2025 14:35
@github-actions github-actions bot locked and limited conversation to collaborators Jun 23, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant