Skip to content

Commit 33689c9

Browse files
committed
Prepare release 8.0.19
1 parent 22cdd21 commit 33689c9

File tree

4 files changed

+49
-8
lines changed

4 files changed

+49
-8
lines changed

CHANGES.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
88
Full release notes:
99
http://dev.mysql.com/doc/relnotes/connector-python/en/
1010

11+
v8.0.19
12+
=======
13+
14+
- WL#13531: Remove xplugin namespace
15+
- WL#13372: DNS SRV support
16+
- WL#12738: Specify TLS ciphers to be used by a client or session
17+
- BUG#30270760: Fix reserved filed should have a length of 22
18+
- BUG#29417117: Close file in handle load data infile
19+
1120
v8.0.18
1221
=======
1322

LICENSE.txt

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Introduction
1010
third-party software which may be included in this distribution of
1111
MySQL Connector/Python 8.0.
1212

13-
Last updated: September 2019
13+
Last updated: November 2019
1414

1515
Licensing Information
1616

@@ -606,16 +606,14 @@ OpenSSL License
606606

607607
The OpenSSL toolkit stays under a double license, i.e. both the conditions of
608608
the OpenSSL License and the original SSLeay license apply to the toolkit.
609-
See below for the actual license texts. Actually both licenses are BSD-style
610-
Open Source licenses. In case of any license issues related to OpenSSL
611-
please contact openssl-core@openssl.org.
609+
See below for the actual license texts.
612610

613611
OpenSSL License
614612
---------------
615613

616614
/* ====================================================================
617615

618-
* Copyright (c) 1998-2017 The OpenSSL Project. All rights reserved.
616+
* Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
619617
*
620618

621619
* Redistribution and use in source and binary forms, with or without
@@ -948,6 +946,40 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
948946
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
949947
THE SOFTWARE.
950948

949+
python-zstandard
950+
951+
The following software may be included in this product:
952+
953+
python-zstandard
954+
Copyright (c) 2016, Gregory Szorc
955+
All rights reserved.
956+
957+
Redistribution and use in source and binary forms, with or without
958+
modification, are permitted provided that the following conditions are met:
959+
960+
1. Redistributions of source code must retain the above copyright notice,
961+
this list of conditions and the following disclaimer.
962+
963+
2. Redistributions in binary form must reproduce the above copyright notice,
964+
this list of conditions and the following disclaimer in the documentation
965+
and/or other materials provided with the distribution.
966+
967+
3. Neither the name of the copyright holder nor the names of its contributors
968+
may be used to endorse or promote products derived from this software without
969+
specific prior written permission.
970+
971+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
972+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
973+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
974+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
975+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
976+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVI
977+
CES;
978+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
979+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
980+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
981+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
982+
951983
Commonly Used Licenses
952984

953985
Artistic License (Perl) 1.0
@@ -2122,4 +2154,4 @@ Written Offer for Source Code
21222154
a. within three (3) years of the date you received the Oracle product
21232155
that included the binary that is the subject of your request, or
21242156
b. in the case of code licensed under the GPL v3 for as long as Oracle
2125-
offers spare parts or customer support for that product model.
2157+
offers spare parts or customer support for that product model.

cpyint

lib/mysql/connector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
as mysql.connector.version.
3333
"""
3434

35-
VERSION = (8, 0, 18, '', 1)
35+
VERSION = (8, 0, 19, '', 1)
3636

3737
if VERSION[3] and VERSION[4]:
3838
VERSION_TEXT = '{0}.{1}.{2}{3}{4}'.format(*VERSION)

0 commit comments

Comments
 (0)