ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-DBI/Changes
Revision: 1.14
Committed: Tue Aug 15 07:28:55 2017 UTC (6 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_0
Changes since 1.13: +14 -3 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 Revision history for AnyEvent::DBI
2
3 3.0 Tue Aug 15 09:05:30 CEST 2017
4 - the exec_server constructor argument is now ignored, fork vs. exec
5 is now decided by availability of AnyEvent::Fork::Early or not.
6 - experimental support for fetching (but not setting) statement handle
7 attributes: ->stattr.
8 - use AnyEvent::Fork for process management.
9 - switch to CBOR::XS and Convert::Scalar for further speed and memory
10 improvements - a loop doing "select 0" is now almost twice as fast,
11 more impressive speedups are expected for larger results.
12 This also considerably simplified the code.
13 - t/02_sql_lite.t wrongly assumed sqlite doesn't implement instr(), but
14 nowadays, it does.
15 - added stability canary support.
16 - no longer load Scalar::Util, Fcntl, Socket and POSIX modules.
17 - move child code into it's own module, AnyEvent::DBI::Slave.
18 - no longer load DBI (except in slaves).
19
20 2.3 Tue Apr 2 02:59:12 CEST 2013
21 - fix begin_work, commit and rollback, that were broken due
22 to a precedence problem (analyzed by Jerry Lundström).
23 - slightly improve tests.
24
25 2.2 Thu May 17 04:13:27 CEST 2012
26 - timeouts didn't trigger (Adam Rosenstein).
27 - do not leave zombie processes (Adam Rosenstein).
28
29 2.1 Sat Oct 30 22:22:05 CEST 2010
30 - no longer kill -9 the child, just kill -TERM and close the connection,
31 to avoid database corruption - this also works around a perl bug
32 (global destruction).
33 - convert to the faster AE API - major speedup.
34 - use common::sense.
35
36 2.0 Mon Jun 29 10:18:58 CEST 2009
37 - INCOMPATIBLE CHANGE: callbacks now are passed the $dbh
38 as first argument, always.
39 - INCOMPATIBLE CHANGE: really pass rv as third argument to exec
40 callbacks, as documented but not implemented for 1.1.
41 - thanks to viacheslav.t for testing.
42 - major patch by Adam Rosenstein:
43 - add an on_connect callback (for reliable failure notification)
44 - add timeouts to connect and exec.
45 - reaps server processes if you undef your AE::DBI handle and keep
46 running.
47 - option to start the server via exec, otherwise try to emulate
48 close-on-exec behavior.
49 - add the begin_work/commit/rollback methods required to actually use
50 transactions.
51 - add accessors for database handle attibutes such as AutoCommit,
52 RaiseError, etc.
53 - add support for the func() method to interact directly with a driver.
54 - add more/real tests.
55
56 1.1 Sat Dec 20 22:28:11 CET 2008
57 - INCOMPATIBLE CHANGE: pass result value in place of %extra
58 to callbacks.
59 - do not call fetchrow_arrayref on non-select statements.
60 - do not die on non-fatal errors, unless there is no error callback
61 (reported by Adam Rosenstein).
62
63 1.0 Mon Jun 9 16:27:36 CEST 2008
64 - original version, an AnyEvent::HTTP clone.