Skip to content

Commit cb5775d

Browse files
committed
Finish v0.3.3
2 parents 5e91656 + c4e2dbc commit cb5775d

251 files changed

Lines changed: 1481 additions & 598 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@ Changelog for OpenEstate-IS24-REST
22
==================================
33

44

5+
0.3.3 (14 May 2017)
6+
-------------------
7+
8+
### bugfixes
9+
10+
- Bulk exports stop immediately, when invalid XML is provided.
11+
([issue #6](https://github.com/OpenEstate/OpenEstate-IS24-REST/issues/6))
12+
13+
### updates
14+
15+
- Allow object descriptions with maximal 3999 characters.
16+
([issue #4](https://github.com/OpenEstate/OpenEstate-IS24-REST/issues/4))
17+
- Support XKO country code for Kosovo.
18+
([issue #5](https://github.com/OpenEstate/OpenEstate-IS24-REST/issues/5))
19+
- Add option to remove objects before update in bulk exports.
20+
- `org.openestate.is24.restapi.AbstractClient` implements `java.io.Closeable`.
21+
- Generated JAXB classes implement `java.io.Serializable`.
22+
- Replaced deprecated `org.apache.commons.io.IOExceptionWithCause` with
23+
`java.io.IOException`.
24+
- Support simple JSON requests within
25+
`org.openestate.is24.restapi.AbstractClient` via `sendJsonRequest()`.
26+
([issue #7](https://github.com/OpenEstate/OpenEstate-IS24-REST/pull/7))
27+
- Updated `commons-io` library to version 2.5.
28+
- Updated `commons-lang` library to version 3.5.
29+
- Updated `jaxb2-basics` library to version 0.11.1.
30+
- Updated `Lorem` library to version 2.1.
31+
- Updated `slf4j` libraries to version 1.7.25.
32+
33+
534
0.3.2 (11 Mar 2016)
635
-------------------
736

OpenEstate-IS24-REST-examples/mvn-clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
#
3-
# Copyright 2014-2016 OpenEstate.org
3+
# Copyright 2014-2017 OpenEstate.org
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

OpenEstate-IS24-REST-examples/mvn-findbugs-gui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
#
3-
# Copyright 2014-2016 OpenEstate.org
3+
# Copyright 2014-2017 OpenEstate.org
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

OpenEstate-IS24-REST-examples/mvn-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
#
3-
# Copyright 2014-2016 OpenEstate.org
3+
# Copyright 2014-2017 OpenEstate.org
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

OpenEstate-IS24-REST-examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.openestate.is24</groupId>
88
<artifactId>ALL</artifactId>
9-
<version>0.3.2</version>
9+
<version>0.3.3</version>
1010
</parent>
1111

1212
<groupId>org.openestate.is24</groupId>
1313
<artifactId>OpenEstate-IS24-REST-examples</artifactId>
14-
<version>0.3.2</version>
14+
<version>0.3.3</version>
1515
<packaging>jar</packaging>
1616

1717
<name>OpenEstate-IS24-REST-examples</name>

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/AuthorizationExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2016 OpenEstate.org.
2+
* Copyright 2014-2017 OpenEstate.org.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/BulkUploadExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2016 OpenEstate.org.
2+
* Copyright 2014-2017 OpenEstate.org.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/DefaultClientExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2016 OpenEstate.org.
2+
* Copyright 2014-2017 OpenEstate.org.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/DownloadRealEstateExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2016 OpenEstate.org.
2+
* Copyright 2014-2017 OpenEstate.org.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/DownloadRealEstateListExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2016 OpenEstate.org.
2+
* Copyright 2014-2017 OpenEstate.org.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)