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 xmlutil from 0.86.3 to 0.90.1 #153

Merged
merged 2 commits into from
Aug 28, 2024
Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps xmlutil from 0.86.3 to 0.90.1.
Updates io.github.pdvrieze.xmlutil:core from 0.86.3 to 0.90.1

Release notes

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

0.90.1 - Fix Android

  • Fix an incorrect dependency in the Android serialization module

0.90.0-RC3 – The third time wins (right?)

  • Fix issues with dependencies in new layout (#209) - XMPCore now builds/resolves.

Full Changelog: pdvrieze/xmlutil@v0.90.0-RC2...v0.90.0-RC3

0.90.0-RC2 – Trying again

Attempt to make sure that the gradle configuration/dependencies work correctly.

  • Make xmlstreaming (used by serialization) safe for multithreading by not storing service loaders globally (#211)
Changelog

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

0.90.1 Fix Android

  • Fix android plugin dependency.

0.90.0 2.0 will go

*(June 13, 2024) Changes:

  • The core module no longer automatically includes Android/Jvm "native" parsers by default, but uses the platform independent implementation. The Android/Jvm native parsers are available by including "core-jvm" and "core-android" packages. Note that serialization-jvm and serialization-android do so already.
  • There is a coreCompat package that provides the original setup as direct replacement for core. This is a temporary package that will be removed at 1.0 release.

0.90.0-RC3

  • Fix issues with dependencies in new layout (#209) - XMPCore now builds/resolves.

0.90.0-RC2

Fixes:

  • Fix multithreading initialization on JVM targets, serviceLoaders are not thread-safe (#211).

0.90.0-RC1 – Supporting 2.0

Changes:

  • Build with Kotlin 2.0.0
  • The core module has been changed to use default implementations for Java interfaces. This could cause binary compatibility issues in rare cases (when called from Java).
  • The core module has been modified to move the code in to base, except for Android and JDK specific code. The Android and JDK code have been put in separate modules and are no longer mandatory (the code falls back to the generic parsers/serializers). Core is now a dependency only module that pulls in the specific modules (for compatibility).
  • Make automatic encoding detection the default/recommended, and add some changes to make this work better. Thanks to @​sschuberth in (#206).
  • Separate the tag and attribute namespace (allowing the same name as attribute and element).
  • Explicitly check for duplicate names in decoding.
  • Support the use of contextual serializers (#208). This means that contextual serializers are eluded.

Features:

  • Extend applicability of @XmlValue on a list/map to capture any serializer. Note that the specific serializer will need to be able to handle the xml content (will need to be )
  • Generalize support for "special" serializers that treat XML

... (truncated)

Commits
  • 805e46d Update to 0.90.1.
  • f89843d Remove explicit dependency on the core (Android) variant as that no longer ex...
  • 6e7281e Tidy up warnings in the code.
  • 12ab73b Fix all warnings for js
  • 8695d9d Fix all warnings for jvmJar/jvmCommonJar
  • e1f1077 Tidy up the project plugin for 2.0. Use the old Volatile annotation
  • f5b70dd Merge branch 'refs/heads/master' into dev
  • 9e5ce8a Mark new version.
  • 6f7dae7 Update the readme/changelog
  • 1906097 Merge branch 'refs/heads/dev'
  • Additional commits viewable in compare view

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

Release notes

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

0.90.1 - Fix Android

  • Fix an incorrect dependency in the Android serialization module

0.90.0-RC3 – The third time wins (right?)

  • Fix issues with dependencies in new layout (#209) - XMPCore now builds/resolves.

Full Changelog: pdvrieze/xmlutil@v0.90.0-RC2...v0.90.0-RC3

0.90.0-RC2 – Trying again

Attempt to make sure that the gradle configuration/dependencies work correctly.

  • Make xmlstreaming (used by serialization) safe for multithreading by not storing service loaders globally (#211)
Changelog

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

0.90.1 Fix Android

  • Fix android plugin dependency.

0.90.0 2.0 will go

*(June 13, 2024) Changes:

  • The core module no longer automatically includes Android/Jvm "native" parsers by default, but uses the platform independent implementation. The Android/Jvm native parsers are available by including "core-jvm" and "core-android" packages. Note that serialization-jvm and serialization-android do so already.
  • There is a coreCompat package that provides the original setup as direct replacement for core. This is a temporary package that will be removed at 1.0 release.

0.90.0-RC3

  • Fix issues with dependencies in new layout (#209) - XMPCore now builds/resolves.

0.90.0-RC2

Fixes:

  • Fix multithreading initialization on JVM targets, serviceLoaders are not thread-safe (#211).

0.90.0-RC1 – Supporting 2.0

Changes:

  • Build with Kotlin 2.0.0
  • The core module has been changed to use default implementations for Java interfaces. This could cause binary compatibility issues in rare cases (when called from Java).
  • The core module has been modified to move the code in to base, except for Android and JDK specific code. The Android and JDK code have been put in separate modules and are no longer mandatory (the code falls back to the generic parsers/serializers). Core is now a dependency only module that pulls in the specific modules (for compatibility).
  • Make automatic encoding detection the default/recommended, and add some changes to make this work better. Thanks to @​sschuberth in (#206).
  • Separate the tag and attribute namespace (allowing the same name as attribute and element).
  • Explicitly check for duplicate names in decoding.
  • Support the use of contextual serializers (#208). This means that contextual serializers are eluded.

Features:

  • Extend applicability of @XmlValue on a list/map to capture any serializer. Note that the specific serializer will need to be able to handle the xml content (will need to be )
  • Generalize support for "special" serializers that treat XML

... (truncated)

Commits
  • 805e46d Update to 0.90.1.
  • f89843d Remove explicit dependency on the core (Android) variant as that no longer ex...
  • 6e7281e Tidy up warnings in the code.
  • 12ab73b Fix all warnings for js
  • 8695d9d Fix all warnings for jvmJar/jvmCommonJar
  • e1f1077 Tidy up the project plugin for 2.0. Use the old Volatile annotation
  • f5b70dd Merge branch 'refs/heads/master' into dev
  • 9e5ce8a Mark new version.
  • 6f7dae7 Update the readme/changelog
  • 1906097 Merge branch 'refs/heads/dev'
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps `xmlutil` from 0.86.3 to 0.90.1.

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

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

---
updated-dependencies:
- dependency-name: io.github.pdvrieze.xmlutil:core
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.github.pdvrieze.xmlutil:serialization
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jun 17, 2024
@ZacSweers ZacSweers merged commit 068f3c8 into main Aug 28, 2024
2 checks passed
@ZacSweers ZacSweers deleted the dependabot/gradle/xmlutil-0.90.1 branch August 28, 2024 18:55
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 java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant