Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

jackson-dataformats-text-2.18.9-1.1 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: jackson-dataformats-text Distribution: openSUSE Tumbleweed
Version: 2.18.9 Vendor: openSUSE
Release: 1.1 Build date: Wed Jul 15 13:35:15 2026
Group: Unspecified Build host: reproducible
Size: 38315 Source RPM: jackson-dataformats-text-2.18.9-1.1.src.rpm
Packager: http://bugs.opensuse.org
Url: https://github.com/FasterXML/jackson-dataformats-text
Summary: Jackson standard text-format data format backends
Parent pom for Jackson text-format dataformats.

Provides

Requires

License

Apache-2.0

Changelog

* Wed Jul 15 2026 Fridrich Strba <fstrba@suse.com>
  - Update to 2.18.9
    * No changes, only syncing the whole stack for databind security
      issues
* Thu Jun 25 2026 Fridrich Strba <fstrba@suse.com>
  - Update to 2.18.8
    * Changes of 2.18.8
      + #679: (toml) Validate integer length for hex/octal/binary
      radix literals
    * Changes of 2.18.7
      + #615: (csv) Feature
      'CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL' ignored when
      preceding column is quoted
    * Changes of 2.18.6
      + #613: (csv) Support 'StreamReadConstraints
      .maxDocumentLength()' validation for CSV module
    * Changes of 2.18.1
      + #499: (yaml) SnakeYAML upgrade to 2.3
    * Changes of 2.18.0
      + #442: (csv) Allow use of "value decorators" (like '[' and ']'
      for arrays) for reading 'CsvSchema' columns
      + #468: (csv) Remove synchronization from 'CsvMapper'
      + #469: (csv) Allow CSV to differentiate between 'null' and
      empty fields (foo,,bar vs. foo,"",bar)
      + #482: (yaml) Allow passing 'ParserImpl' by a subclass or
      overwrite the events
      + #483: (csv) Incorrect location of CSV errors
      + #485: (csv) CSVDecoder: No Long and Int out of range
      exceptions
      + #495: (csv) Support use of 'CsvValueDecorator' for writing CSV
      column values
* Wed Nov 06 2024 Fridrich Strba <fstrba@suse.com>
  - Update to 2.17.3
    * #499: (yaml) SnakeYAML upgrade to 2.3
* Thu Sep 26 2024 Fridrich Strba <fstrba@suse.com>
  - Do not require jflex-maven-plugin, but generate the Lexer.java
    with a simple jflex call
* Wed Aug 07 2024 Fridrich Strba <fstrba@suse.com>
  - Update to 2.17.2
    * #481: (csv) Fix issue in 'setSchema()'
* Mon May 20 2024 Gus Kenion <gus.kenion@suse.com>
  - Update to 2.17.1
    * No changes since 2.17.0
  - Includes changes from 2.17.0
    * #45: (csv) Allow skipping ending line break
      ('CsvGenerator.Feature.WRITE_LINEFEED_AFTER_LAST_ROW')
    * #454: (yaml) Unexpected 'NumberFormatException' in 'YAMLParser'
    * #456: (yaml) Support max Read/Write nesting depth limits
      ('StreamReadConstraints'/ 'StreamWriteConstraints') for YAML
    * #465: (yaml) YAML: consider starting '#' and ending ':' as
      quotable characters
* Fri Mar 08 2024 Gus Kenion <gkenion@suse.com>
  - Update to version 2.16.1
    * Resolve CVE-2023-3894, bsc#1214111
    * 2.16.1 (24-Dec-2023)
      + #445: (yaml) YAMLParser throws unexpected NullPointerException
      in certain number parsing cases
    * 2.16.0 (15-Nov-2023)
      + #198: (csv) Support writing numbers as quoted Strings with
      CsvGenerator.Feature.ALWAYS_QUOTE_NUMBERS
      + #422: (csv) Add removeColumn() method in CsvSchema.Builder
      + #438: (csv) BigInteger and BigDecimal are quoted if
      CsvGenerator.Feature.ALWAYS_QUOTE_STRINGS enabled
      + #400: (yaml) IllegalArgumentException when attempting to
      decode invalid UTF-8 surrogate by SnakeYAML
      + #406: (yaml) NumberFormatException from SnakeYAML due to int
      overflow for corrupt YAML version
      + #435: (yaml) Minor parsing validation miss: tagged as int,
      exception on underscore-only values
      + #437: (yaml) Update SnakeYAML dependency to 2.2
