flickr-sdk
Advanced tools
Comparing version 3.9.0 to 3.10.0
@@ -12,2 +12,9 @@ # Changelog | ||
## [v3.10.0] - 2020-11-30 | ||
#### Fixed | ||
- [#138] Use https for oauth example server ([@oluc]) | ||
- [#139] Use a default filename when uploading a buffer ([@blakecallens]) | ||
## [v3.9.0] - 2019-05-03 | ||
@@ -21,3 +28,3 @@ | ||
### Fixed | ||
#### Fixed | ||
@@ -161,2 +168,4 @@ - [#122] Dedupe items in the "extras" param if passed as a string, array, or set. ([@pdokas]) | ||
[@bwg]: https://github.com/bwg | ||
[@oluc]: https://github.com/oluc | ||
[@blakecallens]: https://github.com/blakecallens | ||
@@ -211,2 +220,4 @@ <!-- releases --> | ||
[#131]: https://github.com/flickr/flickr-sdk/pull/131 | ||
[#138]: https://github.com/flickr/flickr-sdk/pull/138 | ||
[#139]: https://github.com/flickr/flickr-sdk/pull/139 | ||
@@ -213,0 +224,0 @@ <!-- other links --> |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
{ | ||
"name": "flickr-sdk", | ||
"version": "3.9.0", | ||
"version": "3.10.0", | ||
"description": "Almost certainly the best Flickr API client in the world for node and the browser", | ||
@@ -41,5 +41,5 @@ "keywords": [ | ||
"author": [ | ||
"Jeremy Ruppel <ruppel@yahoo-inc.com>", | ||
"Alex Seville <seville@yahoo-inc.com>", | ||
"Phil Dokas <pdokas@yahoo-inc.com>" | ||
"Jeremy Ruppel", | ||
"Alex Seville", | ||
"Phil Dokas" | ||
], | ||
@@ -46,0 +46,0 @@ "license": "MIT", |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -4,0 +4,0 @@ */ |
/*! | ||
* Copyright 2017 Yahoo Holdings. | ||
* Copyright 2019 SmugMug, Inc. | ||
* Licensed under the terms of the MIT license. Please see LICENSE file in the project root for terms. | ||
@@ -57,3 +57,9 @@ */ | ||
this.attach('photo', file); | ||
// superagent and form-data try to assume the filename from the file value | ||
// given, but expect it to be passed explicitly if given a Buffer, so we'll | ||
// just make one up. Leave it falsy so that that we don't change | ||
// superagent's default behavior | ||
let filename = Buffer.isBuffer(file) ? 'flickr-sdk.jpg' : undefined; | ||
this.attach('photo', file, filename); | ||
this.field(args); | ||
@@ -60,0 +66,0 @@ this.use(xml); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
759043
20177