Skip to content

Commit d97db55

Browse files
committed
Merge sailshq/master into mk2/change_mysql_version_to_2_15_0
2 parents ef27cb2 + 98f90ce commit d97db55

30 files changed

+103
-41
lines changed

.travis.yml

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,46 @@
1+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # #
2+
# ╔╦╗╦═╗╔═╗╦ ╦╦╔═╗ ┬ ┬┌┬┐┬ #
3+
# ║ ╠╦╝╠═╣╚╗╔╝║╚═╗ └┬┘││││ #
4+
# o ╩ ╩╚═╩ ╩ ╚╝ ╩╚═╝o ┴ ┴ ┴┴─┘ #
5+
# #
6+
# This file configures Travis CI. #
7+
# (i.e. how we run the tests... mainly) #
8+
# #
9+
# https://docs.travis-ci.com/user/customizing-the-build #
10+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # #
11+
112
language: node_js
13+
214
node_js:
3-
- "6"
4-
- "5"
515
- "4"
16+
- "6"
17+
- "8"
18+
- "node"
19+
20+
branches:
21+
only:
22+
- master
23+
24+
notifications:
25+
email:
26+
27+
28+
29+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # #
30+
# ╔═╗╦ ╦╔═╗╔╦╗╔═╗╔╦╗┬┌─┐┌─┐┌┬┐┬┌─┐┌┐┌┌─┐ #
31+
# ║ ║ ║╚═╗ ║ ║ ║║║║│┌─┘├─┤ │ ││ ││││└─┐ #
32+
# ╚═╝╚═╝╚═╝ ╩ ╚═╝╩ ╩┴└─┘┴ ┴ ┴ ┴└─┘┘└┘└─┘ #
33+
# #
34+
# Custom stuff specific to this package: #
35+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # #
36+
637
sudo: false
38+
739
services:
840
- mysql
941
env:
1042
- DB_USER=mp DB_PASS='mp'
43+
1144
before_script:
1245
- mysql -e 'create database mppg;'
1346
- mysql -e "create user 'mp'@'localhost' identified by 'mp';"

Dockerfile

Lines changed: 0 additions & 7 deletions
This file was deleted.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2015-present mikermcneil
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Structured Node.js bindings for MySQL.
88
> See https://github.com/node-machine/driver-interface for more background information about this package.
99
1010

11-
## Installation   [![NPM version](https://badge.fury.io/js/machinepack-mysql.svg)](http://badge.fury.io/js/machinepack-mysql) [![Build Status](https://travis-ci.org/treelinehq/machinepack-mysql.png?branch=master)](https://travis-ci.org/treelinehq/machinepack-mysql)
11+
## Installation   [![NPM version](https://badge.fury.io/js/machinepack-mysql.svg)](http://badge.fury.io/js/machinepack-mysql) [![Build Status](https://travis-ci.org/sailshq/machinepack-mysql.png?branch=master)](https://travis-ci.org/sailshq/machinepack-mysql)
1212

1313
```sh
1414
$ npm install machinepack-mysql
@@ -30,7 +30,7 @@ For more examples, or if you get stuck or have questions, click [here](http://sa
3030
To report a bug, [click here](http://sailsjs.com/bugs).
3131

3232

33-
## Contributing   [![Build Status](https://travis-ci.org/balderdashy/machinepack-mysql.svg?branch=master)](https://travis-ci.org/balderdashy/machinepack-mysql)
33+
## Contributing   [![Build Status](https://travis-ci.org/sailshq/machinepack-mysql.svg?branch=master)](https://travis-ci.org/sailshq/machinepack-mysql)
3434

3535
Please observe the guidelines and conventions laid out in the [Sails project contribution guide](http://sailsjs.com/contribute) when opening issues or submitting pull requests.
3636

@@ -42,7 +42,7 @@ Thanks to [felixge](https://github.com/felixge) and [dougwilson](https://github.
4242

4343
## License
4444

45-
MIT © 2015-2017 The Sails Company
45+
MIT © 2015-present Mike McNeil
4646

4747
This package, like the [Sails framework](http://sailsjs.com), is free and open-source under the [MIT License](http://sailsjs.com/license).
4848

docker-compose.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

machines/compile-statement.js renamed to lib/compile-statement.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ module.exports = {
108108

109109

110110
// Attach a flag to the meta object to denote that the query was generated
111-
// with Knex and that it's valuesToEscape don't need to be processed any further.
111+
// with Knex and that its valuesToEscape don't need to be processed any further.
112112
var meta = inputs.meta || {};
113113
meta.isUsingQuestionMarks = true;
114114

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)