Commits on Mar 10, 2018
Commits on Feb 9, 2018
Commits on Feb 3, 2018
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Dec 4, 2017
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Sep 25, 2017
Commits on Sep 21, 2017
Commits on Sep 20, 2017
-
refactor(abstract/connection-manager) (#8330)
Resolves issue with acquire call which never finishes, resolve errors and connections and handle factory level error ourselves. Fixed issue with MSSQL / MySQL error out with resources currently not part of pool. Fixed evict setting so idle connections are properly removed on time and improved documentation around connection manager and various options
Commits on Jul 22, 2017
-
fix(connection): pg connection initialization regression (#7986)
In case the initial query contains multiple statements in the postgres connection manager, the result will be an array which is not being handled here. Since we are only interested in the rows from the very last statement, we can skip the rest. Closes #7985
Commits on Jul 20, 2017
Commits on Jul 13, 2017
Commits on Jul 10, 2017
-
-
style(spacing): add spacing rules to .eslintrc (#7921)
Requires a spaces after an if and before the opening brace of blocks
Commits on May 16, 2017
Commits on Feb 19, 2017
Commits on Jan 20, 2017
-
* generic pool update and other fixes * connection internally removed * doc entry * review changes * pooling changes
Commits on Aug 15, 2016
Commits on Jul 17, 2016
Commits on Jun 17, 2016
-
Fix #2852, Added DEBUG support and intensive connection logging (#6117)
* (feat) DEBUG and depd * query logging * connection logging * changelog for debug support * oopps, need the use strict * simplify debug and deprecation * context based logs * fixed variable name * sql logging contexts, message changes * message name change
Commits on Jun 8, 2016
-
ES6 refactor: dialects / PostgreSQL (#6048)
* ES6 refactor of hstore.js const, export * ES6 refactor of PostgresDialect const, classes, property shorthands, export default * ES6 refactor of postgres ConnectionManager classes, let, const, arrow functions, for of, export default * Make postgres Query an ES6 class * ES6 refactor of postgres Query let, const, arrow functions, property shorthands, export default * ES6 refactor of postgres QueryGenerator let, const, arrow functions, template strings where it was easy to implement * ES6 refactor of postgres range.js let, const, arrow functions, export
Commits on Apr 23, 2016
-
ConnectionManager: Re-throw initialization errors unless they are MOD…
…ULE_NOT_FOUND (#5784) As described in #3302 (comment)
Commits on Mar 30, 2016
Commits on Jan 30, 2016
Commits on Jan 21, 2016
-
Fix setting postgres timezone while fetching hstore oids.
Missing semicolon causes a query in the postgres connection manager to fail. Only crops up when fetching hstore oids, since another statement is added without a semicolon in-between.
Commits on Dec 15, 2015
Commits on Nov 10, 2015
-
bug(datatypes) Fix parsing of aliassed geometry field. Closes #4431
janmeier committedNov 10, 2015 -
feat(datatypes) Select oids dynamically for hstore and geometry in po…
…stgres
janmeier committedNov 10, 2015 -
feat(datatypes) Finish work on datatypes refactor
janmeier committedNov 10, 2015 -
feat(datatypes) Initial work on datatypes refactor
janmeier committedNov 10, 2015
Commits on Jul 26, 2015
-
feat(version) Automatically determine the database version when creat…
…ing the first connection. Re-roll of #3842
Commits on Jul 13, 2015
Commits on Apr 15, 2015
-
Ruben Bridgewater committed
Apr 15, 2015 -
I added - unused: "vars" // warns when you define and never use your variables - nonbsp: true // warns about "non-breaking whitespace" characters - maxdepth: 8 // lets you control how nested do you want your blocks to be - quotmark: false // true = all quotation marks have to either be single quotes or double quotes per file I tried to use this option with true, but I'm not sure how you like it that way. As here are quite a few use cases where single quotes would have to be escaped I removed: - trailing: true // this option no longer exists in jshint - expr: true // this option no longer exists in jshint - sub: true // suppresses warnings about using [] notation when it can be expressed in dot notation: person['name'] vs. person.name I also used maxlen: 200 for a while, but I'm not sure how the line breaks work for the docs, since I did not try that. I still think it would be a good option to use Be aware, that a couple of options are deprecated and will be removed at some point. Instead jscs could be used to enforce styling warnings.
Ruben Bridgewater committedApr 15, 2015
Commits on Feb 2, 2015
-
Update message level sent to client on postgres
Rui Marinho committedFeb 2, 2015
Commits on Dec 8, 2014
-
Merge pull request #2576 from DavidTPate/feature/mysql-connection-fai…
…lure-errors Add Connection Specific Errors