File tree Expand file tree Collapse file tree 5 files changed +58
-1
lines changed
main/java/com/networknt/schema
test/java/com/networknt/schema Expand file tree Collapse file tree 5 files changed +58
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
9
10
10
### Changed
11
11
12
+ ## 1.0.6 - 2019-04-10
13
+
14
+ ### Added
15
+
16
+ ### Changed
17
+
18
+ - fixes #132 minimum/maximum validation of integral numbers prone to overflow. Thanks @kosty
19
+ - fixes #123 Add link to Javadocs. Thanks @rhwood
20
+
12
21
## 1.0.5 - 2019-04-01
13
22
14
23
### Added
Original file line number Diff line number Diff line change 19
19
<modelVersion >4.0.0</modelVersion >
20
20
<groupId >com.networknt</groupId >
21
21
<artifactId >json-schema-validator</artifactId >
22
- <version >1.0.5 </version >
22
+ <version >1.0.6 </version >
23
23
<packaging >bundle</packaging >
24
24
<description >A json schema validator that supports draft v4</description >
25
25
<url >https://github.com/networknt/json-schema-validator</url >
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2016 Network New Technologies Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
1
17
package com .networknt .schema ;
2
18
3
19
import com .fasterxml .jackson .databind .JsonNode ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2016 Network New Technologies Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
1
17
package com .networknt .schema ;
2
18
3
19
import com .fasterxml .jackson .databind .DeserializationFeature ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2016 Network New Technologies Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
1
17
package com .networknt .schema ;
2
18
3
19
import com .fasterxml .jackson .databind .DeserializationFeature ;
You can’t perform that action at this time.
0 commit comments