|
diff --git a/NEWS b/NEWS index e004eec..24180d8 100644 --- a/ NEWS+++ b/ NEWS |
|
@@ -1,20 +1,49 @@ |
1 | GNU dbm NEWS -- history of user-visible changes. 2018-05-19 |
1 | GNU dbm NEWS -- history of user-visible changes. 2018-05-24 |
2 | Copyright (C) 1990-2018 Free Software Foundation, Inc. |
2 | Copyright (C) 1990-2018 Free Software Foundation, Inc. |
3 | See the end of file for copying conditions. |
3 | See the end of file for copying conditions. |
4 | |
4 | |
5 | Please send gdbm bug reports to <bug-gdbm@gnu.org>. |
5 | Please send gdbm bug reports to <bug-gdbm@gnu.org>. |
6 | |
6 | |
7 | Version 1.14.90 |
7 | Version 1.14.90 |
8 | |
8 | |
| |
9 | FIXME: BUMP VI_MAJOR |
| |
10 | |
9 | * Implement database consistency checks |
11 | * Implement database consistency checks |
10 | |
12 | |
11 | * Improved error checking |
13 | * Improved error checking |
12 | |
14 | |
13 | * Removed gdbm-1.8.3 compatibility layer |
15 | * Removed gdbm-1.8.3 compatibility layer |
14 | |
16 | |
| |
17 | * Commands can be given to gdbmtool in the command line |
| |
18 | |
| |
19 | The syntax is: |
| |
20 | |
| |
21 | gdbmtool DBNAME COMMAND [ARGS...] |
| |
22 | |
| |
23 | Multiple commands are separated by semicolon (take care to escape it), |
| |
24 | e.g.: |
| |
25 | |
| |
26 | gdbmtool t.db count\; avail |
| |
27 | |
| |
28 | * Fixed data conversion bugs in storing structured keys or content |
| |
29 | |
| |
30 | * New member in the gdbm_recovery structure: duplicate_keys. |
| |
31 | |
| |
32 | Upon return from gdbm_recover, this member holds the number of keys |
| |
33 | that were not recovered, because the same key has already been stored |
| |
34 | in the database. The actual number of stored keys is thus |
| |
35 | recovered_keys - duplicate_keys. |
| |
36 | |
| |
37 | * New error codes. |
| |
38 | |
| |
39 | GDBM_BAD_BUCKET "Malformed bucket header" |
| |
40 | GDBM_BAD_HEADER "Malformed database file header" |
| |
41 | GDBM_BAD_AVAIL "Malformed avail_block" |
| |
42 | GDBM_BAD_HASH_TABLE "Malformed hash table" |
| |
43 | |
15 | |
44 | |
16 | Version 1.14.1 - 2018-01-03 |
45 | Version 1.14.1 - 2018-01-03 |
17 | |
46 | |
18 | * Increment soname current version number. |
47 | * Increment soname current version number. |
19 | |
48 | |
20 | |
49 | |
|