Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

flickr-sdk

Package Overview
Dependencies
Maintainers
4
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flickr-sdk - npm Package Compare versions

Comparing version 5.0.0 to 6.0.0

23

CHANGELOG.md

@@ -12,2 +12,19 @@ # Changelog

## [v6.0.0] - 2022-03-03
This release removes the old recent activity feed.
#### Removed
- [#149] Remove recentActivity feed ([@jeremyruppel])
## [v5.0.0] - 2022-02-07
As of this version we will now put params in the POST body instead of the query
string for methods that need it.
#### Changed
- [#147] Use params for REST API client ([@jeremyruppel])
## [v4.0.0] - 2021-11-08

@@ -204,3 +221,5 @@

[v4.0.0]: https://github.com/flickr/flickr-sdk/compare/v3.10.0...v4.0.0
[Unreleased]: https://github.com/flickr/flickr-sdk/compare/v4.0.0...master
[v5.0.0]: https://github.com/flickr/flickr-sdk/compare/v4.0.0...v5.0.0
[v6.0.0]: https://github.com/flickr/flickr-sdk/compare/v5.0.0...v6.0.0
[Unreleased]: https://github.com/flickr/flickr-sdk/compare/v6.0.0...master

@@ -237,2 +256,4 @@ <!-- pull requests -->

[#144]: https://github.com/flickr/flickr-sdk/pull/144
[#147]: https://github.com/flickr/flickr-sdk/pull/147
[#149]: https://github.com/flickr/flickr-sdk/pull/149

@@ -239,0 +260,0 @@ <!-- other links -->

2

package.json
{
"name": "flickr-sdk",
"version": "5.0.0",
"version": "6.0.0",
"description": "Almost certainly the best Flickr API client in the world for node and the browser",

@@ -5,0 +5,0 @@ "keywords": [

@@ -291,3 +291,2 @@ # flickr-sdk

* [.forum([args])](#Flickr.Feeds+forum) ⇒ <code>Request</code>
* [.recentActivity(args)](#Flickr.Feeds+recentActivity) ⇒ <code>Request</code>
* [.recentComments(args)](#Flickr.Feeds+recentComments) ⇒ <code>Request</code>

@@ -600,3 +599,2 @@

* [.forum([args])](#Flickr.Feeds+forum) ⇒ <code>Request</code>
* [.recentActivity(args)](#Flickr.Feeds+recentActivity) ⇒ <code>Request</code>
* [.recentComments(args)](#Flickr.Feeds+recentComments) ⇒ <code>Request</code>

@@ -697,15 +695,2 @@

<a name="Flickr.Feeds+recentActivity"></a>
#### feeds.recentActivity(args) ⇒ <code>Request</code>
Returns a list of recent comments on photostream and sets belonging to a given user.
**Kind**: instance method of [<code>Feeds</code>](#Flickr.Feeds)
**See**: https://www.flickr.com/services/feeds/docs/activity/
| Param | Type | Description |
| --- | --- | --- |
| args | <code>Object</code> | |
| args.user_id | <code>Number</code> \| <code>String</code> | The user ID to fetch recent activity for. |
<a name="Flickr.Feeds+recentComments"></a>

@@ -712,0 +697,0 @@

@@ -137,17 +137,2 @@ /*!

/**
* Returns a list of recent comments on photostream and sets belonging to a given user.
*
* @param {Object} args
* @param {Number|String} args.user_id The user ID to fetch recent activity for.
* @returns {Request}
* @see https://www.flickr.com/services/feeds/docs/activity/
*/
Feeds.prototype.recentActivity = function (args) {
validate(args, 'user_id');
return this._('activity', args);
};
/**
* Returns a list of recent comments that have been commented on by a given person.

@@ -154,0 +139,0 @@ *

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc