Add simple CLI program
[yaz4j-moved-to-github.git] / NEWS
1 --- 1.3
2
3 * new API method: ResultSet#sort
4 * new API method: ResultSet#getRecords
5 * API: result set is now iterable
6 * win32/64 build files (requires Windows SDK)
7
8 Bug fixes:
9
10 * avoid redundant buffer copies in Record#get
11
12 --- 1.2 2010/04/22
13
14 Changes to the API:
15
16 * add Connection close that shutdowns socket without destroying the object
17 * rename ResultSet getSize to getHitCount
18
19 Bug fixes:
20
21 * #3115 - fix JVM crash when fetching records in unsupported syntax caused
22   by null ptr dereference, handle record errors during search and in-record 
23   errors
24 * properly deallocate records not managed by a result set
25
26
27 --- 1.1 2010/02/22
28
29 Major changes to the API:
30
31 * using Java naming conventions
32 * simplified/removed less used classes
33 * using standard Java container types instead of of binded natives
34 * use checked exceptions for all app/protocol layer errors
35
36 Major changes to the code layout, using Maven to manage build.
37
38 Bug fixes:
39
40 * #3122 - out of memory bug caused by ResultSet using memory proportional 
41   to the number of hits
42
43 --- 1.0 2009/09/22
44
45 Initial version after receiving the code from Talis.
46
47 Added JUnit test cases.