test: server_cli tool added
[libisds.git] / NEWS
blobc52fe666596fd239f85a4018f7e7768816a8dac5
1 Version 0.5
2 ===========
4 • ABI changed due to changes in specification. API is preserved. Please
5 recompile your applications.
7 • This release has not been tested on real system because devoloper has not
8 obtained new testing account yet. But he believes library works. Testers are
9 welcome.
11 • Delivery events 5, 10, 11, 12, and 13 are recognized now.
13 • GetMessageAuthor service implemented as get_message_sender() function.
15 • New isds_envelope member `dmPublishOwnID' added. It allows sender to reveal
16 his natural name to recipient on sending a message.
18 • isds_GetDataBoxUsers() can return empty list of users now.
20 • New document types recognised. MIME types of Software602 forms have been
21 changed to reflect IANA registry.
23 • Credential for testing account removed from documentation and code. Owner of
24 ISDS removed all testing accounts, testers must request for new account and
25 must agree with new rules including keeping credentials in secret and
26 non-disclosuring found bugs in ISDS. Example clients and on-line tests read
27 credentials from environment and central file in build root direcotory. See
28 README for more details.
30 • Errors from libxml2 parser are captured by libisds log system as ILF_XML
31 facility and at ILL_ERROR level. Application can get them by standard library
32 interface.
34 • Library can be compiled without support for network operation by passing
35 `--without-libcurl' option to configure script. All functions dependent on
36 network remain available and will return IE_NOTSUP return code.
38 • Dead variables removed to pass compilation by GCC 4.6 in strict mode.
40 • Prepare test environment to pass without ~/.gnupg directory. Packagers can
41 remove the hack from their packages now.
43 Version 0.4
44 ===========
46 • This version breaks ABI because of ISDS specification change. Please adapt
47 your application where affected functions are called.
49 • ABI change: isds_get_password_expiration() will return NULL if password never
50 expires. Adjust your application to cope with NULL pointer on IE_SUCCESS.
52 • ABI change: isds_add_box() has new credentials_delivery parameter to request
53 for on-line credentials delivery and to receive token for that.
55 • ABI change: isds_add_user() has new credentials_delivery parameter to
56 request for on-line credentials delivery and to receive token for that.
58 • ABI change: isds_reset_password() has different arguments to request for
59 on-line credentials delivery and to receive token for that.
61 • ABI change: deprecated functions isds_set_tls() and
62 isds_set_mime_type_normalization() removed. Use isds_set_opt() instead.
64 • SOAP Fault error message is passed to application via isds_long_message().
66 • New function isds_get_list_of_sent_message_state_changes() implements
67 GetMessageStateChanges service. It returns list of message status changes in
68 requested time interval.
70 • New function isds_get_box_list_archive() implements GetDataBoxList service.
71 It returns ZIP archive with comma separate list of boxes. Different types of
72 lists can be requested. Only type `UPG' is available to public.
74 • New function isds_activate() implements Activate service.
76 • New delivery state EV0 is recognized as EVENT_ENTERED_SYSTEM isds_event_type.
78 • `tsr' document name suffix is recognized as time stamp file type.
80 • New function isds_pki_credentials_free() to deallocate isds_pki_credentials
81 structure.
83 • ISO time string parser fixed (negative or no time zone offset).
85 • All tests can run in parallel now.
87 • Lot of internal tests added. Funny color output now.
89 Version 0.3.1
90 =============
92 • Add `server' directory to distribution tar balls because example messages
93 are needed for some tests.
95 Version 0.3
96 ===========
98 • This library breaks API because of new features and changes in ISDS.
100 • This library version covers complete ISDS specification as released on
101 2010-05-23.
103 • Support for XML documents added. Use isds_document.is_xml to distinguish
104 between binary and XML document types. Because XML node list
105 (isds_document.xml_node_list) is used to describe XML document, your
106 application must link to libxml2 library too since now. Please note this
107 feature has not been heavily tested and that the interface is a little tricky
108 (regarding memory allocation). See client/sendxmldoc.c and
109 client/loadsentmessagewithxmldocuments.c examples for hints how to use it.
111 • Box creation (isds_add_box()) supports requesting for token. This
112 functionality is not covered by specification as it's not implemented on
113 server side yet.
115 • Message authenticity verification through new web service
116 AuthenticateMessage (isds_authenticate_message()) is supported. This function
117 sends a signed message encapsulated in CMS to ISDS where the system resolves
118 originality of the message.
120 • isds_envelope->dmType is input/output now. The one letter value is
121 transferred while sending new message. However ISDS ignores this option as
122 semantic is not defined yet.
124 • isds_envelope->timestamp is optional now. Some ISDS services can return
125 message without time stamp as can do not exist yet.
127 • Cookie-tracked session authentication changed to stateless. That means
128 password is transmitted to server on each request. Password is cached by
129 libcurl library until connection gets closed. Also different server locators
130 for non-certificate and certificate client authentication emerged. Old log-in
131 method will be canceled on 2010-07-01. Old libisds versions become useless.
132 Upgrade is strongly recommended.
134 • Static and out-of-source directory compilation is supported now.
136 • New function isds_normalize_mime_type(): translates file name extension to
137 MIME type (because official ISDS client is broken). This can be globally
138 enabled by isds_set_opt().
140 • Context parameters can be set by isds_set_opt(): TLS options (isds_set_tls()
141 is deprecated now), MIME type normalization (new: mangle document MIME type
142 in incoming messages into more reasonable values).
144 • Deprecated functions removed: isds_load_received_message(),
145 isds_log_signed_message().
147 • isds_DbUserInfo.caState added (country of contact address).
149 • isds_get_delivery_info() fixed to produce standard raw representation of
150 delivery details that can be loaded by isds_load_delivery() back.
152 • New function guess_raw_type(): detects type of supported message and
153 delivery details formats. Detected format can be supplied to
154 isds_load_message(). This way, application can automagically load and parse
155 any supported format.
157 • libcurl debug messages are caught by libisds and redirected to library
158 logger (ILF_HTTP facility).
160 Version 0.2.1
161 =============
163 • Libs value in libisds.pc pkg-config module fixed.
165 Version 0.2
166 ===========
168 • X.509 client certificate authentication is supported (but not tested yet).
169 Underlying HTTPS cURL library supports OpenSSL, GnuTLS and NSS cryptographic
170 back ends currently.
172 Current legislation requires to use cryptographic module with unexportable
173 private key. I've tested ASEKey produced by Athena Smartcard Solution
174 with OpenSSL back end successfully (a patch for curl-7.20.0 is required).
176 Example code client/certauth.c and server/tls/peer server and CA, server and
177 client cryptographic material are bundled. 
179 • Application can pass CRL PEM file to cryptographic library.
181 • Library offers pkg-config integration. Application build scripts can check
182 `libisds' pkg-config module and use PKG_CHECK_MODULES() m4 macro.
184 • Application can get dynamic string describing library version and its
185 dependencies at run-time (isds_version()).
187 • API changed and is not backward compatible. Please adjust and recompile your
188 applications.
190 • Library tests have been splitted to off-line (--enable-test) and on-line
191 (--enable-online-test) tests. On-line tests can not be compiled without
192 off-line tests. All tests are switched off by default.
194 • Server base URL for isds_login() does not contain path anymore. Application
195 must supply schema and hostname only (e.g. https://localhost/). Undefined base
196 URL will be interpreted as official ISDS locator.
198 • Base URLs of official ISDS server (isds_locator) and testing ISDS server
199 (isds_testing_locator) are provided by library. Application can offer them as
200 default choices to the user.
202 • Documents can be submitted for authorize conversion into Czech POINT system
203 (czp_convert_document(), requires specific isds_ctx).
205 • Application can catch all global log messages and redirect them wherever it
206 needs.
208 Version 0.1
209 ===========
211 • This is first public release. Whole ISDS 2010-01-22 specification is covered
212 except: XML documents, X.509 authentication