Skip to content

Commit bb518c9

Browse files
committed
v2.4.9
1 parent 5b3205d commit bb518c9

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ So I do not use my json-smart anymore. I had fun with this project. If you want
1919

2020
# Changelog
2121

22+
### *V 2.4.9*
23+
24+
* Enforce malicious input checking.
25+
2226
### *V 2.4.8*
2327

2428
* Fix the incorrect double compare with e,E+,e+ [PR 77](https://github.com/netplex/json-smart-v2/pull/77)

accessors-smart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
<modelVersion>4.0.0</modelVersion>
1818
<groupId>net.minidev</groupId>
1919
<artifactId>accessors-smart</artifactId>
20-
<version>2.4.8</version>
20+
<version>2.4.9</version>
2121
<name>ASM based accessors helper used by json-smart</name>
2222
<description>Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls.</description>
2323
<packaging>bundle</packaging>

json-smart-action/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>net.minidev</groupId>
44
<artifactId>json-smart-action</artifactId>
5-
<version>2.4.6</version>
5+
<version>2.4.9</version>
66
<name>JSON-smart-action Small and Fast Parser</name>
77
<description>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.</description>
88
<packaging>bundle</packaging>
@@ -243,7 +243,7 @@
243243
<dependency>
244244
<groupId>net.minidev</groupId>
245245
<artifactId>json-smart</artifactId>
246-
<version>2.4.8</version>
246+
<version>2.4.9</version>
247247
</dependency>
248248
</dependencies>
249249
</project>

json-smart/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
<modelVersion>4.0.0</modelVersion>
1818
<groupId>net.minidev</groupId>
1919
<artifactId>json-smart</artifactId>
20-
<version>2.4.8</version>
20+
<version>2.4.9</version>
2121
<name>JSON Small and Fast Parser</name>
2222
<description>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.</description>
2323
<packaging>bundle</packaging>
@@ -258,7 +258,7 @@ limitations under the License.
258258
<dependency>
259259
<groupId>net.minidev</groupId>
260260
<artifactId>accessors-smart</artifactId>
261-
<version>2.4.8</version>
261+
<version>2.4.9</version>
262262
</dependency>
263263
</dependencies>
264264
</project>

0 commit comments

Comments
 (0)