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

Update dependency org.msgpack:msgpack-core to v0.9.8 #77

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 26, 2020

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.msgpack:msgpack-core (source) 0.8.20 -> 0.9.8 age adoption passing confidence

Release Notes

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

v0.9.8

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

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

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

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

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

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

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

Bug fixes and improvements:

Internal updates:

Known issues:

v0.9.0

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

  • Rebuild with JDK8 for Android compatibility #​567

v0.8.23

  • 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

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@github-actions github-actions bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 583c2b2 to 830cc76 Compare November 26, 2020 02:04
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.8.21 Update dependency org.msgpack:msgpack-core to v0.8.22 Jan 6, 2021
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 830cc76 to 224795c Compare January 6, 2021 02:59
@github-actions github-actions bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 224795c to 7af1766 Compare January 6, 2021 03:00
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 7af1766 to 8d5f2c2 Compare May 15, 2021 19:23
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.8.22 Update dependency org.msgpack:msgpack-core to v0.8.23 May 15, 2021
@github-actions github-actions bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 8d5f2c2 to 59815e7 Compare May 15, 2021 19:23
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 59815e7 to 4720bea Compare June 6, 2021 21:26
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.8.23 Update dependency org.msgpack:msgpack-core to v0.8.24 Jun 6, 2021
@github-actions github-actions bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 4720bea to 46a9496 Compare June 6, 2021 21:27
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 46a9496 to 542b395 Compare June 12, 2021 17:11
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.8.24 Update dependency org.msgpack:msgpack-core to v0.9.0 Jun 12, 2021
@github-actions github-actions bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 542b395 to 1a97eaa Compare June 12, 2021 17:12
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 1a97eaa to ce5a2db Compare March 26, 2022 14:27
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.9.0 Update dependency org.msgpack:msgpack-core to v0.9.1 Mar 26, 2022
@renovate
Copy link
Author

renovate bot commented Mar 26, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: build.gradle
Post-upgrade command './gradlew dependencies --write-locks' has not been added to the allowed list in allowedPostUpgradeCommands

@github-actions github-actions bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from ce5a2db to abd4df3 Compare March 26, 2022 14:27
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from abd4df3 to 30f30b1 Compare June 18, 2022 16:20
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.9.1 Update dependency org.msgpack:msgpack-core to v0.9.2 Jun 18, 2022
@github-actions github-actions bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 30f30b1 to 76ac50f Compare June 18, 2022 16:20
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 76ac50f to 61bb408 Compare September 25, 2022 22:49
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.9.2 Update dependency org.msgpack:msgpack-core to v0.9.3 Sep 25, 2022
@github-actions github-actions bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 61bb408 to c977b74 Compare September 25, 2022 22:49
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from c977b74 to e0dbddb Compare July 11, 2023 14:42
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.9.3 Update dependency org.msgpack:msgpack-core to v0.9.4 Jul 11, 2023
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from e0dbddb to 2762953 Compare July 31, 2023 18:07
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.9.4 Update dependency org.msgpack:msgpack-core to v0.9.5 Jul 31, 2023
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 2762953 to 54fb7e6 Compare September 24, 2023 06:27
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.9.5 Update dependency org.msgpack:msgpack-core to v0.9.6 Sep 24, 2023
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from 54fb7e6 to d72098a Compare January 10, 2024 02:54
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.9.6 Update dependency org.msgpack:msgpack-core to v0.9.7 Jan 10, 2024
@renovate renovate bot force-pushed the renovate/org.msgpack-msgpack-core-0.x branch from d72098a to ddef838 Compare January 21, 2024 07:34
@renovate renovate bot changed the title Update dependency org.msgpack:msgpack-core to v0.9.7 Update dependency org.msgpack:msgpack-core to v0.9.8 Jan 21, 2024
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