diff --git a/README.md b/README.md index 6abf2aa..4b70e78 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,10 @@ So I do not use my json-smart anymore. I had fun with this project. If you want # Changelog +### *V 2.6.0* (next version) + +* JSONObject merge support overwrite as parameter. [PR 238](https://github.com/netplex/json-smart-v2/pull/238) + ### *V 2.5.2* (2025-02-12) * Fix CVE-2024-57699 for predefined parsers. [PR 233](https://github.com/netplex/json-smart-v2/pull/233) diff --git a/accessors-smart/pom.xml b/accessors-smart/pom.xml index 3bea80a..96fec44 100644 --- a/accessors-smart/pom.xml +++ b/accessors-smart/pom.xml @@ -17,7 +17,7 @@ limitations under the License. 4.0.0 net.minidev accessors-smart - 2.5.2 + 2.6.0-SNAPSHOT ASM based accessors helper used by json-smart Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls. bundle diff --git a/json-smart-action/pom.xml b/json-smart-action/pom.xml index 41e5c13..ddb8256 100644 --- a/json-smart-action/pom.xml +++ b/json-smart-action/pom.xml @@ -2,7 +2,7 @@ 4.0.0 net.minidev json-smart-action - 2.5.2 + 2.6.0-SNAPSHOT JSON-smart-action Small and Fast Parser JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language. bundle @@ -252,7 +252,7 @@ net.minidev json-smart - 2.5.2 + 2.6.0-SNAPSHOT diff --git a/json-smart/pom.xml b/json-smart/pom.xml index 4fae711..f34b0ae 100644 --- a/json-smart/pom.xml +++ b/json-smart/pom.xml @@ -17,7 +17,7 @@ limitations under the License. 4.0.0 net.minidev json-smart - 2.5.2 + 2.6.0-SNAPSHOT JSON Small and Fast Parser JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language. bundle @@ -273,7 +273,7 @@ limitations under the License. net.minidev accessors-smart - 2.5.2 + 2.6.0-SNAPSHOT