mysql2 3.9.2 → 3.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/lib/constants/ssl_profiles.js +2394 -891
- package/lib/packets/column_definition.js +5 -5
- package/lib/parsers/parser_cache.js +28 -15
- package/package.json +9 -7
- package/typings/mysql/index.d.ts +2 -2
- package/typings/mysql/lib/Auth.d.ts +1 -1
- package/typings/mysql/lib/Pool.d.ts +3 -3
- package/typings/mysql/lib/PoolCluster.d.ts +9 -9
- package/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +1 -1
- package/typings/mysql/lib/protocol/packets/OkPacket.d.ts +1 -1
- package/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +2 -2
- package/typings/mysql/lib/protocol/packets/index.d.ts +9 -0
- package/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +10 -52
- package/typings/mysql/lib/protocol/sequences/Prepare.d.ts +8 -4
- package/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +10 -52
- package/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +9 -53
- package/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +9 -53
package/README.md
CHANGED
|
@@ -31,12 +31,18 @@
|
|
|
31
31
|
[docs-faq]: https://sidorares.github.io/node-mysql2/docs/faq
|
|
32
32
|
[docs-documentation]: https://sidorares.github.io/node-mysql2/docs/documentation
|
|
33
33
|
[docs-contributing]: https://sidorares.github.io/node-mysql2/docs/contributing/website
|
|
34
|
+
[coverage]: https://img.shields.io/codecov/c/github/sidorares/node-mysql2
|
|
35
|
+
[coverage-url]: https://app.codecov.io/github/sidorares/node-mysql2
|
|
36
|
+
[ci-url]: https://github.com/sidorares/node-mysql2/actions/workflows/ci-coverage.yml?query=branch%3Amaster
|
|
37
|
+
[ci-image]: https://img.shields.io/github/actions/workflow/status/sidorares/node-mysql2/ci-coverage.yml?event=push&style=flat&label=CI&branch=master
|
|
34
38
|
|
|
35
39
|
# MySQL2
|
|
36
40
|
|
|
37
41
|
[![NPM Version][npm-image]][npm-url]
|
|
38
42
|
[![NPM Downloads][downloads-image]][downloads-url]
|
|
39
43
|
[![Node.js Version][node-version-image]][node-version-url]
|
|
44
|
+
[![GitHub Workflow Status (with event)][ci-image]][ci-url]
|
|
45
|
+
[![Codecov][coverage]][coverage-url]
|
|
40
46
|
[![License][license-image]][license-url]
|
|
41
47
|
|
|
42
48
|
[English][docs-base] | [简体中文][docs-base-zh-CN] | [Português (BR)][docs-base-pt-BR]
|
|
@@ -102,7 +108,7 @@ npm install --save-dev @types/node
|
|
|
102
108
|
|
|
103
109
|
## Contributing
|
|
104
110
|
|
|
105
|
-
Want to improve something in **MySQL2**?
|
|
111
|
+
Want to improve something in **MySQL2**?
|
|
106
112
|
Please check [Contributing.md][contributing] for detailed instruction on how to get started.
|
|
107
113
|
|
|
108
114
|
To contribute in **MySQL2 Documentation**, please visit the [Website Contributing Guidelines][docs-contributing] for detailed instruction on how to get started.
|