File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed
src/main/java/co/ipregistry/api/client/model Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 3.6.0] - 2022-04-11
11+ ### Added
12+ - New ` vpn ` field in ` security ` object.
13+
1014## [ 3.5.0] - 2021-12-21
1115### Added
12- - New ` relay ` field in ` security ` data .
16+ - New ` relay ` field in ` security ` object .
1317### Deprecated
1418- Deprecate ` IpregistryConfigBuilder.apiUrl ` in favor of ` IpregistryConfigBuilder.baseUrl ` .
1519
@@ -123,7 +127,8 @@ https://github.com/ipregistry/ipregistry-java#caching
123127## [ 1.0.0] - 2019-07-03
124128- First public release.
125129
126- [ Unreleased ] : https://github.com/ipregistry/ipregistry-java/compare/v3.5.0...HEAD
130+ [ Unreleased ] : https://github.com/ipregistry/ipregistry-java/compare/v3.6.0...HEAD
131+ [ 3.6.0 ] : https://github.com/ipregistry/ipregistry-java/compare/v3.5.0...v3.6.0
127132[ 3.5.0 ] : https://github.com/ipregistry/ipregistry-java/compare/v3.4.0...v3.5.0
128133[ 3.4.0 ] : https://github.com/ipregistry/ipregistry-java/compare/v3.3.0...v3.4.0
129134[ 3.3.0 ] : https://github.com/ipregistry/ipregistry-java/compare/v3.2.1...v3.3.0
Original file line number Diff line number Diff line change @@ -63,15 +63,15 @@ dependencies {
6363 annotationProcessor ' org.projectlombok:lombok:1.18.22'
6464 compileOnly ' org.projectlombok:lombok:1.18.22'
6565
66- implementation ' com.fasterxml.jackson.core:jackson-databind:2.13.1 '
67- implementation ' com.google.guava:guava:31.0. 1-jre'
66+ implementation ' com.fasterxml.jackson.core:jackson-databind:2.13.2.2 '
67+ implementation ' com.google.guava:guava:31.1-jre'
6868 implementation ' org.apache.httpcomponents.client5:httpclient5-fluent:5.1.3'
6969
7070 testImplementation ' org.junit.jupiter:junit-jupiter-api:5.8.2'
7171 testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.8.2'
72- testImplementation ' org.mockito:mockito-core:4.3.1 '
72+ testImplementation ' org.mockito:mockito-core:4.4.0 '
7373
74- integrationTestImplementation ' io.rest-assured:rest-assured:4.5 .1'
74+ integrationTestImplementation ' io.rest-assured:rest-assured:5.0 .1'
7575 integrationTestImplementation ' org.junit.jupiter:junit-jupiter-api:5.8.2'
7676 integrationTestRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.8.2'
7777}
Original file line number Diff line number Diff line change @@ -60,4 +60,7 @@ public class Security {
6060 @ JsonProperty ("is_threat" )
6161 private boolean threat ;
6262
63+ @ JsonProperty ("is_vpn" )
64+ private boolean vpn ;
65+
6366}
You can’t perform that action at this time.
0 commit comments