jsonfeed-to-atom
Advanced tools
Comparing version 1.2.4 to 1.2.5
@@ -10,6 +10,14 @@ # Changelog | ||
## [v1.2.4](https://github.com/bcomnes/jsonfeed-to-atom/compare/v1.2.3...v1.2.4) | ||
## [v1.2.5](https://github.com/bcomnes/jsonfeed-to-atom/compare/v1.2.4...v1.2.5) | ||
### Commits | ||
- No lockfile [`60c71f5`](https://github.com/bcomnes/jsonfeed-to-atom/commit/60c71f5772ed3d33a918980ad5fc4409d45c81a5) | ||
- Enable invalidCharReplacement instead of crashing [`7d4e56c`](https://github.com/bcomnes/jsonfeed-to-atom/commit/7d4e56c2ed2f43cbe89cdb85bd82a6de934fbed5) | ||
- Happy 2024 🎉 [`d6d8eff`](https://github.com/bcomnes/jsonfeed-to-atom/commit/d6d8eff82251b15be7e2b0d62b04c8d682fcb900) | ||
## [v1.2.4](https://github.com/bcomnes/jsonfeed-to-atom/compare/v1.2.3...v1.2.4) - 2023-05-03 | ||
### Commits | ||
- Add release automation [`bf98741`](https://github.com/bcomnes/jsonfeed-to-atom/commit/bf98741b3837ff914e18dfa367e8856d2b01c2d8) | ||
@@ -16,0 +24,0 @@ - Fix badges [`239274e`](https://github.com/bcomnes/jsonfeed-to-atom/commit/239274ee5ad15bcdb8c3b3332f63c00d381f9432) |
@@ -1,2 +0,1 @@ | ||
/** | ||
@@ -15,4 +14,9 @@ * Converts a parsed JSON feed to an atom feed document | ||
const feedObj = jsonfeedToAtomObject(jsonfeed, opts) | ||
const feed = builder.create(feedObj, { encoding: 'utf-8' }) | ||
const feed = builder.create(feedObj, { | ||
encoding: 'utf-8', | ||
skipNullAttributes: true, | ||
skipNullNodes: true, | ||
invalidCharReplacement: '' | ||
}) | ||
return feed.end({ pretty: true }) | ||
} |
{ | ||
"name": "jsonfeed-to-atom", | ||
"description": "Convert a JSON feed to an atom feed", | ||
"version": "1.2.4", | ||
"version": "1.2.5", | ||
"author": "Bret Comnes", | ||
@@ -6,0 +6,0 @@ "bugs": { |
@@ -34,3 +34,3 @@ { | ||
"@uri": "https://github.com/bcomnes/jsonfeed-to-atom#readme", | ||
"@version": "1.2.4", | ||
"@version": "1.2.5", | ||
"#text": "jsonfeed-to-atom" | ||
@@ -40,3 +40,3 @@ }, | ||
"logo": "https://bret.io/icon-512x512.png", | ||
"rights": "© 2023 Bret Comnes", | ||
"rights": "© 2024 Bret Comnes", | ||
"subtitle": "A running log of announcements, projects and accomplishments.", | ||
@@ -43,0 +43,0 @@ "entry": [ |
Sorry, the diff of this file is not supported yet
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
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
298171
1511