Publish v5.32.4
This commit is contained in:
parent
70b7e7914b
commit
b781a47702
12
HISTORY.md
12
HISTORY.md
|
@ -3,18 +3,18 @@
|
|||
https://github.com/josdejong/jsoneditor
|
||||
|
||||
|
||||
## not yet published, version 5.32.4
|
||||
## 2019-04-10, version 5.32.4
|
||||
|
||||
- Fixed #663 and #682: JSONEditor not being able to handle JSON schema
|
||||
- Fixed #682 and #687: JSONEditor not being able to handle JSON schema
|
||||
validation errors when the root of the document is an Array. Thanks @DusuWen.
|
||||
|
||||
|
||||
## 2018-04-04, version 5.32.3
|
||||
## 2019-04-04, version 5.32.3
|
||||
|
||||
- Fix #684: `const` used in bundled library.
|
||||
- Fixed #684: `const` used in bundled library.
|
||||
|
||||
|
||||
## 2018-04-03, version 5.32.2
|
||||
## 2019-04-03, version 5.32.2
|
||||
|
||||
- Fixed #416: Clipped action menu for append nodes.
|
||||
- Improve detection of value type in transform modal.
|
||||
|
@ -25,7 +25,7 @@ https://github.com/josdejong/jsoneditor
|
|||
values to be cleared when used as a controlled component in for example React.
|
||||
|
||||
|
||||
## 2018-03-28, version 5.32.1
|
||||
## 2019-03-28, version 5.32.1
|
||||
|
||||
- Fixed a regression in parsing JSON paths: numbers where parsed as strings
|
||||
instead of a numeric value. See #679. Thanks @AdamVig.
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
* Copyright (c) 2011-2019 Jos de Jong, http://jsoneditoronline.org
|
||||
*
|
||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||
* @version 5.32.3
|
||||
* @date 2019-04-04
|
||||
* @version 5.32.4
|
||||
* @date 2019-04-10
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
|
@ -4513,7 +4513,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
i++;
|
||||
path.push(parseProperty());
|
||||
}
|
||||
else if (i > 0 && jsonPath[i] === '[') {
|
||||
else if (jsonPath[i] === '[') {
|
||||
i++;
|
||||
|
||||
if (jsonPath[i] === '\'' || jsonPath[i] === '"') {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -24,8 +24,8 @@
|
|||
* Copyright (c) 2011-2019 Jos de Jong, http://jsoneditoronline.org
|
||||
*
|
||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||
* @version 5.32.3
|
||||
* @date 2019-04-04
|
||||
* @version 5.32.4
|
||||
* @date 2019-04-10
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
|
@ -33155,7 +33155,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|||
i++;
|
||||
path.push(parseProperty());
|
||||
}
|
||||
else if (i > 0 && jsonPath[i] === '[') {
|
||||
else if (jsonPath[i] === '[') {
|
||||
i++;
|
||||
|
||||
if (jsonPath[i] === '\'' || jsonPath[i] === '"') {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "5.32.3",
|
||||
"version": "5.32.4",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "5.32.3",
|
||||
"version": "5.32.4",
|
||||
"main": "./index",
|
||||
"description": "A web-based tool to view, edit, format, and validate JSON",
|
||||
"tags": [
|
||||
|
|
Loading…
Reference in New Issue