* Sat Sep 09 2023 Fridrich Strba <fstrba@suse.com>
  - Reproducible builds: use SOURCE_DATE_EPOCH for timestamp
* Mon Aug 21 2023 Fridrich Strba <fstrba@suse.com>
  - Update to version 2.15.2
    * No changes since 2.15.1
    * 2.15.1 (16-May-2023)
      + #404: (yaml) Cannot serialize YAML with Deduction-Based
      Polymorphism
    * 2.15.0 (23-Apr-2023)
      + #373: (yaml) Positive numbers with plus sign not quoted
      correctly with 'ALWAYS_QUOTE_NUMBERS_AS_STRINGS'
      + #387: (toml) Stack overflow (50083) found by OSS-Fuzz
      (bsc#1214111, CVE-2023-3894)
      + #388: (yaml) Add
      'YAMLParser.Feature.PARSE_BOOLEAN_LIKE_WORDS_AS_STRINGS' to
      allow parsing "boolean" words as strings instead of booleans
      + #390: (yaml) Upgrade to Snakeyaml 2.0 (resolves CVE-2022-1471,
      bsc#1205944)
      + #411: (toml) Fuzzer-found issue #57237 (buffer boundary
      condition)
      + #415: (yaml) Use 'LoaderOptions.allowDuplicateKeys' to enforce
      duplicate key detection
    * 2.14.3 (05-May-2023)
      + #378: Some artifacts missing 'NOTICE', 'LICENSE' files
    * 2.14.2 (28-Jan-2023)
      + #356: (toml) Fix TOML parse failure when number token hits
      buffer edge
      + #370: (yaml) Replace use of deprecated constructor of
      SnakeYAML ParserImpl
    * 2.14.1 (21-Nov-2022)
      + #352: Disabling
      'CsvParser.Feature.FAIL_ON_MISSING_HEADER_COLUMNS' has no
      effect
    * 2.14.0 (05-Nov-2022)
      + #169: (properties) Need a way to escape dots in property keys
      (add path separator configuration)
      + #244: (yaml) Add 'YAMLGenerator.Feature.ALLOW_LONG_KEYS' to
      allow writing keys longer than 128 characters (default)
      + #285: (csv) Missing columns from header line (compare to
      'CsvSchema') not detected when reordering columns (add
      'CsvParser.Feature.FAIL_ON_MISSING_HEADER_COLUMNS')
      + #297: (csv) CSV schema caching POJOs with different views
      + #314: (csv) Add fast floating-point parsing, generation
      support
      + #335/#346: (yaml) Update to SnakeYAML 1.33
      + #337: (yaml) Allow overriding of file size limit for
      YAMLParser by exposing SnakeYAML 'LoaderOptions'
      + #345: (yaml) Support configuring SnakeYAML DumperOptions
      directly
      + #351: (csv) Make CSVDecoder use lazy parsing of
      BigInteger/BigDecimal
      + (yaml) Fixes to number decoding based on oss-fuzz findings
    * 2.13.5 (23-Jan-2023)
      + #343: Incorrect output buffer boundary check in 'CsvEncoder'
    * 2.13.4 (03-Sep-2022)
      + #329: (yaml) Update to SnakeYAML 1.31
* Tue Jun 14 2022 Fridrich Strba <fstrba@suse.com>
  - Initial packaging of jackson-dataformats-text 2.13.3

Files

/usr/share/doc/packages/jackson-dataformats-text
/usr/share/doc/packages/jackson-dataformats-text/CREDITS-2.x
/usr/share/doc/packages/jackson-dataformats-text/CREDITS-old-csv.txt
/usr/share/doc/packages/jackson-dataformats-text/CREDITS-old-properties.txt
/usr/share/doc/packages/jackson-dataformats-text/CREDITS-old-yaml.txt
/usr/share/doc/packages/jackson-dataformats-text/README.md
/usr/share/doc/packages/jackson-dataformats-text/VERSION-2.x
/usr/share/licenses/jackson-dataformats-text
/usr/share/licenses/jackson-dataformats-text/LICENSE
/usr/share/licenses/jackson-dataformats-text/NOTICE
/usr/share/maven-metadata/jackson-dataformats-text-jackson-dataformats-text.xml
/usr/share/maven-poms/jackson-dataformats
/usr/share/maven-poms/jackson-dataformats/jackson-dataformats-text.pom


Generated by rpm2html 1.8.1

Fabrice Bellet, Sun Aug 2 03:14:27 2026