Skip to content

Commit

Permalink
v0.7.2 (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Hahn authored Oct 28, 2019
1 parent 733468d commit 17e0797
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v0.7.2
* Properly reject unauthorized SSL certificates (#140)
* Minor tweaks to formatting in README (#136)
* Update Lodash to 4.17.15 (#141)

# v0.7.1
* Fix a User-Agent bug in Node (#132)
* Stop publishing non-essential files to npm (#128)
Expand Down
4 changes: 2 additions & 2 deletions build/airtable.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ function objectToQueryParamString(obj) {
module.exports = objectToQueryParamString;

},{"lodash/forEach":163,"lodash/isArray":169,"lodash/isNil":175}],8:[function(require,module,exports){
module.exports = "0.7.1";
module.exports = "0.7.2";

},{}],9:[function(require,module,exports){
'use strict';
Expand Down Expand Up @@ -602,7 +602,7 @@ function runAction(base, method, path, queryParams, bodyData, callback, numAttem
headers: headers,
// agentOptions are ignored when running in the browser.
agentOptions: {
rejectUnauthorized: base._airtable._allowUnauthorizedSsl
rejectUnauthorized: !base._airtable._allowUnauthorizedSsl
},
};

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "airtable",
"version": "0.7.1",
"version": "0.7.2",
"license": "MIT",
"homepage": "https://github.com/airtable/airtable.js",
"repository": "git://github.com/airtable/airtable.js.git",
Expand Down

0 comments on commit 17e0797

Please sign in to comment.