ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro-Mysql/Changes
Revision: 1.21
Committed: Mon Mar 4 05:44:43 2019 UTC (5 years, 3 months ago) by root
Branch: MAIN
Changes since 1.20: +2 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 Revision history for Perl extension Coro::Mysql
2    
3 root 1.21 - updated docs to remove violite scare and add history.
4    
5 root 1.20 2.0 Mon Mar 4 06:15:03 CET 2019
6     - major port to new MARIADB_PVIO structure (Pluggable Virtual
7     IO) - so, yay, finally no more header file hacking because an
8     official API exists, but since it is new, the PVIO api is quite
9     broken, and due to the massive changes involved, not sure about
10     backwards compatibility or stability. Seems to work for me.
11     - use mariadb_config or mysql_config commands to find includes
12     and libraries.
13    
14 root 1.19 1.27 Tue Jun 3 15:38:29 CEST 2014
15 root 1.20 - grrr, remove debugging code again.
16 root 1.19
17 root 1.18 1.26 Tue Jun 3 15:37:40 CEST 2014
18     - fix a use-after-free corruption bug when closing database
19     handles.
20    
21 root 1.17 1.25 Tue Jun 3 05:17:12 CEST 2014
22     - mariadb 5.5 isn't actually binary-compatible to mysql 5.5,
23     work around that.
24     - remove debugging code (sigh).
25    
26 root 1.16 1.24 Tue Jun 3 05:08:07 CEST 2014
27     - port to mariadb 5.5 (and probably anything < 10), by treating it
28     like mysql with missing library symbols.
29    
30 root 1.15 1.23 Tue May 6 15:03:55 CEST 2014
31     - work around mariadb 10.0.10 no longer exporting vio functions by skipping
32     most of the safety checks - library mismatches will now cause memory
33     corruption causing crashes on the first sql statement execution.
34 root 1.14 - use correct header errno.h, not sys/errno.h.
35    
36 root 1.13 1.22 Fri Aug 2 06:06:14 CEST 2013
37     - experimental support for mariadb 10 (which has quite big changes).
38     - work around incompatible changes (again) in 5.16. use feature my ass.
39     (patch by....)
40    
41 root 1.12 1.21 Thu Oct 11 05:21:10 CEST 2012
42     - no functional changes.
43 root 1.11 - document the fact that the API used by this module is now public,
44     so it doesn't rely on library internals anymore.
45     - verified to work with mysql connector/C 6.0.2 (compatible to
46     5.5).
47    
48 root 1.10 1.2 Thu Jul 26 23:19:47 CEST 2012
49     - ensure DBD::mysql and Coro::Mysql are linked against the same
50     libmysqlclient version (required is same libmysqlclient, but no
51     idea how to check for that).
52     - explicitly support libmysqlclient 5.1 and 5.5 - 5.1 probably just
53 root 1.11 worked before on most (but not all) architectures.
54 root 1.10
55 root 1.9 1.1 Sun Feb 20 11:34:38 CET 2011
56 root 1.8 - implement a special EV mode, used when EV was available at build
57 root 1.9 time AND is used by AnyEvent, otherwise fall back to Coro::Handle.
58     - perl 5.10 or 5.12 breaks the syntax used in the with_db. fixed.
59 root 1.8
60 root 1.7 1.02 Wed Sep 1 18:37:48 CEST 2010
61     - use xgptr everywhere, so it actually works on those newer
62     systems.
63    
64 root 1.6 1.01 Tue Aug 31 16:40:16 CEST 2010
65     - gptr typedef is missing from newer libmysql, as
66     pointed out by Yury Zavarin.
67    
68 root 1.5 1.0 Sun Jun 21 02:56:05 CEST 2009
69 root 1.4 - allow unblock calls on non-mysql handles as well
70 root 1.5 (and return them unchanged).
71     - unpatching was done too late durign destruction -
72     hook diretcly into mysql's vio for that. saves memory
73     and should be faster, even though neither will make a big
74     difference :)
75     - added a nice usage example using PApp::SQL 1.04.
76 root 1.3
77 root 1.2 0.1 Sat May 30 08:57:43 CEST 2009
78     - first cpan upload.
79    
80 root 1.1 0.01 Sun May 17 15:11:00 CEST 2009
81     - original version; cloned from Convert::Scalar.
82