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

Bump the all group with 5 updates #1009

Merged
merged 1 commit into from
Jan 13, 2025
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 13, 2025

Bumps the all group with 5 updates:

Package From To
org.bouncycastle:bcpkix-jdk18on 1.78.1 1.79
org.flywaydb:flyway-database-postgresql 11.1.0 11.1.1
org.jooq:jooq-codegen 3.19.16 3.19.17
org.jooq:jooq 3.19.16 3.19.17
io.github.pdvrieze.xmlutil:serialization 0.90.1 0.90.3

Updates org.bouncycastle:bcpkix-jdk18on from 1.78.1 to 1.79

Changelog

Sourced from org.bouncycastle:bcpkix-jdk18on's changelog.

2.1.1 Version Release: 1.80 Date:      TBD.

2.2.1 Version Release: 1.79 Date:      2024, 30th October.

... (truncated)

Commits

Updates org.flywaydb:flyway-database-postgresql from 11.1.0 to 11.1.1

Updates org.jooq:jooq-codegen from 3.19.16 to 3.19.17

Updates org.jooq:jooq from 3.19.16 to 3.19.17

Updates org.jooq:jooq from 3.19.16 to 3.19.17

Updates io.github.pdvrieze.xmlutil:serialization from 0.90.1 to 0.90.3

Release notes

Sourced from io.github.pdvrieze.xmlutil:serialization's releases.

0.90.3 – All at the same time

Changes:

  • In pedantic mode check that xml/xmlns are not used as names (they are always invalid). Note that namespaces can be specified using @XmlSerialName (for tags) and @XmlNamespaceDeclSpec (for additional names).
  • The cache to use can now be configured. By default it uses the threadLocal version, but the thread unsafe default is also available, as is the FormatCache.Dummy cache that does no caching.

Fixes:

  • Fix support for multiple namespaces inside a single tag (QNameMap) as reported in #249.
  • Use threadlocals for caching document structures by default. This should avoid multithreading issues when reusing the format (recommended for speed)

0.90.2 Mooor Rocketpower!

