Skip to content

Latest commit

 

History

History
222 lines (167 loc) · 10.3 KB

CHANGELOG.md

File metadata and controls

222 lines (167 loc) · 10.3 KB

Changelog for OpenEstate-IS24-REST

0.4-SNAPSHOT (not released yet)

bugfixes

  • Less strict validation of e-mail addresses. E-mail addresses are currently validated with classes provided by commons-validator when XML is read or written. This validator does not handle new top level domains (nTLD) properly. Therefore the validation is replaced by a more simple approach, that validates the e-mail address against the pattern, that is specified by IS24 in common-1.0.xsd.

updates

  • The package org.openestate.is24.restapi.utils.validator, that contains some classes of commons-validator, was removed from source code.

0.3.1 (10 Mar 2016)

updates

  • Updated slf4j library to version 1.7.18.
  • Updated jaxb2-basics libraries to version 0.11.0 and regenerated JAXB classes.

0.3 (12 Dec 2015)

new features

bugfixes

  • Updates and publishings are separately executed during bulk exports.
  • Always parse / print xsd:decimal, xsd:double or xsd:float values as java.lang.BigDecimal.

updates

  • The JAXB classes were regenerated against the latest XSD schemas from IS24.
  • Authorization and Verification classes are implementing java.io.Serializable.
  • The following schemas are not provided anymore by IS24. Their corresponding Java classes / packages were removed from this library:
    • alterationdate-1.0.xsd
    • bookingoverview-1.0.xsd
    • productrecommondation-1.0.xsd
    • realestatestock-1.0.xsd
    • zipandlocationtoregion-1.0.xsd
  • Classes and methods, that were marked as deprecated in 0.2.x versions have been removed.
  • Updated annotations library from FindBugs to version 3.0.1u2.
  • Updated commons-lang library to version 3.4.
  • Updated jaxb2-basics libraries to version 0.10.0.
  • Updated lorem library to version 2.0.
  • Updated slf4j library to version 1.7.13.
  • Updated HTTP components libraries in the hc43 module to version 4.3.6.

0.2.3 (09 Apr 2015)

bugfixes

  • Automatic removal / deactivation of untouched objects during a bulk export may fail under certain conditions. Instead of processing untouched objects only all currently published objects are removed / deactivated at the webservice.

updates

  • Updated slf4j to version 1.7.12.

0.2.2 (19 Mar 2015)

new features

  • Store the value of L-IS24-RequestRefnum header for failing requests into the RequestFailedException (for low level exports) and ExportMessage (for bulk exports). In case of problems with a certain request, one can provide the corresponding number to IS24 together with a support request. This allows IS24 to track the error / problem much easier and to provide better support for their users.

bugfixes

  • If a transferred property provides more attachments than allowed by the webservice, an incorrect ordering of attachments may occur. We should make sure, that attachments are always send to the webservice in the correct order. This guarantees, that the title image is always properly transferred and only attachments from the end of the list are rejected / ignored.

updates

  • Made some API improvements & documentations.
  • Updated dependencies jaxb2-basics-runtime 0.9.3, slf4j 1.7.10 & junit 4.12.
  • Changed signature of some protected logging functions in org.openestate.is24.restapi.utils.ExportHandler.

deprecations

  • Changed signature of the constructor in org.openestate.is24.restapi.utils.Response.

0.2.1 (26 Jan 2015)

bugfixes

  • During the transfer of a property the maximum number of allowed attachments can exceed temporarily. We should make sure, that old attachments are removed from the Webservice before any new attachments are uploaded to the Webservice.

0.2 (27 Dec 2014)

new features

updates

  • updated JAXB classes for XML reading / writing to the latest XML schemas from 17th November 2014 (see IS24-Changelog)
  • support new values for EnergySourceEnev2014 for POST and UPDATE of real estates with request paramater usenewenergysourceenev2014values=true (see notes by IS24)
  • properly escape external ID's in request URL's
  • any post() methods in ImportExport.java return the ID of created resources instead of HTTP response messages
  • added low level method Contact/DELETE on the Import/Export API
  • added low level method Publish/Post on the Import/Export API for publishing multiple objects at once
  • added low level method Publish/DELETEbyList on the Import/Export API for removing multiple publishings at once
  • added low level method Attachment/GETbyID on the Import/Export API get single attachments with their external ID
  • added low level methods for RealestatesCounts Webservice
  • migrated commons-lang from version 2 to version 3
  • API documentation completed
  • refactorings
    • moved class XmlUtils from org.openestate.is24.restapi.xml into org.openestate.is24.restapi.utils
    • renamed class SSLUtils to SslUtils in org.openestate.is24.restapi.utils
    • renamed method getEncodedParameterValue to getUrlEncodedValue in org.openestate.is24.restapi.AbstractClient
    • renamed method deleteById to delete in org.openestate.is24.restapi.ImportExport.PublishService
    • moved Java Signpost Example into the examples component (see IS24OauthExample.java)

deprecations

  • deprecated class org.openestate.is24.restapi.xml.XmlUtils
    • calls to this class are redirected to org.openestate.is24.restapi.utils.XmlUtils
    • this class will be removed with one of the next major releases
  • deprecated class org.openestate.is24.restapi.utils.SSLUtils
    • calls to this class are redirected to org.openestate.is24.restapi.utils.SslUtils
    • this class will be removed with one of the next major releases
  • deprecated method org.openestate.is24.restapi.AbstractClient.getEncodedParameterValue
    • calls to this method are redirected to org.openestate.is24.restapi.AbstractClient.getUrlEncodedValue
    • this method will be removed with one of the next major releases
  • deprecated method org.openestate.is24.restapi.ImportExport.PublishService.deleteById
    • calls to this method are redirected to org.openestate.is24.restapi.ImportExport.PublishService.delete
    • this method will be removed with one of the next major releases

0.1.2 (24 Aug 2014)

  • fixed a regression, that was introduced with 0.1.1

0.1.1 (24 Aug 2014)

  • updated JAXB generated classes for XML reading / writing to the latest XML schemas from 20th August 2014 (see IS24-Changelog)

0.1 (27 Jul 2014)

  • initial release