Skip to content

Commit a4064c0

Browse files
authored
Merge pull request #6 from CartoDB/nodejs-10
Support Node.js 10 LTS
2 parents 449fac1 + 7dd2bbc commit a4064c0

File tree

5 files changed

+371
-3
lines changed

5 files changed

+371
-3
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
node_js:
1414
- "6"
1515
- "8"
16-
16+
- "10"
1717

1818
before_install:
1919
- sudo service postgresql stop;
@@ -23,4 +23,3 @@ before_install:
2323
- export PGUSER=postgres
2424
- export PGDATABASE=postgres
2525
- sudo service postgresql restart $POSTGRESQL_VERSION;
26-

CHANGELOG.carto.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# CARTO's changelog
2+
3+
## 6.4.2-cdb2
4+
2018-mm-dd
5+
6+
- Support Node.js 10
7+
- Add package-lock.json

package-lock.json

Lines changed: 361 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg",
3-
"version": "6.4.2",
3+
"version": "6.4.2-cdb2",
44
"description": "PostgreSQL client - pure javascript & libpq with the same API",
55
"keywords": [
66
"postgres",

test/integration/client/deprecation-tests.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ var helper = require('./test-helper')
22

33
process.on('warning', function (warning) {
44
console.log(warning)
5+
if (warning.message.startsWith('Buffer() is deprecated')) return
56
throw new Error('Should not emit deprecation warning')
67
})
78

0 commit comments

Comments
 (0)