Skip to content

Commit 5372bf0

Browse files
committed
build: move repository to mysqljs/mysql
1 parent 3c7b161 commit 5372bf0

File tree

4 files changed

+21
-22
lines changed

4 files changed

+21
-22
lines changed

Changes.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -445,21 +445,21 @@ or open an issue to improve this document.
445445

446446
These releases were done before maintaining this file:
447447

448-
* [v0.9.0](https://github.com/felixge/node-mysql/compare/v0.8.0...v0.9.0)
448+
* [v0.9.0](https://github.com/mysqljs/mysql/compare/v0.8.0...v0.9.0)
449449
(2011-01-04)
450-
* [v0.8.0](https://github.com/felixge/node-mysql/compare/v0.7.0...v0.8.0)
450+
* [v0.8.0](https://github.com/mysqljs/mysql/compare/v0.7.0...v0.8.0)
451451
(2010-10-30)
452-
* [v0.7.0](https://github.com/felixge/node-mysql/compare/v0.6.0...v0.7.0)
452+
* [v0.7.0](https://github.com/mysqljs/mysql/compare/v0.6.0...v0.7.0)
453453
(2010-10-14)
454-
* [v0.6.0](https://github.com/felixge/node-mysql/compare/v0.5.0...v0.6.0)
454+
* [v0.6.0](https://github.com/mysqljs/mysql/compare/v0.5.0...v0.6.0)
455455
(2010-09-28)
456-
* [v0.5.0](https://github.com/felixge/node-mysql/compare/v0.4.0...v0.5.0)
456+
* [v0.5.0](https://github.com/mysqljs/mysql/compare/v0.4.0...v0.5.0)
457457
(2010-09-17)
458-
* [v0.4.0](https://github.com/felixge/node-mysql/compare/v0.3.0...v0.4.0)
458+
* [v0.4.0](https://github.com/mysqljs/mysql/compare/v0.3.0...v0.4.0)
459459
(2010-09-02)
460-
* [v0.3.0](https://github.com/felixge/node-mysql/compare/v0.2.0...v0.3.0)
460+
* [v0.3.0](https://github.com/mysqljs/mysql/compare/v0.2.0...v0.3.0)
461461
(2010-08-25)
462-
* [v0.2.0](https://github.com/felixge/node-mysql/compare/v0.1.0...v0.2.0)
462+
* [v0.2.0](https://github.com/mysqljs/mysql/compare/v0.1.0...v0.2.0)
463463
(2010-08-22)
464-
* [v0.1.0](https://github.com/felixge/node-mysql/commits/v0.1.0)
464+
* [v0.1.0](https://github.com/mysqljs/mysql/commits/v0.1.0)
465465
(2010-08-22)

Readme.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ Sometimes I may also ask you to install the latest version from Github to check
6363
if a bugfix is working. In this case, please do:
6464

6565
```sh
66-
$ npm install felixge/node-mysql
66+
$ npm install mysqljs/mysql
6767
```
6868

69-
[v0.9 branch]: https://github.com/felixge/node-mysql/tree/v0.9
69+
[v0.9 branch]: https://github.com/mysqljs/mysql/tree/v0.9
7070

7171
## Introduction
7272

@@ -106,7 +106,7 @@ From this example, you can learn the following:
106106
Thanks goes to the people who have contributed code to this module, see the
107107
[GitHub Contributors page][].
108108

109-
[GitHub Contributors page]: https://github.com/felixge/node-mysql/graphs/contributors
109+
[GitHub Contributors page]: https://github.com/mysqljs/mysql/graphs/contributors
110110

111111
Additionally I'd like to thank the following people:
112112

@@ -200,7 +200,7 @@ When establishing a connection, you can set the following options:
200200
* `connectTimeout`: The milliseconds before a timeout occurs during the initial connection
201201
to the MySQL server. (Default: `10000`)
202202
* `stringifyObjects`: Stringify objects instead of converting to values. See
203-
issue [#501](https://github.com/felixge/node-mysql/issues/501). (Default: `'false'`)
203+
issue [#501](https://github.com/mysqljs/mysql/issues/501). (Default: `'false'`)
204204
* `insecureAuth`: Allow connecting to MySQL instances that ask for the old
205205
(insecure) authentication method. (Default: `false`)
206206
* `typeCast`: Determines if column values should be converted to native
@@ -1221,7 +1221,7 @@ connection.query({
12211221
}
12221222
});
12231223
```
1224-
__WARNING: YOU MUST INVOKE the parser using one of these three field functions in your custom typeCast callback. They can only be called once. (see [#539](https://github.com/felixge/node-mysql/issues/539) for discussion)__
1224+
__WARNING: YOU MUST INVOKE the parser using one of these three field functions in your custom typeCast callback. They can only be called once. (see [#539](https://github.com/mysqljs/mysql/issues/539) for discussion)__
12251225

12261226
```
12271227
field.string()
@@ -1234,7 +1234,7 @@ parser.parseLengthCodedString()
12341234
parser.parseLengthCodedBuffer()
12351235
parser.parseGeometryValue()
12361236
```
1237-
__You can find which field function you need to use by looking at: [RowDataPacket.prototype._typeCast](https://github.com/felixge/node-mysql/blob/master/lib/protocol/packets/RowDataPacket.js#L41)__
1237+
__You can find which field function you need to use by looking at: [RowDataPacket.prototype._typeCast](https://github.com/mysqljs/mysql/blob/master/lib/protocol/packets/RowDataPacket.js#L41)__
12381238

12391239

12401240
## Connection Flags
@@ -1355,11 +1355,11 @@ $ MYSQL_HOST=localhost MYSQL_PORT=3306 MYSQL_DATABASE=node_mysql_test MYSQL_USER
13551355
[npm-url]: https://npmjs.org/package/mysql
13561356
[node-version-image]: https://img.shields.io/node/v/mysql.svg
13571357
[node-version-url]: https://nodejs.org/en/download/
1358-
[travis-image]: https://img.shields.io/travis/felixge/node-mysql/master.svg?label=linux
1359-
[travis-url]: https://travis-ci.org/felixge/node-mysql
1358+
[travis-image]: https://img.shields.io/travis/mysqljs/mysql/master.svg?label=linux
1359+
[travis-url]: https://travis-ci.org/mysqljs/mysql
13601360
[appveyor-image]: https://img.shields.io/appveyor/ci/dougwilson/node-mysql/master.svg?label=windows
13611361
[appveyor-url]: https://ci.appveyor.com/project/dougwilson/node-mysql
1362-
[coveralls-image]: https://img.shields.io/coveralls/felixge/node-mysql/master.svg
1363-
[coveralls-url]: https://coveralls.io/r/felixge/node-mysql?branch=master
1362+
[coveralls-image]: https://img.shields.io/coveralls/mysqljs/mysql/master.svg
1363+
[coveralls-url]: https://coveralls.io/r/mysqljs/mysql?branch=master
13641364
[downloads-image]: https://img.shields.io/npm/dm/mysql.svg
13651365
[downloads-url]: https://npmjs.org/package/mysql

lib/protocol/sequences/Query.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Query.prototype.determinePacket = function(firstByte, parser) {
3434
// If we have a resultSet and got one eofPacket
3535
if (this._resultSet && this._resultSet.eofPackets.length === 1) {
3636
// Then this is a RowDataPacket with an empty string in the first column.
37-
// See: https://github.com/felixge/node-mysql/issues/222
37+
// See: https://github.com/mysqljs/mysql/issues/222
3838
} else if (this._resultSet && this._resultSet.resultSetHeaderPacket
3939
&& this._resultSet.resultSetHeaderPacket.fieldCount !== null) {
4040
return Packets.FieldPacket;

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
"Diogo Resende <dresende@thinkdigital.pt>",
1111
"Nathan Woltman <nwoltman@outlook.com>"
1212
],
13-
"homepage": "https://github.com/felixge/node-mysql",
14-
"repository": "felixge/node-mysql",
13+
"repository": "mysqljs/mysql",
1514
"dependencies": {
1615
"bignumber.js": "2.3.0",
1716
"readable-stream": "1.1.14",

0 commit comments

Comments
 (0)