- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Comparing changes
Open a pull request
base repository: brianc/node-postgres
base: pg@8.5.1
head repository: brianc/node-postgres
compare: pg@8.6.0
Commits on Nov 27, 2020
-
Co-authored-by: Wolfgang Walther <wolfgangwalther@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for c6aa29a - Browse repository at this point
Copy the full SHA c6aa29aView commit details
Commits on Nov 30, 2020
-
Fix double readyForQuery (#2420)
This is fixing a double readyForQuery message being sent from the backend (because we were calling sync after an error, which I already fixed in the main driver). Also closes #2333
Configuration menu - View commit details
-
Copy full SHA for 4fde8b7 - Browse repository at this point
Copy the full SHA 4fde8b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5de36c7 - Browse repository at this point
Copy the full SHA 5de36c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa4549a - Browse repository at this point
Copy the full SHA fa4549aView commit details -
Update changelog for pg-query-stream
Document the conversion to typescript as a semver major change. Closes #2412.
Configuration menu - View commit details
-
Copy full SHA for 54b8752 - Browse repository at this point
Copy the full SHA 54b8752View commit details
Commits on Dec 3, 2020
-
Configuration menu - View commit details
-
Copy full SHA for afb3bf3 - Browse repository at this point
Copy the full SHA afb3bf3View commit details
Commits on Dec 30, 2020
-
Add more SASL validation and fix tests (#2436)
* Add sha256 SASL helper * Rename internal createHMAC(...) to hmacSha256(...) * Add parseAttributePairs(...) helper for SASL * Tighten arg checks in SASL xorBuffers(...) * Add SASL nonce check for printable chars * Add SASL server salt and server signature base64 validation * Add check for non-empty SASL server nonce * Rename SASL helper to parseServerFirstMessage(...) * Add parameter validation to SASL continueSession(...) * Split out SASL final message parsing into parseServerFinalMessage(...) * Fix SCRAM tests Removes custom assert.throws(...) so that the real one from the assert package is used and fixes the SCRAM tests to reflect the updated error messages and actual checking of errors. Previously the custom assert.throws(...) was ignoring the error signature validation.
Configuration menu - View commit details
-
Copy full SHA for a109e8c - Browse repository at this point
Copy the full SHA a109e8cView commit details -
Make tests pass in github codespaces (#2437)
* Make tests pass in github codespaces There were a few tests which didn't specify a host or port which wasn't working well inside the codespaces docker environment. Added host & port where required. Also noticed one test wasn't actually _testing_, it was just `console.log`-ing its output, so I added proper assertions there. Finally set `PGTESTNOSSL: true` in the codespaces environment until I can get the postgres docker container configured w/ SSL...which I will do l8r. * lint
Configuration menu - View commit details
-
Copy full SHA for daeafe8 - Browse repository at this point
Copy the full SHA daeafe8View commit details -
docs(README.md): add link to documentation repo (#2434)
since it's currently the only way to look up documentation for old versions
Configuration menu - View commit details
-
Copy full SHA for 3f3f1a7 - Browse repository at this point
Copy the full SHA 3f3f1a7View commit details
Commits on Jan 19, 2021
-
Configuration menu - View commit details
-
Copy full SHA for fae2c98 - Browse repository at this point
Copy the full SHA fae2c98View commit details
Commits on Jan 23, 2021
-
6be3b90 added support for the `sslmode` parameter, not `ssl-mode`.
Configuration menu - View commit details
-
Copy full SHA for 4bc5583 - Browse repository at this point
Copy the full SHA 4bc5583View commit details
Commits on Jan 27, 2021
-
update license copyright year (#2450)
updates license copyright year to 2021
Configuration menu - View commit details
-
Copy full SHA for b4f61ad - Browse repository at this point
Copy the full SHA b4f61adView commit details -
Bump ini from 1.3.5 to 1.3.8 (#2430)
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. - [Release notes](https://github.com/isaacs/ini/releases) - [Commits](npm/ini@v1.3.5...v1.3.8) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 4cb73eb - Browse repository at this point
Copy the full SHA 4cb73ebView commit details
Commits on Jan 29, 2021
-
Fix README to separate sponsors onto separate lines (#2459)
Splits sponsor listings onto multiple lines by putting them in list elements. Also removes hidden inline png that does not render on the README.
Configuration menu - View commit details
-
Copy full SHA for 25f658f - Browse repository at this point
Copy the full SHA 25f658fView commit details
Commits on Mar 12, 2021
-
Add missing metadata to package.jsons (#2487)
Co-authored-by: Emily Marigold Klassen <forivall@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 5a41a56 - Browse repository at this point
Copy the full SHA 5a41a56View commit details -
Adding pg to peerDependencies (#2471)
* Adding pg to peerDependencies Yarn2 requires strict imports, I.E. all project dependencies need to exist in that project's package.json. * pg version should be locked on the major version Co-authored-by: Charmander <~@charmander.me> Co-authored-by: Charmander <~@charmander.me>
Configuration menu - View commit details
-
Copy full SHA for 2a7c614 - Browse repository at this point
Copy the full SHA 2a7c614View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61dfda7 - Browse repository at this point
Copy the full SHA 61dfda7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 69af1cc - Browse repository at this point
Copy the full SHA 69af1ccView commit details -
[pg-protocol] use literals instead of const enum (#2490)
Co-authored-by: Emily Marigold Klassen <forivall@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 45fa27e - Browse repository at this point
Copy the full SHA 45fa27eView commit details
Commits on Mar 22, 2021
-
pg: Re-export DatabaseError from 'pg-protocol' (#2445)
* pg: Re-export DatabaseError from 'pg-protocol' Before, users would have to import DatabaseError from 'pg-protocol'. If there are multiple versions of 'pg-protocol', you might end up using the wrong one. Closes #2378 * Update error-handling-tests.js * Update query-error-handling-tests.js Co-authored-by: Brian C <brian.m.carlson@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4b22927 - Browse repository at this point
Copy the full SHA 4b22927View commit details
Commits on Apr 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 3dc79b6 - Browse repository at this point
Copy the full SHA 3dc79b6View commit details
Commits on Apr 6, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 6121bd3 - Browse repository at this point
Copy the full SHA 6121bd3View commit details
Commits on Apr 13, 2021
-
Configuration menu - View commit details
-
Copy full SHA for d99b574 - Browse repository at this point
Copy the full SHA d99b574View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8faf8a0 - Browse repository at this point
Copy the full SHA 8faf8a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3115be6 - Browse repository at this point
Copy the full SHA 3115be6View commit details -
- pg-connection-string@2.5.0 - pg-cursor@2.6.0 - pg-pool@3.3.0 - pg-protocol@1.5.0 - pg-query-stream@4.1.0 - pg@8.6.0
Configuration menu - View commit details
-
Copy full SHA for d459479 - Browse repository at this point
Copy the full SHA d459479View commit details
There are no files selected for viewing