Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: brianc/node-postgres
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.1.0
Choose a base ref
...
head repository: brianc/node-postgres
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.1.1
Choose a head ref
  • 7 commits
  • 5 files changed
  • 1 contributor

Commits on Aug 4, 2017

  1. Update README.md

    Add Patreon page link
    brianc authored Aug 4, 2017
    Copy the full SHA
    d0c18b0 View commit details
  2. Update README.md

    Spelling...
    brianc authored Aug 4, 2017
    Copy the full SHA
    a8304f8 View commit details

Commits on Aug 7, 2017

  1. Update SPONSORS.md

    Add John Fawcett as a supporter
    brianc authored Aug 7, 2017
    Copy the full SHA
    fb49586 View commit details
  2. Update SPONSORS.md

    brianc authored Aug 7, 2017
    Copy the full SHA
    8a2ba46 View commit details

Commits on Aug 8, 2017

  1. Update SPONSORS.md

    brianc authored Aug 8, 2017
    Copy the full SHA
    b518617 View commit details

Commits on Aug 12, 2017

  1. Fix vulnerability

    brianc committed Aug 12, 2017
    Copy the full SHA
    48543bf View commit details
  2. Bump version

    brianc committed Aug 12, 2017
    Copy the full SHA
    7e7ff7f View commit details
Showing with 23 additions and 2 deletions.
  1. +4 −0 README.md
  2. +5 −0 SPONSORS.md
  3. +2 −1 lib/result.js
  4. +2 −1 package.json
  5. +10 −0 test/integration/client/field-name-escape-tests.js
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -48,6 +48,10 @@ You can also follow me [@briancarlson](https://twitter.com/briancarlson) if that

I offer professional support for node-postgres. I provide implementation, training, and many years of expertise on how to build applications with node, express, PostgreSQL, and react/redux. Please contact me at [brian.m.carlson@gmail.com](mailto:brian.m.carlson@gmail.com) to discuss how I can help your company be more successful!

### Sponsorship :star:

If you are benefiting from node-postgres and would like to help keep the project financially sustainable please visit Brian Carlson's [Patreon page](https://www.patreon.com/node_postgres).

## Contributing

__:heart: contributions!__
5 changes: 5 additions & 0 deletions SPONSORS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
node-postgres is made possible by the helpful contributors from the community well as the following generous supporters on [Patreon](https://www.patreon.com/node_postgres).

# Leaders

# Supporters
- John Fawcett
- Lalit Kapoor [@lalitkapoor](https://twitter.com/lalitkapoor)
- Paul Frazee [@pfrazee](https://twitter.com/pfrazee)
3 changes: 2 additions & 1 deletion lib/result.js
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@
*/

var types = require('pg-types')
var escape = require('js-string-escape')

// result object returned from query
// in the 'end' event and also
@@ -82,7 +83,7 @@ var inlineParser = function (fieldName, i) {
// Addendum: However, we need to make sure to replace all
// occurences of apostrophes, not just the first one.
// See https://github.com/brianc/node-postgres/issues/934
fieldName.replace(/'/g, "\\'") +
escape(fieldName) +
"'] = " +
'rowData[' + i + '] == null ? null : parsers[' + i + '](rowData[' + i + ']);'
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pg",
"version": "7.1.0",
"version": "7.1.1",
"description": "PostgreSQL client - pure javascript & libpq with the same API",
"keywords": [
"postgres",
@@ -20,6 +20,7 @@
"dependencies": {
"buffer-writer": "1.0.1",
"packet-reader": "0.3.1",
"js-string-escape": "1.0.1",
"pg-connection-string": "0.1.3",
"pg-pool": "2.*",
"pg-types": "1.*",
10 changes: 10 additions & 0 deletions test/integration/client/field-name-escape-tests.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
var pg = require('./test-helper').pg

var sql = 'SELECT 1 AS "\\\'/*", 2 AS "\\\'*/\n + process.exit(-1)] = null;\n//"'

var client = new pg.Client()
client.connect()
client.query(sql, function (err, res) {
if (err) throw err
client.end()
})