Skip to content

Commit

Permalink
Merge commit '82b9882afb667b9c1b13e2bd6a68102ea389de3c'
Browse files Browse the repository at this point in the history
Incorporated touhonoob's PR#2099 that adds new charsets introduced in MySQL 8:

mysqljs#2099

Updated version to 2.18.4
  • Loading branch information
vlasky committed Apr 17, 2021
2 parents 2204733 + 82b9882 commit 22ba10f
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 9 deletions.
50 changes: 50 additions & 0 deletions lib/protocol/constants/charsets.js
Expand Up @@ -218,6 +218,56 @@ exports.UTF8MB4_CROATIAN_MYSQL561_CI = 245;
exports.UTF8MB4_UNICODE_520_CI = 246;
exports.UTF8MB4_VIETNAMESE_CI = 247;
exports.UTF8_GENERAL50_CI = 253;
exports.UTF8MB4_0900_AI_CI = 255;
exports.UTF8MB4_DE_PB_0900_AI_CI = 256;
exports.UTF8MB4_IS_0900_AI_CI = 257;
exports.UTF8MB4_LV_0900_AI_CI = 258;
exports.UTF8MB4_RO_0900_AI_CI = 259;
exports.UTF8MB4_SL_0900_AI_CI = 260;
exports.UTF8MB4_PL_0900_AI_CI = 261;
exports.UTF8MB4_ET_0900_AI_CI = 262;
exports.UTF8MB4_ES_0900_AI_CI = 263;
exports.UTF8MB4_SV_0900_AI_CI = 264;
exports.UTF8MB4_TR_0900_AI_CI = 265;
exports.UTF8MB4_CS_0900_AI_CI = 266;
exports.UTF8MB4_DA_0900_AI_CI = 267;
exports.UTF8MB4_LT_0900_AI_CI = 268;
exports.UTF8MB4_SK_0900_AI_CI = 269;
exports.UTF8MB4_ES_TRAD_0900_AI_CI = 270;
exports.UTF8MB4_LA_0900_AI_CI = 271;
exports.UTF8MB4_EO_0900_AI_CI = 273;
exports.UTF8MB4_HU_0900_AI_CI = 274;
exports.UTF8MB4_HR_0900_AI_CI = 275;
exports.UTF8MB4_SI_0900_AI_CI = 276;
exports.UTF8MB4_VI_0900_AI_CI = 277;
exports.UTF8MB4_0900_AS_CS = 278;
exports.UTF8MB4_DE_PB_0900_AS_CS = 279;
exports.UTF8MB4_IS_0900_AS_CS = 280;
exports.UTF8MB4_LV_0900_AS_CS = 281;
exports.UTF8MB4_RO_0900_AS_CS = 282;
exports.UTF8MB4_SL_0900_AS_CS = 283;
exports.UTF8MB4_PL_0900_AS_CS = 284;
exports.UTF8MB4_ET_0900_AS_CS = 285;
exports.UTF8MB4_ES_0900_AS_CS = 286;
exports.UTF8MB4_SV_0900_AS_CS = 287;
exports.UTF8MB4_TR_0900_AS_CS = 288;
exports.UTF8MB4_CS_0900_AS_CS = 289;
exports.UTF8MB4_DA_0900_AS_CS = 290;
exports.UTF8MB4_LT_0900_AS_CS = 291;
exports.UTF8MB4_SK_0900_AS_CS = 292;
exports.UTF8MB4_ES_TRAD_0900_AS_CS = 293;
exports.UTF8MB4_LA_0900_AS_CS = 294;
exports.UTF8MB4_FA_0900_AS_CS = 295;
exports.UTF8MB4_EO_0900_AS_CS = 296;
exports.UTF8MB4_HU_0900_AS_CS = 297;
exports.UTF8MB4_HR_0900_AS_CS = 298;
exports.UTF8MB4_SI_0900_AS_CS = 299;
exports.UTF8MB4_VI_0900_AS_CS = 300;
exports.UTF8MB4_JA_0900_AS_CS = 303;
exports.UTF8MB4_JA_0900_AS_CS_KS = 304;
exports.UTF8MB4_0900_AS_CI = 305;
exports.UTF8MB4_RU_0900_AI_CI = 306;
exports.UTF8MB4_RU_0900_AS_CS = 307;

// short aliases
exports.ARMSCII8 = exports.ARMSCII8_GENERAL_CI;
Expand Down
18 changes: 9 additions & 9 deletions package.json
@@ -1,19 +1,19 @@
{
"name": "@vlasky/mysql",
"description": "A fork of mysqljs/mysql with partial support for the MySQL compressed protocol (reads compressed data sent by server). It is written in JavaScript, does not require compiling, and is 100% MIT licensed.",
"version": "2.18.3",
"version": "2.18.4",
"license": "MIT",
"author": "Vlad Lasky <github@vladlasky.com> (https://github.com/vlasky)",
"contributors": [
"Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",
"Andrey Sidorov <sidorares@yandex.ru>",
"Bradley Grainger <bgrainger@gmail.com>",
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Diogo Resende <dresende@thinkdigital.pt>",
"Nathan Woltman <nwoltman@outlook.com>",
"Aritz Beobide-Cardinal <aritz@aritzcracker.ca>",
"Rui Quelhas <rui.quelhas@oracle.com>",
"Nathan Woltman <nwoltman@outlook.com>"
"Andrey Sidorov <sidorares@yandex.ru> (https://github.com/sidorares)",
"Bradley Grainger <bgrainger@gmail.com> (https://github.com/bgrainger)",
"Douglas Christopher Wilson <doug@somethingdoug.com> (https://github.com/dougwilson)",
"Diogo Resende <dresende@thinkdigital.pt> (https://github.com/dresende)",
"Nathan Woltman <nwoltman@outlook.com> (https://github.com/nwoltman)",
"Aritz Beobide-Cardinal <aritz@aritzcracker.ca> (https://github.com/ARitz-Cracker)",
"Rui Quelhas <rui.quelhas@oracle.com> (https://github.com/ruiquelhas)",
"Peter Chung <touhonoob@gmail.com> (https://github.com/touhonoob)"
],
"repository": "vlasky/mysql",
"dependencies": {
Expand Down

0 comments on commit 22ba10f

Please sign in to comment.