Skip to content

Commit f229760

Browse files
committed
8.0.32
Change-Id: Ibcc7afce440682a83ff0ddb56a69d98160033874
1 parent 9cb2de4 commit f229760

File tree

4 files changed

+42
-45
lines changed

4 files changed

+42
-45
lines changed

CHANGES.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ Copyright (c) 2016, 2022, Oracle and/or its affiliates.
88
Full release notes:
99
http://dev.mysql.com/doc/relnotes/connector-nodejs/en/
1010

11+
v8.0.32
12+
=======
13+
14+
- X DevAPI expressions are now encapsulated in a corresponding Expr module
15+
- The expression parser became stateless and is not re-created every time an expression is used
16+
- X DevAPI expressions are now parsed at the stage where they are used
17+
- All protobuf messages are now constructed only at the corresponding adapter
18+
- Most CRUD statements using expressions are much faster
19+
- 3rd-party dependencies with new releases compatible to Node.js v14.0.0 have been updated
20+
- A script to run the test suite in a Docker container has been introduced
21+
- Unsafe numeric JSON field values are now returned as JavaScript strings
22+
- Collection.add() no longer loses precision with unsafe numeric JSON field values
23+
1124
v8.0.31
1225
=======
1326

LICENSE

Lines changed: 27 additions & 43 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/Node.js 8.0.
1212

13-
Last updated: April 2022
13+
Last updated: November 2022
1414

1515
Licensing Information
1616

@@ -477,48 +477,6 @@ Licenses for Third-Party Components
477477
may be included with this product. We are thankful to all individuals
478478
that have created these.
479479

480-
Chai.js Assertion Library
481-
482-
Chai.js Assertion Library
483-
484-
Copyright (c) 2017 Chai.js Assertion Library
485-
486-
Permission is hereby granted, free of charge, to any person obtaining a copy
487-
of this software and associated documentation files (the "Software"), to deal
488-
in the Software without restriction, including without limitation the rights
489-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
490-
copies of the Software, and to permit persons to whom the Software is
491-
furnished to do so, subject to the following conditions:
492-
493-
The above copyright notice and this permission notice shall be included in
494-
all copies or substantial portions of the Software.
495-
496-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
497-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
498-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
499-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
500-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
501-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
502-
SOFTWARE.
503-
504-
Dependent libraries have copyright as follows (same license as above)
505-
- assertion-error: Copyright (c) 2013
506-
Jake Luer <jake@qualiancy.com> (http://qualiancy.com)
507-
- check-error: Copyright (c) 2013
508-
Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)
509-
- deep-eql: Copyright (c) 2013
510-
Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)
511-
- get-func-name: Copyright (c) 2013
512-
Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)
513-
- pathval: Copyright (c) 2011-2013
514-
Jake Luer jake@alogicalparadox.com
515-
- type-detect: Copyright (c) 2013
516-
Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)
517-
518-
519-
======================================================================
520-
======================================================================
521-
522480
Google Protocol Buffers
523481

524482
Copyright 2008 Google Inc. All rights reserved.
@@ -557,6 +515,32 @@ support library is itself covered by the above license.
557515
======================================================================
558516
======================================================================
559517

518+
lossless-json
519+
520+
Copyright (c) 2016-2022 Jos de Jong
521+
522+
Permission is hereby granted, free of charge, to any person obtaining a
523+
copy of this software and associated documentation files (the
524+
"Software"), to deal in the Software without restriction, including
525+
without limitation the rights to use, copy, modify, merge, publish,
526+
distribute, sublicense, and/or sell copies of the Software, and to
527+
permit persons to whom the Software is furnished to do so, subject to
528+
the following conditions:
529+
530+
The above copyright notice and this permission notice shall be included
531+
in all copies or substantial portions of the Software.
532+
533+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
534+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
535+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
536+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
537+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
538+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
539+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
540+
541+
======================================================================
542+
======================================================================
543+
560544
LZ4-Node.JS
561545

562546
Copyright (c) 2012 Pierre Curto

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015, 2022, Oracle and/or its affiliates.
1+
Copyright (c) 2015, 2023, Oracle and/or its affiliates.
22

33
This is a release of MySQL Connector/Node.js, Oracle's Node.js driver for MySQL.
44

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mysql/xdevapi",
3-
"version": "8.0.31",
3+
"version": "8.0.32",
44
"description": "MySQL Connector/Node.js - A Node.js driver for MySQL using the X Protocol and X DevAPI.",
55
"contributors": [
66
{

0 commit comments

Comments
 (0)