Skip to content

Releases: tflanagan/node-quickbase

v2.5.2

18 May 20:36
Compare
Choose a tag to compare
lib: apply unique filter to clist property

Defining a field id multiple times causes QuickBase to return that field
the same number of times. This increased bandwidth usage and processing
time.

v2.5.1

05 May 19:25
Compare
Choose a tag to compare
lib: fix error message translation from xml2js

v2.5.0

24 Apr 22:37
Compare
Choose a tag to compare
lib: added path setting for custom pathing

v2.4.1

07 Apr 20:59
Compare
Choose a tag to compare
build: added stand-alone file, updated pm configs

v2.4.0

04 Apr 21:56
Compare
Choose a tag to compare
lib,tests,deps: fix role related tests, debug, opt

- Fixed various tests related to Roles
- Added DEBUG property, defaults to false
- Added longStackTraces=false configuration for browsers, this will yeild
  a huge performance increase
- Updated dependencies
  - Bluebird 3.3.1 -> 3.3.4
  - Lodash.merge 4.2.0 -> 4.3.4

v2.3.4

23 Mar 16:54
Compare
Choose a tag to compare
lib,tests: fix parsing role names, add test for API_GetUserRole

v2.3.3

16 Feb 17:36
Compare
Choose a tag to compare
dep: update bluebird to 3.3.1

v2.3.2

30 Jan 22:05
Compare
Choose a tag to compare
lib: fix browser issue with util.deprecate()

When used in the browser, util.deprecate trigger a max call stack exceeded
error.

This removes the util module and replaces the util.deprecate call with a
homemade function.

v2.3.1

30 Jan 21:35
Compare
Choose a tag to compare
lib: replace missed .extend with merge

v2.3.0

30 Jan 21:30
Compare
Choose a tag to compare
- Deprecated native object extension "extend", please use lodash.merge
  from now on.
- Added lodash.merge dependency
- Added Application level API_GetSchema test.
- Exposed default settings via QuickBase.defaults.
- Using lodash.merge fixes a bug where settings could bleed into
  subsequent API calls.
- Added default values for Throttle arguments.
- Reduced code footprint by merging flattenXMLAttributes into cleanXML.
- Added static method checkIsArrAndConvert(). This also reduces code
  footprint.
- The addition of checkIsArrAndConvert and merging flattenXMLAttributes
  into cleanXML removed the need for the xmlNodeParsers "group" property.
- Updated README with class structure