reallysimple 0.4.23 → 0.4.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "reallysimple",
3
3
  "description": "A Node package that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history.",
4
- "version": "0.4.23",
4
+ "version": "0.4.24",
5
5
  "author": "Dave Winer <dave@scripting.com>",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies" : {
17
17
  "marked": "*",
18
- "node-emoji": "*",
18
+ "node-emoji": "1.11.0",
19
19
  "opml": "*",
20
20
  "daveutils": "*",
21
21
  "davefeedread": ">=0.5.23"
package/reallysimple.js CHANGED
@@ -1,4 +1,4 @@
1
- var myProductName = "reallysimple", myVersion = "0.4.23";
1
+ var myProductName = "reallysimple", myVersion = "0.4.24";
2
2
 
3
3
  exports.readFeed = readFeed;
4
4
  exports.convertFeedToOpml = convertFeedToOpml;
package/worknotes.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Worknotes
2
2
 
3
+ #### 5/16/23 by DW -- v0.4.24
4
+
5
+ Believe it or not node-emoji of all things introduced a breaking change, so we have to hold at v1.11.0.
6
+
7
+ I'm not sure if this will get it to work, but emoji is a nice feature to have not a <i>required</i> feature.
8
+
3
9
  #### 3/22/23 by DW -- v0.4.23
4
10
 
5
11
  Allow for the possibility that rss:guid elements might not have atttributes. I know it happens because when it does FeedLand crashes. ;-)