Socket
Socket
Sign inDemoInstall

airtable

Package Overview
Dependencies
68
Maintainers
2
Versions
40
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.1 to 0.4.2

11

CHANGELOG.md

@@ -0,1 +1,12 @@

# v0.4.2
* Upgraded dependencies: async 1.5.2, request 2.73.0
# v0.4.1
* Fixed a bug that prevented records returned from select queries
from being deleted.
* Fixed the demo page (test/test_files/index.html)
# v0.4.0

@@ -2,0 +13,0 @@

2

lib/deprecate.js

@@ -0,1 +1,3 @@

'use strict';
var didWarnForDeprecation = {};

@@ -2,0 +4,0 @@

14

lib/table.js

@@ -47,5 +47,5 @@ 'use strict';

if (arguments.length > 1) {
console.warn('Airtable: `select` takes only one parameter, but it was given '
+ arguments.length + ' parameters. '
+ 'Use `eachPage` or `firstPage` to fetch records.');
console.warn('Airtable: `select` takes only one parameter, but it was given ' +
arguments.length + ' parameters. ' +
'Use `eachPage` or `firstPage` to fetch records.');
}

@@ -61,9 +61,9 @@

assert(false, 'Airtable: invalid parameters for `select`:\n'
+ formattedErrors.join('\n'));
assert(false, 'Airtable: invalid parameters for `select`:\n' +
formattedErrors.join('\n'));
}
if (validationResults.ignoredKeys.length) {
console.warn('Airtable: the following parameters to `select` will be ignored: '
+ validationResults.ignoredKeys.join(', '));
console.warn('Airtable: the following parameters to `select` will be ignored: ' +
validationResults.ignoredKeys.join(', '));
}

@@ -70,0 +70,0 @@

@@ -0,1 +1,3 @@

'use strict';
var _ = require('lodash');

@@ -2,0 +4,0 @@

{
"name": "airtable",
"version": "0.4.1",
"version": "0.4.2",
"homepage": "https://github.com/airtable/airtable.js",

@@ -8,5 +8,5 @@ "repository": "git://github.com/airtable/airtable.js.git",

"dependencies": {
"async": "0.9.0",
"request": "2.42.0",
"lodash": "2.4.1"
"async": "1.5.2",
"lodash": "2.4.1",
"request": "2.73.0"
},

@@ -13,0 +13,0 @@ "main": "./lib/airtable.js",

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc