r8914: rework test suites
[clsql.git] / ChangeLog
1 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2         * Version 2.5.1 released:
3         * tests/*.lisp: Rework so tests are run
4         on multiple backends automatically based
5         on the contents of ~/.clsql-tests.config.
6         Reuse helper functions from classic-tests.
7         * base/database.lisp: Support connection-spec
8         as string for CONNECT
9         * classic-tests/tests.lisp: Automatically
10         load database backends as needed. 
11         
12 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
13         * Version 2.5.0 released:
14         All tests for CLSQL and CLSQL-CLASSIC pass
15         on all platforms.
16         * base/loop-extension.lisp: Add Lispworks
17         loop-extension. Improve type specifying on
18         other platforms.
19         
20 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
21         * Version 2.4.2 released:
22         loop extension now supported on Allegro, all
23         CLSQL-TESTS pass on Allegro.
24         * sql/metaclasses.lisp: Some optimization
25         of compute-slots, be selective when
26         ordered-class-slots needs to be called
27         instead of class-slots
28         * TODO: add URL with documentation on
29         extending Lispworks LOOP form
30         
31 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
32         * Version 2.4.1 released: CLSQL-TESt suite passes
33         all tests for postgresql and CMUCL, SBCL, OpenMCL.
34         Allegro and Lispworks pass all tests except for
35         FDML/LOOP/1 since the loop extension have not yet
36         been ported to those implementions.
37         * sql/metaclasses.lisp: Added new slot to standard-db-class
38         to hold user-specified type. OpenMCL adjustments to compensate
39         for its type-predicate function. Since AllegroCL, Lispworks,
40         and OpenMCL have different slot orders, added compute-slots
41         and ordered-class-slots functions so their slot order matches
42         SBCL/CMUCL.
43
44 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
45         * Version 2.4.0 released: All tests for clsql-classic now finish
46         correctly on Allegro, Lispworks, CMUCL, SBCL, OpenMCL for
47         mysql, postgresql, postgresql-sockets, and sqlite backends.
48         * db-mysql/mysql-sql.lisp: Fix array dereferencing
49         * classic-tests/tests.lisp: Fix package name of
50         number-to-sql-string. 
51         * clsql.asd/clsql-tests.asd: Add support for asdf:test-op
52         * db-sqlite/sqlite-api-{uffi,sql}.lisp: Multiple UFFI fixes,
53         now passes tests on all support UFFI platforms.
54         * db-postgresql-socket/postgresql-socket-api.list: Ported to 
55         SBCL and OpenMCL
56         * multiple: Finish renaming of :types keyword to :result-types for
57         greater CommonSQL compatibility, including documentation
58         * sql/basic-cmds.lisp: Remove obsolete file
59         
60 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
61         * Version 2.3.3 released
62         * Fixes for sequences on mysql and sqlite [Marcus Pearce]
63         * Fixes for uffi sqlite backend [Aurelio Bignoli / Kevin Rosenberg]
64         * Fix for schema table [Marcus Pearce]
65         * Add loop extension support for SBCL and OpenMCL [Marcus Pearce]
66         * Fixes to test suite [Marcus Pearce]
67
68 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
69         * db-*/*-sql.lisp: Ensure that expr in
70         database-query-result-set is a string
71         * Documentation integration
72         
73 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
74         * With for Marcus Pearce's excellent work, I've merged
75         his clsql-usql port into clsql. The original clsql
76         interface is available in the clsql-classic package.
77
78 02 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
79         * Integrate patch from Marcus Pearce <ek735@soi.city.ac.uk>
80         adding further support for providing backend for UncommonSQL
81
82 10 Mar 2004 Kevin Rosenberg (kevin@rosenberg.net)
83         * Integrate patch from Aurelio Bignoli for SQLite backend
84
85 11 Nov 2003 Kevin Rosenberg (kevin@rosenberg.net)
86         * Converted documentation to XML format
87         * Made package installable with asdf-install
88
89 23 Jul 2003 Kevin Rosenberg (kevin@rosenberg.net)
90         * Add for-each-row macro
91
92 12 Dec 2002 Kevin Rosenberg (kevin@rosenberg.net)
93         * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL
94         
95 16 Oct 2002 Kevin Rosenberg (kevin@rosenberg.net)
96         * Add support for SBCL, OpenMCL, and SCL
97         * Add *load-truename* to search path for clsql's
98         compiled libraries.
99
100 01 Sep 2002 Kevin Rosenberg (kevin@rosenberg.net)
101         * Rework use of file types in .asd files
102
103 17 Aug 2002 Kevin Rosenberg (kevin@rosenberg.net)
104         * Add .asd definition files for ASDF users
105
106 31 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
107         * Restructure directories for Common Lisp Controller v3 compatibility
108
109 25 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
110         * Also change case of logical host in loader files
111         * Rework handling of logical pathnames
112         
113 05 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
114         * Change case of logical host
115         
116 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
117         * clsql-base.system: Added base package that can be used without
118         high-level SQL commands. Used for adding support for UncommonSQL.
119         * *.system: Reworked logical pathnames to be more consistent with
120         Common Lisp Controller.
121         * debian/*: Completed initial Debian support
122         
123 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
124         * sql/classes.cl:
125         * sql/transactions.cl:
126         Added transaction support. Functions/macros added:
127         with-transaction, commit-transaction, rollback-transaction,
128         add-transaction-commit-hook, add-transaction-rollback-hook
129
130 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
131         * sql/sql.cl:
132         * sql/pool.cl:
133         * sql/functional.cl:
134         Added pool support in connect/disconnect and with-database.
135         Removed with-db-from-pool as with-database can now works with the connections pool
136
137 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
138         * sql/sql.cl:
139         * sql/pool.cl:
140         * sql/classes.cl:
141         * sql/package.cl:
142         Completed connection pool.
143         Added with-db-from-pool macro.
144         
145 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
146         * Multiple files:
147         Added initial support for connection pool
148         * sql/transactions.cl
149         Took transaction code from UncommonSQL and integrated
150         into CLSQL code. See file for disclaimer about why this
151         was added.
152
153 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
154         * interfaces/postgresql/postgresql-sql.cl:
155         Fix keyword typo in database-read-large-object
156         * interfaces/mysql/mysql-loader.cl
157         Fix loading on Win32
158         * test-suite/tester-clsql.cl
159         Fix type coercion of double-float
160         * doc/*
161         Added debian docbook catalog, made it the default
162         
163 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
164         * interface/postgresql/postgresql-api.cl:
165         * interface/postgresql/postgresql-sql.cl:
166         * sql/sql.cl:
167         * sql/db-interface.cl:
168         Added large objects support for postgresql.
169
170 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
171         * src/postgresql-socket/postgresql-socket-api.cl:
172         Fixed find-foreign-function call, eliminated crypt warning
173         * Makefiles:
174         Multiple improvements
175         * sql/usql.cl:
176         Moved functionality from low-level interfaces to this file
177         via generic functions
178         * test-suite/tester.cl:
179         Added test with acl-compat-tester, moved others to old-tests
180         directory.
181         
182 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
183         * src/usql.cl:
184         Reinstated commented out sections
185         * interfaces/postgresql/postgresql-loader.cl:
186         * interfaces/mysql/mysql-loader.cl:
187         Updated find-forieign-library support.
188         * interfaces/postgresql-socket/postgresql-socket-package.cl:
189         Fixed require form for Lispworks (Thanks Marc Battyani!)
190         * interfaces/postgresql-socket/postgresql-socket-api.cl:
191         Fixed eval of def-function for crypt library.
192                 
193 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
194         * Added interface to support USQL high-level rouines
195         
196 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
197         * Separated db-interface and conditions from sql/sql.cl
198         * Improved foreign library loading testing
199         * interfaces/postgresql/postgresql-api.cl
200         Added PQisBusy function
201         * interfaces/clsql-uffi/clsql-uffi.cl
202         Fixed sign error for 64-bit processing
203         
204 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
205         * interfaces/postgresql-socket/postgresql-socket-api.cl:
206         Fixes to read-double-from-socket. Added 64-bit integer support.
207         * test-suite/xptest-clsql.cl
208         Added testint for 64-bit integers
209         * Additons to installation docs
210         
211 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
212         * interfaces/postgresql-socket/postgresql-socket-api.cl:
213         Implemented direct socket reading for field type :double
214         * Added usage information for :types to documentation
215         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
216         atol, atof calls
217         * interfaces/clsql-uffi: Created new directory. Split common
218         interface routines that use UFFI into this package. Required
219         especially to support direct reading of 64-bit integers into
220         bignums and bypassing temporary strings.
221         * test-clsql.cl: Updated to test postgresql-socket's
222         read-double-from-socket function.
223         * test-suite/xptest-clsql.cl
224         Started work on test suite
225
226 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
227         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
228         mysql-fetch-field-direct Got :auto types working
229         * interfaces/postgresql/postgresql-api.cl
230         * interfaces/postgresql-socket/postgresql-socket-api.cl
231         Added pgsql-field-types enum. Got :auto types working.
232         * multiple-files
233         Renamed :field-types to :types.
234         
235 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
236         * Added field-types parameter to query, database-query,
237         database-query-result-set, map-query. Haven't added code
238         to utilize field types, yet.
239         * Changed postgresql-socket result set from cons to a structure
240         * Updated test-clsql.cl to use automated testing with a config
241         file
242         * Changed return types of field accessors from cstring to
243         (* :unsigned-char).  This prepares for being able to use specified
244         type conversions when taking field data into lisp.
245         * Added field-type processing for most interfaces. Not done yet.
246         
247 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
248         * doc/ref.sgml: Updated MAP-QUERY example to use
249         *read-default-float-format* (John Foderaro)
250         * Extensive work to foreign library loaders and .system files to
251         check for successful loading of foreign libraries.
252         * Modified test-clsql.cl to allow more modularity and
253         automated testing in future release.
254         * mysql/mysql-sql.lisp: Added field types
255         
256 01 Jan 2002 Kevin Rosenberg (kevin@rosenberg.net)
257         * mysql/mysql-sql.lisp:
258         - Added support for Allegro CL and Lispworks using UFFI layer
259         - Changed database-connect to use mysql-real-connect. This way,
260           can avoid using double (unwind-protect)
261         - Changed database-connect to have MySQL library allocate space
262           for MYSQL structure. This will make the code more robust in
263           the event that MySQL library changes the size of the mysql-mysql
264           structure.
265
266