Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 12, 2023

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
org.reflections:reflections 0.9.12 -> 0.10.2 age confidence
com.bazaarvoice.jolt:json-utils (source) 0.1.0 -> 0.1.8 age confidence
com.bazaarvoice.jolt:jolt-core (source) 0.1.0 -> 0.1.8 age confidence
org.msgpack:msgpack-core (source) 0.8.13 -> 0.9.10 age confidence

Release Notes

ronmamo/reflections (org.reflections:reflections)

v0.10.2

Compare Source

reflections-0.10.2

v0.10.1

Compare Source

reflections-0.10.1

  • 0.10.1 - fix exception in JavassistHelper.getParametersAnnotations, docs
  • ci: Setup GitHub actions for basic PR CI (#​333)
  • Make the path format to be platform-compatible (#​299)
  • enable Dependabot v2 (#​319)
  • Enable automatic module name (#​308)

known issue #​351: deprecated scanners are using wrong index name :( which results in empty query results. will be solved in next release. workaround/solution: migrate to the new Scanners

v0.10

Compare Source

reflections-0.10 refactor

known issue #​337: annotation not marked with Retention(RUNTIME) will be excluded because of an exception

msgpack/msgpack-java (org.msgpack:msgpack-core)

v0.9.10

Compare Source

What's Changed

🔥 Breaking Changes
🚀 Features
🐛 Bug Fixes
🔗 Dependency Updates
🛠 Internal Updates
📚 Docs
Other Changes

New Contributors

Full Changelog: msgpack/msgpack-java@v0.9.9...v0.9.10

v0.9.9

Compare Source

What's Changed

🔗 Dependency Updates
🛠 Internal Updates
Other Changes

Full Changelog: msgpack/msgpack-java@v0.9.8...v0.9.9

v0.9.8

Compare Source

What's Changed

🔥 Breaking Changes
🐛 Bug Fixes
🔗 Dependency Updates
🛠 Internal Updates

Full Changelog: msgpack/msgpack-java@v0.9.7...v0.9.8

v0.9.7

Compare Source

What's Changed

🐛 Bug Fixes
🔗 Dependency Updates
🛠 Internal Updates
📚 Docs

New Contributors

Full Changelog: msgpack/msgpack-java@v0.9.6...v0.9.7

v0.9.6

Compare Source

What's Changed

🔥 Breaking Changes

Important: If you need to use DirectByteBuffer (raw memory access) in JDK17 or later, specify two JVM options to allow access to native memory:

--add-opens=java.base/java.nio=ALL-UNNAMED
--add-opens=java.base/sun.nio.ch=ALL-UNNAMED
🔗 Dependency Updates
🛠 Internal Updates
📚 Docs

New Contributors

Full Changelog: msgpack/msgpack-java@v0.9.5...v0.9.6

v0.9.5

Compare Source

What's Changed

🐛 Bug Fixes

  • core (fix): Fix MessageUnpacker.unpackValue to check the custom stringSizeLimit @​xerial (#​753)

🔗 Dependency Updates

🛠 Internal Updates

Full Changelog: msgpack/msgpack-java@v0.9.4...v0.9.5

v0.9.4

Compare Source

What's Changed

🔥 Breaking Changes

🚀 Features

🔗 Dependency Updates

🛠 Internal Updates

📚 Docs

Full Changelog: msgpack/msgpack-java@v0.9.3...v0.9.4

v0.9.3

Compare Source

This version supports JDK17 #​660.

Important: If you need to use DirectByteBuffer (raw memory access) in JDK17 or later, specify two JVM options to allow accessing
native memory:

--add-opens=java.base/java.nio=ALL-UNNAMED
--add-opens=java.base/sun.nio.ch=ALL-UNNAMED

Internal updates:

  • Use SPDX-ID in license name #​653
  • Update airframe-json, airspec to 22.6.4 #​659
  • Update akka-actor to 2.6.19 #​647

v0.9.2

Compare Source

Internal updates:

  • Update jackson-databind to 2.13.3 #​650
  • Update akka-actor to 2.6.19 #​631
  • Update airframe-json, airspec to 22.6.1 #​649
  • Update scalacheck to 1.16.0 #​636
  • Update scala-collection-compat to 2.7.0 #​632
  • Update sbt-sonatype to 3.9.13 #​644
  • Update airframe-json, airspec to 22.5.0 #​643
  • Update sbt to 1.6.2 #​630

v0.9.1

Compare Source

Bug fixes and improvements:

Internal updates:

Known issues:

  • Unpack method doesn't work in JDK17 #​600

v0.9.0

Compare Source

This version support reading and writing Timestamp values.
Packer and unpacker interfaces added pack/unpackTimestamp methods.

Timestamp value in MessagePack is an extension type value whose code is -1. You can read TimestampValue object with MessgageUnapcker.unpackValue method.
If you are using low-level unpack methods (e.g., unpackInt, unpackExtension, etc.),
you need to read unpackExtensionHeader first, and if extHeader.isTimestampType() is true, call unpackTimestamp(extHeader).

Timestamp values are represented with java.time.Instant objects.
You can extract the unixtime value with Instant.getEpochSecond(), unixtime with milliseconds resolution with Instant.toEpochMilli(), and nano-resolution time with Instant.getNano().

As TimestampValue is just a sub class of ExtensionValue, no change requierd in your code that are traversing MessagePack data with MessageUnpacker.unpackValue method.

  • Added Timestamp support #​565 and low-level APIs #​580 for
    reading timestamp values.

Dependency updates:

  • Update jackson-databind to 2.10.5.1 #​559

Internal updates:

  • Update akka-actor to 2.6.14 #​579
  • Fix for Scala 2.13 syntax #​577
  • Update airframe-json, airspec to 21.6.0 #​576
  • Update scala-library to 2.13.6 #​568
  • Update sbt to 1.5.3 #​575

v0.8.24

Compare Source

  • Rebuild with JDK8 for Android compatibility #​567

v0.8.23

Compare Source

  • Produce stable map values #​548
  • Fixes #​544: Fix a bug in reading EXT32 of 2GB size #​545
  • Add a warning note for the usage of MessageUnpacker.readPayloadAsReference #​546

Intenral changes:

  • Add a script for releasing a new version of msgpack-java at CI
  • Publish a snapshot version for every main branch commit #​556
  • Use dynamic versioning with Git tags v0.x.y format #​555
  • Update ScalaTest and ScalaCheck versions #​554
  • Remove findbugs #​553
  • Update build settings to use latest version of sbt and plugins #​552
  • Run GitHub Actions for develop and main branches #​551
  • Remove Travis build #​550

v0.8.22

Compare Source

  • Support extension type key in Map #​535
  • Remove addTargetClass() and addTargetTypeReference() from ExtensionTypeCustomDeserializers #​539
  • Fix a bug BigDecimal serializaion fails #​540

v0.8.21

Compare Source

  • Fix indexing bug in ValueFactory #​525
  • Support numeric types in MessagePackParser.getText() #​527
  • Use jackson-databind 2.10.5 for security vulnerability #​528
  • (internal) Ensure building msgpack-java for Java 7 target #​523

v0.8.20

Compare Source

  • Rebuild 0.8.19 with JDK8

v0.8.19

Compare Source

  • Support JDK11
  • msgpack-jackson: Fixes #​515

v0.8.18

Compare Source

  • (internal) Update sbt related dependencies #​507
  • Use jackson-databind 2.9.9.3 for security vulnerability #​511

v0.8.17

Compare Source

  • Fix OOM exception for invalid msgpack messages #​500
  • Use jackson-databind 2.9.9 for security vulnerability #​505

v0.8.16

Compare Source

  • Fix NPE at ObjectMapper#copy with MessagePackFactory when ExtensionTypeCustomDeserializers isn't set #​471

v0.8.15

Compare Source

  • Suppress a warning in ValueFactory #​457
  • Add MessagePacker#clear() method to clear position #​459
  • Support ObjectMapper#copy with MessagePackFactory #​454
  • Use jackson-databind 2.8.11.1 for security vulnerability #​467
  • (internal) Remove "-target:jvm-1.7" from scalacOptions #​456
  • (internal) Replace sbt test-only command with testOnly #​445
  • (internal) Use JavaConverters instead of JavaConversions in unit tests #​446

v0.8.14

Compare Source

  • Add MessageUnpacker.tryUnpackNil() for peeking whether the next value is nil or not.
  • Add MessageBufferPacker.getBufferSize().
  • Improved MessageUnpacker.readPayload performance #​436
  • Fixed a bug that ChannelBufferInput#next blocks until the buffer is filled. #​428
  • (internal) Upgraded to sbt-1.0.4 for better Java9 support
  • (internal) Dropped Java7 tests on TravisCI, but msgpack-java is still built for Java7 (1.7) target

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner October 12, 2023 05:58
@renovate renovate bot force-pushed the renovate/all-maven-minor-patch branch from 316c6d5 to d0bfee0 Compare January 10, 2024 02:22
@renovate renovate bot force-pushed the renovate/all-maven-minor-patch branch from d0bfee0 to 9310c47 Compare January 22, 2024 05:45
@renovate renovate bot force-pushed the renovate/all-maven-minor-patch branch 2 times, most recently from de5026b to 39a6d91 Compare June 25, 2024 08:03
@renovate renovate bot force-pushed the renovate/all-maven-minor-patch branch from 39a6d91 to 5bf3de7 Compare August 16, 2024 08:01
@renovate renovate bot force-pushed the renovate/all-maven-minor-patch branch from 5bf3de7 to 806071c Compare January 10, 2025 03:18
@renovate renovate bot force-pushed the renovate/all-maven-minor-patch branch from 806071c to efde601 Compare July 27, 2025 19:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants