sitemap_generator 7.0.3 → 7.1.0
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.
- checksums.yaml +4 -4
- data/CHANGES.md +73 -64
- data/README.md +142 -143
- data/VERSION +1 -1
- data/lib/capistrano/sitemap_generator.rb +2 -0
- data/lib/sitemap_generator/adapters/active_storage_adapter.rb +15 -10
- data/lib/sitemap_generator/adapters/aws_sdk_adapter.rb +13 -12
- data/lib/sitemap_generator/adapters/file_adapter.rb +10 -13
- data/lib/sitemap_generator/adapters/fog_adapter.rb +2 -2
- data/lib/sitemap_generator/adapters/google_storage_adapter.rb +5 -4
- data/lib/sitemap_generator/adapters/s3_adapter.rb +15 -14
- data/lib/sitemap_generator/adapters/wave_adapter.rb +5 -5
- data/lib/sitemap_generator/application.rb +5 -3
- data/lib/sitemap_generator/builder/sitemap_file.rb +17 -14
- data/lib/sitemap_generator/builder/sitemap_index_file.rb +20 -18
- data/lib/sitemap_generator/builder/sitemap_index_url.rb +5 -6
- data/lib/sitemap_generator/builder/sitemap_url.rb +58 -34
- data/lib/sitemap_generator/builder.rb +4 -2
- data/lib/sitemap_generator/core_ext/big_decimal.rb +38 -33
- data/lib/sitemap_generator/core_ext/numeric.rb +50 -46
- data/lib/sitemap_generator/helpers/number_helper.rb +52 -46
- data/lib/sitemap_generator/interpreter.rb +11 -15
- data/lib/sitemap_generator/link_set.rb +63 -65
- data/lib/sitemap_generator/railtie.rb +1 -0
- data/lib/sitemap_generator/simple_namer.rb +3 -4
- data/lib/sitemap_generator/sitemap_location.rb +44 -36
- data/lib/sitemap_generator/tasks.rb +1 -1
- data/lib/sitemap_generator/templates.rb +6 -7
- data/lib/sitemap_generator/utilities.rb +25 -17
- data/lib/sitemap_generator.rb +22 -14
- data/lib/tasks/sitemap_generator_tasks.rake +2 -0
- data/rails/install.rb +2 -0
- data/rails/uninstall.rb +2 -0
- data/templates/sitemap.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b18ba1ba719a39678730f1b1e4c76f9162725c3cf0b355510738a5586e566eff
|
|
4
|
+
data.tar.gz: 67dc99385dee6022f06a66945c75b24497bea9f9fc573c1ab866fcb583dc5c0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97fb528cf9d949463a89f3ded008df4516766aa978462954184aca1aae83fa6aa590d6efc9e81fb2f7d6a3f8f82b7fcbe0c07a5a855539c23ba86bd1ec7ae552
|
|
7
|
+
data.tar.gz: cba27e4d71b77be16ce19e6cd0dae400d2a86570e8e0d637b102c83c841440cf86d9e0aa5a6e7365a3a3885ef622fd26e5c581d68d25f437eff6f78a5aacdd2f
|
data/CHANGES.md
CHANGED
|
@@ -1,14 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 7.1.0
|
|
4
|
+
|
|
5
|
+
* **Breaking:** `SitemapGenerator::FileAdapter#plain` has been removed. It was an internal helper inlined into `#write` to fix a file descriptor leak; any code calling it directly should call `#write` instead. [#492](https://github.com/kjvarga/sitemap_generator/pull/492)
|
|
6
|
+
* **Breaking:** `SitemapGenerator::FileAdapter#gzip` is now private. It was always an implementation detail; external callers should not need to invoke it directly. [#492](https://github.com/kjvarga/sitemap_generator/pull/492)
|
|
7
|
+
* Fix: `AwsSdkAdapter` and `S3Adapter` now derive the `Content-Type` header from the file extension (`.xml` → `application/xml`, `.xml.gz` → `application/x-gzip`) via the new `SitemapLocation#content_type` helper, rather than always sending `application/x-gzip`. [#329](https://github.com/kjvarga/sitemap_generator/issues/329) [#338](https://github.com/kjvarga/sitemap_generator/issues/338) [#495](https://github.com/kjvarga/sitemap_generator/pull/495)
|
|
8
|
+
* Docs: Replace broken links in README and CHANGES.md; add deprecation notices for mobile sitemaps (deprecated by Google in August 2022) and geo sitemaps (retired by Google in February 2012). [#497](https://github.com/kjvarga/sitemap_generator/pull/497)
|
|
9
|
+
* Internal: enforce RuboCop across all source files, resolve all pre-existing offenses, add RuboCop and mdl (Markdown) linting to GitHub Actions CI, and add pre-commit git hooks that lint staged Ruby and Markdown files locally. [#487](https://github.com/kjvarga/sitemap_generator/pull/487) [#492](https://github.com/kjvarga/sitemap_generator/pull/492) [#493](https://github.com/kjvarga/sitemap_generator/pull/493) [#494](https://github.com/kjvarga/sitemap_generator/pull/494) [#500](https://github.com/kjvarga/sitemap_generator/pull/500)
|
|
10
|
+
|
|
11
|
+
## 7.0.3
|
|
2
12
|
|
|
3
13
|
* **Regression fix:** Revert railtie enhancements (#478) that were unintentionally included in 7.0.2. Those changes introduced an `ArgumentError: Missing host to link to!` during `assets:precompile` and other Rails boot contexts where no host is configured (reported in [#488](https://github.com/kjvarga/sitemap_generator/issues/488)). The railtie is restored to its 7.0.1 behaviour: it loads rake tasks only. The enhancements will return in a future release with proper documentation and test coverage. [#489](https://github.com/kjvarga/sitemap_generator/pull/489)
|
|
4
14
|
* **Bugfix:** Restore sitemap generation on Ruby 2.x when `--enable=frozen-string-literal` is set globally. Ruby 2.6/2.7 freezes interpolated heredocs under that flag, causing `gsub!` to raise `FrozenError`. [#486](https://github.com/kjvarga/sitemap_generator/pull/486)
|
|
5
15
|
* Internal: skip duplicate git tag creation in the release task if the tag already points at HEAD.
|
|
6
16
|
|
|
7
|
-
|
|
17
|
+
## 7.0.2
|
|
8
18
|
|
|
9
19
|
* Reduce string copies and improve compatibility with `frozen_string_literal`. [#456](https://github.com/kjvarga/sitemap_generator/pull/456)
|
|
10
20
|
|
|
11
|
-
|
|
21
|
+
## 7.0.1
|
|
12
22
|
|
|
13
23
|
* **Breaking:** Default search engines list is empty. `rake sitemap:refresh` and `ping_search_engines` perform no HTTP pings unless you configure engine URLs on `search_engines` or pass them into `ping_search_engines` (Google’s ping endpoint is deprecated upstream). [#444](https://github.com/kjvarga/sitemap_generator/pull/444)
|
|
14
24
|
* **Breaking:** `LinkSet#create` runs `finalize!` only when a block is given. Calling `create` without a block requires `finalize!` when you are done adding links (supported workflow for programmatic builds). [#463](https://github.com/kjvarga/sitemap_generator/pull/463)
|
|
@@ -24,18 +34,18 @@
|
|
|
24
34
|
* Add support for Ruby 4.0 [#466](https://github.com/kjvarga/sitemap_generator/pull/466)
|
|
25
35
|
* Add ActiveStorage adapter (`ActiveStorage::Blob`) [#467](https://github.com/kjvarga/sitemap_generator/pull/467)
|
|
26
36
|
|
|
27
|
-
|
|
37
|
+
## 6.3.0
|
|
28
38
|
|
|
29
39
|
* Remove Bing's deprecated sitemap submission [#400](https://github.com/kjvarga/sitemap_generator/pull/400).
|
|
30
40
|
* `SitemapGenerator::AwsSdkAdapter`: Support configuring ACL and caching on the uploaded files [#409](https://github.com/kjvarga/sitemap_generator/pull/409).
|
|
31
41
|
* `SitemapGenerator::GoogleStorageAdapter`: Support configuring ACL on the uploaded files [#410](https://github.com/kjvarga/sitemap_generator/pull/410).
|
|
32
42
|
* Fix CircleCI specs for Ruby 3 [#407](https://github.com/kjvarga/sitemap_generator/pull/407).
|
|
33
43
|
|
|
34
|
-
|
|
44
|
+
## 6.2.1
|
|
35
45
|
|
|
36
46
|
* Bugfix: Improve handling of deprecated options in `AwsSdkAdapter`. Fixes bug where `:region` was being set to `nil`. [#390](https://github.com/kjvarga/sitemap_generator/pull/390).
|
|
37
47
|
|
|
38
|
-
|
|
48
|
+
## 6.2.0
|
|
39
49
|
|
|
40
50
|
* Raise `LoadError` when an adapter's dependency is missing to better support Sorbet [#387](https://github.com/kjvarga/sitemap_generator/pull/387).
|
|
41
51
|
* Update the Bing notification URL [#386](https://github.com/kjvarga/sitemap_generator/pull/386).
|
|
@@ -44,29 +54,29 @@
|
|
|
44
54
|
* `SitemapGenerator::GoogleStorageAdapter`: Support ruby 3 kwarg changes [#375](https://github.com/kjvarga/sitemap_generator/pull/375).
|
|
45
55
|
* `SitemapGenerator::S3Adapter`: Allow Fog `public` option to be Configurable [#359](https://github.com/kjvarga/sitemap_generator/pull/359).
|
|
46
56
|
|
|
47
|
-
|
|
57
|
+
## 6.1.2
|
|
48
58
|
|
|
49
59
|
* Resolve NoMethodError using URI#open for Ruby less than 2.5.0 [#353](https://github.com/kjvarga/sitemap_generator/pull/353)
|
|
50
60
|
|
|
51
|
-
|
|
61
|
+
## 6.1.1
|
|
52
62
|
|
|
53
63
|
* Resolve deprecation warning on using Kernel#open in Ruby 2.7 (use URI.open instead) [#342](https://github.com/kjvarga/sitemap_generator/pull/342)
|
|
54
64
|
* Support S3 Endpoints for S3 Compliant Providers like DigitalOcean Spaces [#325](https://github.com/kjvarga/sitemap_generator/pull/325)
|
|
55
65
|
|
|
56
|
-
|
|
66
|
+
## 6.1.0
|
|
57
67
|
|
|
58
68
|
* Support uploading files to Google Cloud Storage [#326](https://github.com/kjvarga/sitemap_generator/pull/326) and [#340](https://github.com/kjvarga/sitemap_generator/pull/340)
|
|
59
69
|
|
|
60
|
-
|
|
70
|
+
## 6.0.2
|
|
61
71
|
|
|
62
72
|
* Resolve `BigDecimal.new is deprecated` warnings in Ruby 2.5 [#305](https://github.com/kjvarga/sitemap_generator/pull/305).
|
|
63
73
|
* Resolve `instance variable not initialized`, `File.exists? is deprecated` and `'*' interpreted as argument prefix` warnings [#304](https://github.com/kjvarga/sitemap_generator/pull/304).
|
|
64
74
|
|
|
65
|
-
|
|
75
|
+
## 6.0.1
|
|
66
76
|
|
|
67
77
|
* Use `yaml_tag` instead of `yaml_as`, which was deprecated in Ruby 2.4, and removed in 2.5 [#298](https://github.com/kjvarga/sitemap_generator/pull/298).
|
|
68
78
|
|
|
69
|
-
|
|
79
|
+
## 6.0.0
|
|
70
80
|
|
|
71
81
|
*Backwards incompatible changes*
|
|
72
82
|
|
|
@@ -79,12 +89,12 @@
|
|
|
79
89
|
|
|
80
90
|
* If Rails is defined but the application is not loaded, don't include the URL helpers.
|
|
81
91
|
|
|
82
|
-
|
|
92
|
+
## 5.3.1
|
|
83
93
|
|
|
84
94
|
* Ensure files have 644 permissions when building to try to address issue [#264](https://github.com/kjvarga/sitemap_generator/issues/264)
|
|
85
95
|
* Use HTTPS in the Gemfile (PR #[#263](https://github.com/kjvarga/sitemap_generator/pull/263))
|
|
86
96
|
|
|
87
|
-
|
|
97
|
+
## 5.3.0
|
|
88
98
|
|
|
89
99
|
* Add `max_sitemap_links` option support for limiting how many links each sitemap can hold. Issue [#188](https://github.com/kjvarga/sitemap_generator/issues/188) PR [#262](https://github.com/kjvarga/sitemap_generator/pull/262)
|
|
90
100
|
* Upgrade development dependencies
|
|
@@ -95,39 +105,39 @@
|
|
|
95
105
|
* Use presence of `Rails::VERSION` to detect when running under Rails, rather than just `Rails` constant. PR [#221](https://github.com/kjvarga/sitemap_generator/pull/221)
|
|
96
106
|
* Remove gem post-install message warning about incompatible changes in version 4
|
|
97
107
|
|
|
98
|
-
|
|
108
|
+
## 5.2.0
|
|
99
109
|
|
|
100
110
|
* New `SitemapGenerator::AwsSdkAdapter` adapter using the bare aws-sdk gem.
|
|
101
111
|
* Fix Bing ping url.
|
|
102
112
|
* Support string option keys passed to `add`.
|
|
103
113
|
* In Railtie, Load the rake task instead of requiring them.
|
|
104
114
|
|
|
105
|
-
|
|
115
|
+
## 5.1.0
|
|
106
116
|
|
|
107
117
|
* Require only `fog-aws` instead of `fog` for the `S3Adapter` and support using IAM profile instead of setting access key & secret directly.
|
|
108
118
|
* Implement `respond_to?` on the `SitemapGenerator::Sitemap` pseudo class.
|
|
109
119
|
* Make `:lang` optional on alternate links so they can be used for [AppIndexing](https://developers.google.com/app-indexing/reference/deeplinks).
|
|
110
120
|
* Documented Mobile Sitemaps `:mobile` option.
|
|
111
121
|
|
|
112
|
-
|
|
122
|
+
## 5.0.5
|
|
113
123
|
|
|
114
124
|
* Use MIT licence.
|
|
115
125
|
* Fix deploys with Capistrano 3 ([#163](https://github.com/kjvarga/sitemap_generator/issues/163)).
|
|
116
126
|
* Allow any Fog storage options for S3 adapter ([#167](https://github.com/kjvarga/sitemap_generator/pull/167)).
|
|
117
127
|
|
|
118
|
-
|
|
128
|
+
## 5.0.4
|
|
119
129
|
|
|
120
130
|
* Don't include the `media` attribute on alternate links unless it's given
|
|
121
131
|
|
|
122
|
-
|
|
132
|
+
## 5.0.3
|
|
123
133
|
|
|
124
134
|
* Add support for Video sitemaps options `:live` and ':requires_subscription'
|
|
125
135
|
|
|
126
|
-
|
|
136
|
+
## 5.0.2
|
|
127
137
|
|
|
128
138
|
* Set maximum filesize to 10,000,000 bytes rather than 10,485,760 bytes.
|
|
129
139
|
|
|
130
|
-
|
|
140
|
+
## 5.0.1
|
|
131
141
|
|
|
132
142
|
* Include new `SitemapGenerator::FogAdapter` ([#138](https://github.com/kjvarga/sitemap_generator/pull/138)).
|
|
133
143
|
* Fix usage of attr_* methods in `LinkSet`
|
|
@@ -135,30 +145,30 @@
|
|
|
135
145
|
* Fix breaking spec in Ruby 2 ([#142](https://github.com/kjvarga/sitemap_generator/pull/142)).
|
|
136
146
|
* Include Capistrano 3.x tasks ([#141](https://github.com/kjvarga/sitemap_generator/pull/141)).
|
|
137
147
|
|
|
138
|
-
|
|
148
|
+
## 5.0.0
|
|
139
149
|
|
|
140
150
|
* Support new `:compress` option for customizing which files get compressed.
|
|
141
151
|
* Remove old deprecated methods:
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
152
|
+
* Removed options to `LinkSet::add()`: `:sitemaps_namer` and `:sitemap_index_namer` (use `:namer` option)
|
|
153
|
+
* Removed `LinkSet::sitemaps_namer=`, `LinkSet::sitemaps_namer` (use `LinkSet::namer=` and `LinkSet::namer`)
|
|
154
|
+
* Removed `LinkSet::sitemaps_index_namer=`, `LinkSet::sitemaps_index_namer` (use `LinkSet::namer=` and `LinkSet::namer`)
|
|
155
|
+
* Removed the `SitemapGenerator::SitemapNamer` class (use `SitemapGenerator::SimpleNamer`)
|
|
156
|
+
* Removed `LinkSet::add_links()` (use `LinkSet::create()`)
|
|
147
157
|
* Support `fog_path_style` option in the `SitemapGenerator::S3Adapter` so buckets with dots in the name work over HTTPS without SSL certificate problems.
|
|
148
158
|
|
|
149
|
-
|
|
159
|
+
## 4.3.1
|
|
150
160
|
|
|
151
161
|
* Support integer timestamps.
|
|
152
162
|
* Update README for new features added in last release.
|
|
153
163
|
|
|
154
|
-
|
|
164
|
+
## 4.3.0
|
|
155
165
|
|
|
156
166
|
* Support `media` attibute on alternate links ([#125](https://github.com/kjvarga/sitemap_generator/issues/125)).
|
|
157
167
|
* Changed `SitemapGenerator::S3Adapter` to write files in a single operation, avoiding potential permissions errors when listing a directory prior to writing ([#130](https://github.com/kjvarga/sitemap_generator/issues/130)).
|
|
158
168
|
* Remove Sitemap Writer from ping task ([#129](https://github.com/kjvarga/sitemap_generator/issues/129)).
|
|
159
169
|
* Support `url:expires` element ([#126](https://github.com/kjvarga/sitemap_generator/issues/126)).
|
|
160
170
|
|
|
161
|
-
|
|
171
|
+
## 4.2.0
|
|
162
172
|
|
|
163
173
|
* Update Google ping URL.
|
|
164
174
|
* Quote the ping URL in the output.
|
|
@@ -166,23 +176,23 @@
|
|
|
166
176
|
* Support symbols as well as strings for most arguments to `add()` ([#113](https://github.com/kjvarga/sitemap_generator/issues/113)).
|
|
167
177
|
* Ensure that `public_path` and `sitemaps_path` end with a slash (`/`) ([#113](https://github.com/kjvarga/sitemap_generator/issues/118)).
|
|
168
178
|
|
|
169
|
-
|
|
179
|
+
## 4.1.1
|
|
170
180
|
|
|
171
181
|
* Support setting the S3 region.
|
|
172
182
|
* Fixed bug where incorrect URL was being used in the ping to search engines - only affected sites with a single sitemap file and no index file.
|
|
173
183
|
* Output the URL being pinged in the verbose output.
|
|
174
184
|
* Test in Rails 4.
|
|
175
185
|
|
|
176
|
-
|
|
186
|
+
## 4.1.0
|
|
177
187
|
|
|
178
188
|
* [PageMap sitemap][using_pagemaps] support.
|
|
179
189
|
* Tested with Rails 4 pre-release.
|
|
180
190
|
|
|
181
|
-
|
|
191
|
+
## 4.0.1
|
|
182
192
|
|
|
183
193
|
* Add a post install message regarding the naming convention change.
|
|
184
194
|
|
|
185
|
-
|
|
195
|
+
## 4.0
|
|
186
196
|
|
|
187
197
|
* **NEW, NON-BACKWARDS COMPATIBLE CHANGES.**
|
|
188
198
|
* `create_index` defaults to `:auto`.
|
|
@@ -191,20 +201,20 @@
|
|
|
191
201
|
* Support `nofollow` option on alternate links.
|
|
192
202
|
* Fix formatting of `publication_date` in News sitemaps.
|
|
193
203
|
|
|
194
|
-
|
|
204
|
+
## 3.4
|
|
195
205
|
|
|
196
206
|
* Support [alternate links][alternate_links] for urls
|
|
197
207
|
* Support configurable options in the `SitemapGenerator::S3Adapter`
|
|
198
208
|
|
|
199
|
-
|
|
209
|
+
## 3.3
|
|
200
210
|
|
|
201
211
|
* Support creating sitemaps with no index file
|
|
202
212
|
|
|
203
|
-
|
|
213
|
+
## 3.2.1
|
|
204
214
|
|
|
205
215
|
* Fix syntax error in `SitemapGenerator::S3Adapter`
|
|
206
216
|
|
|
207
|
-
|
|
217
|
+
## 3.2
|
|
208
218
|
|
|
209
219
|
* Support mobile tags
|
|
210
220
|
* Add `SitemapGenerator::S3Adapter`, a simple S3 adapter which uses Fog and doesn't require CarrierWave
|
|
@@ -213,18 +223,18 @@
|
|
|
213
223
|
* Fix the news XML namespace
|
|
214
224
|
* Only include `autoplay` attribute if present
|
|
215
225
|
|
|
216
|
-
|
|
226
|
+
## 3.1.1
|
|
217
227
|
|
|
218
228
|
* Bugfix
|
|
219
229
|
* Groups inherit current adapter
|
|
220
230
|
|
|
221
|
-
|
|
231
|
+
## 3.1.0
|
|
222
232
|
|
|
223
233
|
* Add `add_to_index` method to add links to the sitemap index.
|
|
224
|
-
* Add `sitemap` method for accessing the `LinkSet instance from within `create()`.
|
|
234
|
+
* Add `sitemap` method for accessing the `LinkSet` instance from within `create()`.
|
|
225
235
|
* Don't modify options hashes passed to methods. Fix and improve `yield_sitemap` option handling.
|
|
226
236
|
|
|
227
|
-
|
|
237
|
+
## 3.0.0
|
|
228
238
|
|
|
229
239
|
* **Framework agnostic!**
|
|
230
240
|
* Fix alignment in output
|
|
@@ -234,61 +244,61 @@
|
|
|
234
244
|
* Remove tasks/ directory because it's deprecated in Rails 2
|
|
235
245
|
* Simplify dependencies.
|
|
236
246
|
|
|
237
|
-
|
|
247
|
+
## 2.2.1
|
|
238
248
|
|
|
239
249
|
* Support adding new search engines to ping and modifying the default search engines.
|
|
240
250
|
* Allow the URL of the sitemap index to be passed as an argument to `ping_search_engines`. See Pinging Search Engines in README.
|
|
241
251
|
|
|
242
|
-
|
|
252
|
+
## 2.1.8
|
|
243
253
|
|
|
244
254
|
* Extend and improve Video Sitemap support.
|
|
245
255
|
* Include sitemap docs in the README, support all element attributes, properly format values.
|
|
246
256
|
|
|
247
|
-
|
|
257
|
+
## 2.1.7
|
|
248
258
|
|
|
249
259
|
* Improve format of float priorities
|
|
250
260
|
* Remove Yahoo from ping - the Yahoo service has been shut down.
|
|
251
261
|
|
|
252
|
-
|
|
262
|
+
## 2.1.6
|
|
253
263
|
|
|
254
264
|
* Fix the `lastmod` value on sitemap file links
|
|
255
265
|
|
|
256
|
-
|
|
266
|
+
## 2.1.5
|
|
257
267
|
|
|
258
268
|
* Fix verbose setting in the rake task, it should default to true
|
|
259
269
|
|
|
260
|
-
|
|
270
|
+
## 2.1.4
|
|
261
271
|
|
|
262
272
|
* Allow special characters in URLs (don't use `URI.join` to construct URLs)
|
|
263
273
|
|
|
264
|
-
|
|
274
|
+
## 2.1.3
|
|
265
275
|
|
|
266
276
|
* Fix calling `create` with both `filename` and `sitemaps_namer` options
|
|
267
277
|
|
|
268
|
-
|
|
278
|
+
## 2.1.2
|
|
269
279
|
|
|
270
280
|
* Support multiple videos per url using the new `videos` option to `add()`.
|
|
271
281
|
|
|
272
|
-
|
|
282
|
+
## 2.1.1
|
|
273
283
|
|
|
274
284
|
* Support calling `create()` multiple times in a sitemap config
|
|
275
285
|
* Support host names with path segments so you can use a `default_host` like `'http://mysite.com/subdirectory/'`
|
|
276
286
|
* Turn off `include_index` when the `sitemaps_host` differs from `default_host`
|
|
277
287
|
* Add docs about how to upload to remote hosts.
|
|
278
288
|
|
|
279
|
-
|
|
289
|
+
## 2.1.0
|
|
280
290
|
|
|
281
291
|
* [News sitemap][sitemap_news] support
|
|
282
292
|
|
|
283
|
-
|
|
293
|
+
## 2.0.1.pre2
|
|
284
294
|
|
|
285
295
|
* Fix uploading to the (bucket) root on a remote server
|
|
286
296
|
|
|
287
|
-
|
|
297
|
+
## 2.0.1.pre1
|
|
288
298
|
|
|
289
299
|
* Support read-only filesystems like Heroku by supporting uploading to remote host
|
|
290
300
|
|
|
291
|
-
|
|
301
|
+
## 2.0.1
|
|
292
302
|
|
|
293
303
|
* Minor improvements to verbose handlig
|
|
294
304
|
* Prevent missing `Timeout` issue
|
|
@@ -297,37 +307,36 @@
|
|
|
297
307
|
|
|
298
308
|
* Introducing a new simpler API, Sitemap Groups, Sitemap Namers and more!
|
|
299
309
|
|
|
300
|
-
|
|
310
|
+
## 1.5.0
|
|
301
311
|
|
|
302
312
|
* New options `include_root`, `include_index`
|
|
303
313
|
* Major testing & refactoring
|
|
304
314
|
|
|
305
|
-
|
|
315
|
+
## 1.4.0
|
|
306
316
|
|
|
307
|
-
*
|
|
317
|
+
* Geo sitemap support
|
|
308
318
|
* Multiple sitemap support via CONFIG_FILE rake option
|
|
309
319
|
|
|
310
|
-
|
|
320
|
+
## 1.3.0
|
|
311
321
|
|
|
312
322
|
* Support setting the sitemaps path
|
|
313
323
|
|
|
314
|
-
|
|
324
|
+
## 1.2.0
|
|
315
325
|
|
|
316
326
|
* Verified working with Rails 3 stable release
|
|
317
327
|
|
|
318
|
-
|
|
328
|
+
## 1.1.0
|
|
319
329
|
|
|
320
330
|
* [Video sitemap][sitemap_video] support
|
|
321
331
|
|
|
322
|
-
|
|
332
|
+
## 0.2.6
|
|
323
333
|
|
|
324
334
|
* [Image Sitemap][sitemap_images] support
|
|
325
335
|
|
|
326
|
-
|
|
336
|
+
## 0.2.5
|
|
327
337
|
|
|
328
338
|
* Rails 3 prerelease support (beta)
|
|
329
339
|
|
|
330
|
-
[geo_tags]:http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=94555
|
|
331
340
|
[sitemap_images]:http://www.google.com/support/webmasters/bin/answer.py?answer=178636
|
|
332
341
|
[sitemap_video]:https://support.google.com/webmasters/answer/80471?hl=en&ref_topic=4581190
|
|
333
342
|
[sitemap_news]:https://support.google.com/news/publisher/topic/2527688?hl=en&ref_topic=4359874
|