forked from aasmith/feed-normalizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
History.txt
52 lines (37 loc) · 1.91 KB
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
1.5.1
* Fix a bug that was breaking the parsing process for certain feeds. [reported by: Patrick Minton]
1.5.0
* Add support for new fields:
* Atom 0.3: issued is now available through entry.date_published.
* RSS: feed.skip_hours, feed.skip_days, feed.ttl [joshpeek]
* All: entry.last_updated, this is an alias to entry.date_published for RSS.
* Rewrite relative links in content [joshpeek]
* Handle CDATA sections consistently across all formats. [sam.lown]
* Prevent SimpleRSS from doing its own escaping. [reported by: paul.stadig, lionel.bouton]
* Reparse Time classes [reported by: sam.lown]
1.4.0
* Support content:encoded. Accessible via Entry#content.
* Support categories. Accessible via Entry#categories.
* Introduces a new parsing feature 'loose parsing'. Use :loose => true
when parsing if the required output should retain extra data, rather
than drop it in the interests of 'lowest common denomiator' normalization.
Currently affects how categories works. See the documentation in
FeedNormalizer#parse for more details.
1.3.2
* Add support for applicable dublin core elements. (dc:date and dc:creator)
* Feeds can now be dumped to YAML.
1.3.1
* Small changes to work with hpricot 0.6. This release depends on hpricot 0.6.
* Reduced the greediness of a regexp that was removing html comments.
1.3.0
* Small changes to work with hpricot 0.5.
1.2.0
* Added HtmlCleaner - sanitizes HTML and removes 'bad' URIs to a level suitable
for 'safe' display inside a web browser. Can be used as a standalone library,
or as part of the Feed object. See Feed.clean! for details about cleaning a
Feed instance. Also see HtmlCleaner and its unit tests. Uses Hpricot.
* Added Feed-diffing. Differences between two feeds can be displayed using
Feed.diff. Works nicely with YAML for a readable diff.
* FeedNormalizer.parse now takes a hash for its arguments.
* Removed FN::Content.
* Now uses Hoe!