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