-
Notifications
You must be signed in to change notification settings - Fork 34
/
History.txt
117 lines (73 loc) · 3.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
=== 1.1.0 / 2013-02-06
* Yandex is now also pinged when the sitemap is updated
* Deprecated methods from v1.0.0 now removed
=== 1.0.2 / 2013-02-06
* Fixes an issue with duplicate URLs
=== 1.0.1 / 2012-03-10
* Fixes an issue generating correct URL paths
=== 1.0.0 / 2011-10-24
* API Change: Sitemaps are now generated using a block syntax. Find methods are no longer the responsibility of BigSitemap. Instead, sitemaps are generated using a block, in which you call your own find methods, passing the results to BigSitemap with the 'add' method. See the README for details.
* BigSitemapRails and BigSitemapMerb are now BigSitemap::Rails and BigSitemap::Merb, respectively.
* Sitemap files are now placed in the document root by default
* Sitemaps are now automatically cleaned before generating the new set
* Search engines are now pinged automatically when the sitemap is generated
* Lock files are now generated automatically
* Sitemap files are no longer split amongst your models
=== 0.8.5 / 2011-10-20
* Gzipped files now include indents and newlines
=== 0.8.4 / 2011-10-20
* Fixes an issue where joins where causing ambiguous "id" column
(https://github.com/alexrabarts/big_sitemap/pull/17)
* Fixes an issue with empty <loc> nodes
(https://github.com/alexrabarts/big_sitemap/pull/20)
=== 0.8.3 / 2011-03-08
* Separate URL and file paths are now supported via the :document_path
and :url_path options
* Fixes an issue when initializing in Rails 3
=== 0.8.2 / 2011-01-25
* Fixes an issue where sitemap files were not being generated if the same model
was added more than once (fixes issue #5: https://github.com/alexrabarts/big_sitemap/issues/#issue/5)
=== 0.8.1 / 2011-01-25
* API change: Rails/Merb are no longer automatically detected - use BigSitemapRails and BigSitemapMerb instead
* API change: Rails' polymorphic_url helper is no longer used to generate URLs (use a lambda with the new :location option instead)
* Static resources can now be added using the add_static method
* Incremental updates are now available via the :partial_update option
* "loc" URL values can now be generated with lambdas
* Sitemap files can now be locked while being generated using the with_lock method
* Several bug fixes
=== 0.5.1 / 2009-09-07
* Fixes an issue with the :last_modified key being passed into the find method options
=== 0.5.0 / 2009-09-07
* Add support for lambdas when specifying lastmod
=== 0.4.0 / 2009-08-09
* Use Bing instead of Live/MSN. Note, this breaks backwards compatibility as
the old :ping_msn option is now :ping_bing.
=== 0.3.5 / 2009-08-05
* Fixed bugs in root_url generation and url_for_sitemap generation
=== 0.3.4 / 2009-07-02
* BigSitemap-specific options are no longer passed through to the ORM's find method
=== 0.3.2 / 2009-06-09
* Better handling of URLs when Rails' polymorphic_url isn't available in the model
=== 0.3.2 / 2009-06-09
* Fixes "uninitialized constant ActionController" error
* Fixes "Unknown key(s): path" error
=== 0.3.1 / 2009-04-18
* Fixes broken gemspec
=== 0.3.0 / 2009-04-06
* API change: Pass model through as first argument to add method, e.g.sitemap.add(Posts, {:path => 'articles'})
* API change: Use Rails' polymorphic_url helper to generate URLs if Rails is being used
* API change: Only ping search engines when ping_search_engines is explicitly called
* Add support for passing options through to the model's find method, e.g. :conditions
* Allow base URL to be specified as a hash as well as a string
* Add support for changefreq and priority
* Pluralize sitemap model filenames
* GZipping may optionally be turned off
=== 0.2.1 / 2009-03-12
* Normalize path arguments so it no longer matters whether a leading slash is used or not
=== 0.2.0 / 2009-03-11
* Methods are now chainable
=== 0.1.4 / 2009-03-11
* Add clean method to clear out Sitemaps directory
* Make methods chainable
=== 0.1.3 / 2009-03-10
* Initial release