Skip to content

Commit 22ba10f

Browse files
committed
Merge commit '82b9882afb667b9c1b13e2bd6a68102ea389de3c'
Incorporated touhonoob's PR#2099 that adds new charsets introduced in MySQL 8: mysqljs#2099 Updated version to 2.18.4
2 parents 2204733 + 82b9882 commit 22ba10f

File tree

2 files changed

+59
-9
lines changed

2 files changed

+59
-9
lines changed

lib/protocol/constants/charsets.js

+50
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,56 @@ exports.UTF8MB4_CROATIAN_MYSQL561_CI = 245;
218218
exports.UTF8MB4_UNICODE_520_CI = 246;
219219
exports.UTF8MB4_VIETNAMESE_CI = 247;
220220
exports.UTF8_GENERAL50_CI = 253;
221+
exports.UTF8MB4_0900_AI_CI = 255;
222+
exports.UTF8MB4_DE_PB_0900_AI_CI = 256;
223+
exports.UTF8MB4_IS_0900_AI_CI = 257;
224+
exports.UTF8MB4_LV_0900_AI_CI = 258;
225+
exports.UTF8MB4_RO_0900_AI_CI = 259;
226+
exports.UTF8MB4_SL_0900_AI_CI = 260;
227+
exports.UTF8MB4_PL_0900_AI_CI = 261;
228+
exports.UTF8MB4_ET_0900_AI_CI = 262;
229+
exports.UTF8MB4_ES_0900_AI_CI = 263;
230+
exports.UTF8MB4_SV_0900_AI_CI = 264;
231+
exports.UTF8MB4_TR_0900_AI_CI = 265;
232+
exports.UTF8MB4_CS_0900_AI_CI = 266;
233+
exports.UTF8MB4_DA_0900_AI_CI = 267;
234+
exports.UTF8MB4_LT_0900_AI_CI = 268;
235+
exports.UTF8MB4_SK_0900_AI_CI = 269;
236+
exports.UTF8MB4_ES_TRAD_0900_AI_CI = 270;
237+
exports.UTF8MB4_LA_0900_AI_CI = 271;
238+
exports.UTF8MB4_EO_0900_AI_CI = 273;
239+
exports.UTF8MB4_HU_0900_AI_CI = 274;
240+
exports.UTF8MB4_HR_0900_AI_CI = 275;
241+
exports.UTF8MB4_SI_0900_AI_CI = 276;
242+
exports.UTF8MB4_VI_0900_AI_CI = 277;
243+
exports.UTF8MB4_0900_AS_CS = 278;
244+
exports.UTF8MB4_DE_PB_0900_AS_CS = 279;
245+
exports.UTF8MB4_IS_0900_AS_CS = 280;
246+
exports.UTF8MB4_LV_0900_AS_CS = 281;
247+
exports.UTF8MB4_RO_0900_AS_CS = 282;
248+
exports.UTF8MB4_SL_0900_AS_CS = 283;
249+
exports.UTF8MB4_PL_0900_AS_CS = 284;
250+
exports.UTF8MB4_ET_0900_AS_CS = 285;
251+
exports.UTF8MB4_ES_0900_AS_CS = 286;
252+
exports.UTF8MB4_SV_0900_AS_CS = 287;
253+
exports.UTF8MB4_TR_0900_AS_CS = 288;
254+
exports.UTF8MB4_CS_0900_AS_CS = 289;
255+
exports.UTF8MB4_DA_0900_AS_CS = 290;
256+
exports.UTF8MB4_LT_0900_AS_CS = 291;
257+
exports.UTF8MB4_SK_0900_AS_CS = 292;
258+
exports.UTF8MB4_ES_TRAD_0900_AS_CS = 293;
259+
exports.UTF8MB4_LA_0900_AS_CS = 294;
260+
exports.UTF8MB4_FA_0900_AS_CS = 295;
261+
exports.UTF8MB4_EO_0900_AS_CS = 296;
262+
exports.UTF8MB4_HU_0900_AS_CS = 297;
263+
exports.UTF8MB4_HR_0900_AS_CS = 298;
264+
exports.UTF8MB4_SI_0900_AS_CS = 299;
265+
exports.UTF8MB4_VI_0900_AS_CS = 300;
266+
exports.UTF8MB4_JA_0900_AS_CS = 303;
267+
exports.UTF8MB4_JA_0900_AS_CS_KS = 304;
268+
exports.UTF8MB4_0900_AS_CI = 305;
269+
exports.UTF8MB4_RU_0900_AI_CI = 306;
270+
exports.UTF8MB4_RU_0900_AS_CS = 307;
221271

222272
// short aliases
223273
exports.ARMSCII8 = exports.ARMSCII8_GENERAL_CI;

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "@vlasky/mysql",
33
"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.",
4-
"version": "2.18.3",
4+
"version": "2.18.4",
55
"license": "MIT",
66
"author": "Vlad Lasky <[email protected]> (https://github.com/vlasky)",
77
"contributors": [
88
"Felix Geisendörfer <[email protected]> (http://debuggable.com/)",
9-
"Andrey Sidorov <[email protected]>",
10-
"Bradley Grainger <[email protected]>",
11-
"Douglas Christopher Wilson <[email protected]>",
12-
"Diogo Resende <[email protected]>",
13-
"Nathan Woltman <[email protected]>",
14-
"Aritz Beobide-Cardinal <[email protected]>",
15-
"Rui Quelhas <[email protected]>",
16-
"Nathan Woltman <nwoltman@outlook.com>"
9+
"Andrey Sidorov <[email protected]> (https://github.com/sidorares)",
10+
"Bradley Grainger <[email protected]> (https://github.com/bgrainger)",
11+
"Douglas Christopher Wilson <[email protected]> (https://github.com/dougwilson)",
12+
"Diogo Resende <[email protected]> (https://github.com/dresende)",
13+
"Nathan Woltman <[email protected]> (https://github.com/nwoltman)",
14+
"Aritz Beobide-Cardinal <[email protected]> (https://github.com/ARitz-Cracker)",
15+
"Rui Quelhas <[email protected]> (https://github.com/ruiquelhas)",
16+
"Peter Chung <touhonoob@gmail.com> (https://github.com/touhonoob)"
1717
],
1818
"repository": "vlasky/mysql",
1919
"dependencies": {

0 commit comments

Comments
 (0)