Socket
Socket
Sign inDemoInstall

feedparser

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feedparser - npm Package Compare versions

Comparing version 0.19.1 to 0.19.2

1

examples/compressed.js

@@ -45,3 +45,2 @@ var request = require('request')

}
decompress.on('data', console.log);
return decompress ? res.pipe(decompress) : res;

@@ -48,0 +47,0 @@ }

6

History.md
v0.19.2 / 2014-09-02
==================
* Change ispermalink value check to be case-insensitive. Closes #123.
* Whoops. Remove debugging from example
v0.19.1 / 2014-07-31

@@ -3,0 +9,0 @@ ==================

@@ -814,3 +814,3 @@ /**********************************************************************

// in particular.
if (item.guid && type == 'rss' && name == 'guid' && attrs.ispermalink !== 'false') {
if (item.guid && type == 'rss' && name == 'guid' && !(attrs.ispermalink && attrs.ispermalink.match(/false/i))) {
item.permalink = item.guid;

@@ -817,0 +817,0 @@ }

@@ -5,3 +5,3 @@ {

"description": "Robust RSS Atom and RDF feed parsing using sax js",
"version": "0.19.1",
"version": "0.19.2",
"keywords": [

@@ -8,0 +8,0 @@ "rss",

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