Skip to content

Commit 4af9b70

Browse files
committed
History updates for 1.2.4b2
1 parent 2b5b909 commit 4af9b70

File tree

2 files changed

+40
-6
lines changed

2 files changed

+40
-6
lines changed

MySQLdb/HISTORY

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
=====================
2+
What's new in 1.2.4
3+
=====================
4+
5+
beta 2
6+
======
7+
8+
Reverted an accidental change in the exception format. (issue #1)
9+
10+
Reverted some raise statements so that they will continue to work with Python < 2.6
11+
12+
13+
beta 1
14+
======
15+
16+
A lot of work has been done towards Python 3 compatibility, and avoiding warnings with Python 2.7.
17+
This includes import changes, converting dict.has_kay(k) to k in dict, updating some test suite methods, etc.
18+
19+
Due to the difficulties of supporting Python 3 and Python < 2.7, 1.2.4 will support Python 2.4 though 2.7.
20+
1.3.0 will support Python 3 and Python 2.7 and 2.6.
21+
22+
MySQLdb-2.0 is instead going to become moist-1.0. See https://github.com/farcepest/moist
23+
24+
The Windows build has been simplified, and I plan to correct pre-built i386 packages built
25+
against the python.org Python-2.7 package and MySQL Connector/C-6.0. Contact me if you
26+
need ia64 packages.
27+
28+
The connection's cursorclass (if not default) was being lost on reconnect.
29+
30+
Newer versions of MySQL don't use OpenSSL and therefore don't have HAVE_SSL defined, but they do have
31+
a different SSL library. Fixed this so SSL support would be enabled in this case.
32+
33+
The regex that looked for SQL INSERT statement and VALUES in cursor.executemany() was made case-insensitive
34+
again.
35+
36+
137
=====================
238
What's new in 1.2.3
339
=====================

MySQLdb/metadata.cfg

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
2-
version: 1.2.4b1
3-
version_info: (1,2,4,'beta',1)
2+
version: 1.2.4b2
3+
version_info: (1,2,4,'beta',2)
44
description: Python interface to MySQL
55
long_description:
66
=========================
@@ -11,12 +11,10 @@ long_description:
1111
Python. The design goals are:
1212
\n
1313
- Compliance with Python database API version 2.0 [PEP-0249]_
14-
\n
1514
- Thread-safety
16-
\n
1715
- Thread-friendliness (threads will not block each other)
1816
\n
19-
MySQL-3.23 through 5.0 and Python-2.3 through 2.6 are currently
17+
MySQL-3.23 through 5.5 and Python-2.4 through 2.7 are currently
2018
supported. Python-3.0 will be supported in a future release.
2119
\n
2220
MySQLdb is `Free Software`_.
@@ -25,7 +23,7 @@ long_description:
2523
.. _`Free Software`: http://www.gnu.org/
2624
.. [PEP-0249] http://www.python.org/peps/pep-0249.html
2725
author: Andy Dustman
28-
author_email: adustman@users.sourceforge.net
26+
author_email: farcepest@gmail.com
2927
license: GPL
3028
platforms: ALL
3129
url: http://sourceforge.net/projects/mysql-python

0 commit comments

Comments
 (0)