Changes:

  • Update to Kotlin 2.0.21 / Kotlinx.serialization 1.7.3
  • Add support for Android native targets (@​whyoleg in #242)

And all changes from 0.90.2-beta1:

Changes:

  • Update to Kotlin 2.0.20 / kotlinx.serialization 1.7.2
  • Extensive optimization of decoding (serialization), parsing (KtXmlReader) including the creation of the xmlDescriptors.
  • Add a new preset fast for a config/policy that chooses speed over verification (such as element order). It still requires "correct" xml files.
  • Add "work in progress" xml schema module to the dev branch. This is not yet ready for release (but will parse most xml schemas)
  • Have the XmlReader.{version,standalone,encoding} properties be retained by all readers (as existing parsers behave); reading these values before the document declaration was seen (or known to not be present) is non-deterministic.
  • Make the value of the depth property of XmlReader consistent for EndElement values. The depth of an endEvent uses the android XmlPullParser semantics
  • In the case of a polymorphic value child (or list of polymorphic children as value child), when an unknown tag is encountered, allow this to be matched against a single! XmlSerializer from the module. This aids #225.
  • Capture format parsing errors in XmlParsingException #228

Fixes:

  • Fix siblingsToFragment for native/js so that it terminates on end of stream, even if this doesn't include DocumentEnd event.
  • Make @XmlValue work with regular types (to support generic parsing of element content of variable type, some including mixed/text content)

... (truncated)

Changelog

Sourced from io.github.pdvrieze.xmlutil:serialization's changelog.

0.90.3

Changes:

  • In pedantic mode check that xml/xmlns are not used as names (they are always invalid). Note that namespaces can be specified using @XmlSerialName (for tags) and @XmlNamespaceDeclSpec (for additional names).
  • The cache to use can now be configured. By default it uses the threadLocal version, but the thread unsafe default is also available, as is the FormatCache.Dummy cache that does no caching. Fixes:
  • Fix support for multiple namespaces inside a single tag (QNameMap) as reported in #249.
  • Use threadlocals for caching document structures by default. This should avoid multithreading issues when reusing the format (recommended for speed)

0.90.2 Mooor Rocketpower!

Changes:

  • Update to Kotlin 2.0.21 / Kotlinx.serialization 1.7.3
  • Add support for Android native targets (@​whyoleg in #242)

0.90.2-beta1 Rocketpower!

Changes:

  • Update to Kotlin 2.0.20 / kotlinx.serialization 1.7.2
  • Extensive optimization of decoding (serialization), parsing (KtXmlReader) including the creation of the xmlDescriptors.
  • Add a new preset fast for a config/policy that chooses speed over verification (such as element order). It still requires "correct" xml files.
  • Add "work in progress" xml schema module to the dev branch. This is not yet ready for release (but will parse most xml schemas)
  • Have the XmlReader.{version,standalone,encoding} properties be retained by all readers (as existing parsers behave); reading these values before the document declaration was seen (or known to not be present) is non-deterministic.
  • Make the value of the depth property of XmlReader consistent for EndElement values. The depth of an endEvent uses the android XmlPullParser semantics
  • In the case of a polymorphic value child (or list of polymorphic children as value child), when an unknown tag is encountered, allow this to be matched against a single! XmlSerializer from the module. This aids #225.
  • Capture format parsing errors in XmlParsingException #228

Fixes:

  • Fix siblingsToFragment for native/js so that it terminates on end of stream, even if this doesn't include DocumentEnd event.
  • Make @XmlValue work with regular types (to support generic parsing of element content of variable type, some including mixed/text content) – probably also fixes #238.
  • Better support @XmlSerialName where value (localname) is defaulted.

... (truncated)

Commits
  • 6ba77c9 Merge branch 'dev'
  • d375efb Record other unrecorded changes.
  • 2d36433 Fix #249, caused by an error in QNameMap's auto-reordering.
  • 1932c21 Add some examples for union types (success/error)
  • 1cdbaff Don't allow xml/xmlns as names in pedantic mode (it has surprising
  • 54e3100 Add optin
  • 8c9d35f For threadlocal format caches use the fact that (de)serialization is
  • 88a53c7 Make the format cache accessible and configurable. Also implement
  • bf56f6d Merge branch 'master' into dev
  • cd11406 Update the documentation for 0.90.2
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [org.bouncycastle:bcpkix-jdk18on](https://github.com/bcgit/bc-java) | `1.78.1` | `1.79` |
| org.flywaydb:flyway-database-postgresql | `11.1.0` | `11.1.1` |
| org.jooq:jooq-codegen | `3.19.16` | `3.19.17` |
| org.jooq:jooq | `3.19.16` | `3.19.17` |
| [io.github.pdvrieze.xmlutil:serialization](https://github.com/pdvrieze/xmlutil) | `0.90.1` | `0.90.3` |


Updates `org.bouncycastle:bcpkix-jdk18on` from 1.78.1 to 1.79
- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)
- [Commits](https://github.com/bcgit/bc-java/commits)

Updates `org.flywaydb:flyway-database-postgresql` from 11.1.0 to 11.1.1

Updates `org.jooq:jooq-codegen` from 3.19.16 to 3.19.17

Updates `org.jooq:jooq` from 3.19.16 to 3.19.17

Updates `org.jooq:jooq` from 3.19.16 to 3.19.17

Updates `io.github.pdvrieze.xmlutil:serialization` from 0.90.1 to 0.90.3
- [Release notes](https://github.com/pdvrieze/xmlutil/releases)
- [Changelog](https://github.com/pdvrieze/xmlutil/blob/master/Changelog.md)
- [Commits](pdvrieze/xmlutil@v0.90.1...v0.90.3)

---
updated-dependencies:
- dependency-name: org.bouncycastle:bcpkix-jdk18on
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: org.flywaydb:flyway-database-postgresql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: org.jooq:jooq-codegen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: org.jooq:jooq
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: org.jooq:jooq
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.github.pdvrieze.xmlutil:serialization
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file kotlin Pull requests that update Kotlin code labels Jan 13, 2025
@IRus IRus merged commit e34c98d into main Jan 13, 2025
9 of 11 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/all-b83613023f branch January 13, 2025 08:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file kotlin Pull requests that update Kotlin code
Development

Successfully merging this pull request may close these issues.

1 participant