Skip to content

Commits on Mar 10, 2018

  1. fix(postgresql): search path with datatypes that use dynamic oids (#9148

    )
    hisorange authored and sushantdhiman committed Mar 10, 2018

Commits on Feb 9, 2018

Commits on Feb 3, 2018

  1. fix: pg@7 incompatibilities (#8979)

    sushantdhiman committed Feb 3, 2018

Commits on Dec 4, 2017

  1. feat(datatypes): array(enum) support for PostgreSQL (#8738)

    sushantdhiman committed Dec 4, 2017

Commits on Sep 25, 2017

  1. refactor(lodash): use lodash directly (#8368)

    mkaufmaner authored and sushantdhiman committed Sep 25, 2017

Commits on Sep 21, 2017

  1. feat: postgres connection option 'statement_timeout' (#8342)

    amasad authored and sushantdhiman committed Sep 21, 2017

Commits on Sep 20, 2017

  1. 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
    sushantdhiman committed Sep 20, 2017

Commits on Jul 22, 2017

  1. 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
    clncln1 authored and felixfbecker committed Jul 22, 2017

Commits on Jul 20, 2017

  1. feat(dependency): Support pg version 7 (#7888)

    alitaheri authored and felixfbecker committed Jul 20, 2017

Commits on Jul 13, 2017

  1. fix(connection): pick keepAlive dialectOption (#7927)

    contactakagrawal authored and felixfbecker committed Jul 13, 2017

Commits on Jul 10, 2017

  1. chore(package): update eslint to version 4.2.0 (#7908)

    greenkeeper authored and felixfbecker committed Jul 10, 2017
  2. style(spacing): add spacing rules to .eslintrc (#7921)

    Requires a spaces after an if and before the opening brace of blocks
    felixfbecker committed Jul 10, 2017

Commits on May 16, 2017

  1. Add arrow-parens rule to ESLint (#7639)

    felixfbecker authored and janmeier committed May 16, 2017

Commits on Feb 19, 2017

  1. fix error when connect to Postgres 8.2.0(fix #5254) (#7266)

    * fix error when connect to Postgres 8.2.0
    
    * Update sequelize.md
    
    * separating version check for clean code
    
    * changelog: properly state oids for postgres
    vickymin authored and sushantdhiman committed Feb 19, 2017

Commits on Jan 20, 2017

  1. Generic Pool Update (#7109)

    * generic pool update and other fixes
    
    * connection internally removed
    
    * doc entry
    
    * review changes
    
    * pooling changes
    sushantdhiman committed Jan 20, 2017

Commits on Aug 15, 2016

  1. Fix all auto-fixable ESLint issues (#6436)

    felixfbecker authored and janmeier committed Aug 15, 2016

Commits on Jul 17, 2016

  1. Remove dollar prefix from identifiers (#6289)

    felixfbecker authored and mickhansen committed Jul 17, 2016

Commits on Jun 17, 2016

  1. 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
    sushantdhiman authored and mickhansen committed Jun 17, 2016

Commits on Jun 8, 2016

  1. 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
    felixfbecker authored and janmeier committed Jun 8, 2016

Commits on Apr 23, 2016

  1. ConnectionManager: Re-throw initialization errors unless they are MOD…

    …ULE_NOT_FOUND (#5784)
    
    As described in #3302 (comment)
    yoz authored and mickhansen committed Apr 23, 2016

Commits on Mar 30, 2016

  1. Update Postgres connect manager (browserify fix).

    icereval authored and janmeier committed Mar 30, 2016

Commits on Jan 30, 2016

  1. geography and tests

    onzag committed Jan 30, 2016

Commits on Jan 21, 2016

  1. 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.
    karthikv committed Jan 21, 2016

Commits on Dec 15, 2015

Commits on Jul 26, 2015

  1. feat(version) Automatically determine the database version when creat…

    …ing the first connection. Re-roll of #3842
    janmeier committed Jul 26, 2015

Commits on Jul 13, 2015

  1. Correct error message to show exact module name

    atorkhov committed Jul 13, 2015

Commits on Apr 20, 2015

Commits on Apr 15, 2015

  1. Remove unused parameters

    Ruben Bridgewater
    Ruben Bridgewater committed Apr 15, 2015
  2. Use stricter jshint settings

    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
    Ruben Bridgewater committed Apr 15, 2015

Commits on Feb 2, 2015

  1. Update message level sent to client on postgres

    Rui Marinho
    Rui Marinho committed Feb 2, 2015

Commits on Dec 8, 2014

  1. Merge pull request #2576 from DavidTPate/feature/mysql-connection-fai…

    …lure-errors
    
    Add Connection Specific Errors
    janmeier committed Dec 8, 2014
Older
You can’t perform that action at this time.