From 69354a047e789c9bf5f24dcb4ace4875d0569e9b Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sat, 13 Jan 2024 01:34:40 +0100 Subject: [PATCH 1/7] Update sbt to 1.9.8 (#790) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index d9282559..e5ca1ff5 100755 --- a/project/build.properties +++ b/project/build.properties @@ -1,2 +1,2 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 From dc7d6031aaa603db3f622c54da7a8feb6fb256c2 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sat, 13 Jan 2024 01:34:49 +0100 Subject: [PATCH 2/7] Update sbt-osgi to 0.9.10 (#789) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ba0a0c26..7f518088 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") // java.lang.NoClassDefFoundError: Could not initialize class org.jacoco.core.internal.flow.ClassProbesAdapter //addSbtPlugin("com.github.sbt" % "sbt-jacoco" % "3.3.0") addSbtPlugin("org.xerial.sbt" % "sbt-jcheckstyle" % "0.2.1") -addSbtPlugin("com.github.sbt" % "sbt-osgi" % "0.9.9") +addSbtPlugin("com.github.sbt" % "sbt-osgi" % "0.9.10") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1") From cedc35ceaef2ae0ea67a9a9df3747c4d18d70a3e Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sat, 13 Jan 2024 01:34:57 +0100 Subject: [PATCH 3/7] Update airframe-json, airspec to 23.12.1 (#791) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index dc5a2c23..77dd06dd 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ Global / concurrentRestrictions := Seq( Tags.limit(Tags.Test, 1) ) -val AIRFRAME_VERSION = "23.11.3" +val AIRFRAME_VERSION = "23.12.1" // Use dynamic snapshot version strings for non tagged versions ThisBuild / dynverSonatypeSnapshots := true From a1a61f855b46e60e6fa3de7c6ffec7e7f03eb666 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sun, 14 Jan 2024 22:27:46 +0100 Subject: [PATCH 4/7] Update airframe-json, airspec to 24.1.0 (#792) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 77dd06dd..9716d20c 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ Global / concurrentRestrictions := Seq( Tags.limit(Tags.Test, 1) ) -val AIRFRAME_VERSION = "23.12.1" +val AIRFRAME_VERSION = "24.1.0" // Use dynamic snapshot version strings for non tagged versions ThisBuild / dynverSonatypeSnapshots := true From 42daf717347d774b478a8ab0950c7f8a4c816534 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 18 Jan 2024 19:22:18 +0100 Subject: [PATCH 5/7] Update airframe-json, airspec to 24.1.1 (#793) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 9716d20c..4ad39cd8 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ Global / concurrentRestrictions := Seq( Tags.limit(Tags.Test, 1) ) -val AIRFRAME_VERSION = "24.1.0" +val AIRFRAME_VERSION = "24.1.1" // Use dynamic snapshot version strings for non tagged versions ThisBuild / dynverSonatypeSnapshots := true From 4bdaf8e35f130e561ca964b578bbe696c4d1dd9f Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 18 Jan 2024 19:23:33 +0100 Subject: [PATCH 6/7] Update jackson-databind to 2.16.1 (#788) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 4ad39cd8..3bfc9133 100644 --- a/build.sbt +++ b/build.sbt @@ -109,7 +109,7 @@ lazy val msgpackJackson = "org.msgpack.jackson.dataformat" ), libraryDependencies ++= Seq( - "com.fasterxml.jackson.core" % "jackson-databind" % "2.15.3", + "com.fasterxml.jackson.core" % "jackson-databind" % "2.16.1", junitInterface, "org.apache.commons" % "commons-math3" % "3.6.1" % "test" ), From 480fd736bac5b02657c566af2d32a0674c64d370 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sun, 21 Jan 2024 14:49:03 +0900 Subject: [PATCH 7/7] Fix ClassCastException when array values is set as List (#794) --- msgpack-core/src/main/java/org/msgpack/value/Variable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msgpack-core/src/main/java/org/msgpack/value/Variable.java b/msgpack-core/src/main/java/org/msgpack/value/Variable.java index ae88170c..85d2fb3b 100644 --- a/msgpack-core/src/main/java/org/msgpack/value/Variable.java +++ b/msgpack-core/src/main/java/org/msgpack/value/Variable.java @@ -817,7 +817,7 @@ public Variable setArrayValue(List v) { this.type = Type.LIST; this.accessor = arrayAccessor; - this.objectValue = v.toArray(); + this.objectValue = v.toArray(new Value[v.size()]); return this; } pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy