nanoc 4.11.13 → 4.11.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/NEWS.md +790 -744
- data/lib/nanoc.rb +4 -2
- data/lib/nanoc/data_sources/filesystem.rb +12 -6
- data/lib/nanoc/extra.rb +1 -0
- data/lib/nanoc/extra/core_ext.rb +0 -1
- data/lib/nanoc/extra/link_collector.rb +1 -1
- data/lib/nanoc/extra/srcset_parser.rb +79 -0
- data/lib/nanoc/filters/colorize_syntax/colorizers.rb +1 -1
- data/lib/nanoc/filters/erb.rb +1 -5
- data/lib/nanoc/filters/relativize_paths.rb +62 -10
- data/lib/nanoc/filters/sass/functions.rb +1 -1
- data/lib/nanoc/helpers/rendering.rb +5 -4
- data/lib/nanoc/orig_cli.rb +0 -5
- data/lib/nanoc/rule_dsl.rb +1 -0
- data/lib/nanoc/rule_dsl/action_provider.rb +1 -1
- data/lib/nanoc/rule_dsl/compiler_dsl.rb +1 -1
- data/lib/nanoc/rule_dsl/errors.rb +25 -0
- data/lib/nanoc/rule_dsl/rules_loader.rb +1 -1
- data/lib/nanoc/version.rb +1 -1
- metadata +37 -33
- data/lib/nanoc/base.rb +0 -13
- data/lib/nanoc/base/changes_stream.rb +0 -53
- data/lib/nanoc/base/errors.rb +0 -65
- data/lib/nanoc/checking.rb +0 -14
- data/lib/nanoc/checking/check.rb +0 -93
- data/lib/nanoc/checking/checks.rb +0 -14
- data/lib/nanoc/checking/checks/css.rb +0 -16
- data/lib/nanoc/checking/checks/external_links.rb +0 -151
- data/lib/nanoc/checking/checks/html.rb +0 -16
- data/lib/nanoc/checking/checks/internal_links.rb +0 -95
- data/lib/nanoc/checking/checks/mixed_content.rb +0 -37
- data/lib/nanoc/checking/checks/stale.rb +0 -41
- data/lib/nanoc/checking/checks/w3c_validator.rb +0 -31
- data/lib/nanoc/checking/dsl.rb +0 -27
- data/lib/nanoc/checking/issue.rb +0 -16
- data/lib/nanoc/checking/loader.rb +0 -50
- data/lib/nanoc/checking/runner.rb +0 -136
- data/lib/nanoc/deploying.rb +0 -10
- data/lib/nanoc/deploying/deployer.rb +0 -45
- data/lib/nanoc/deploying/deployers.rb +0 -11
- data/lib/nanoc/deploying/deployers/fog.rb +0 -220
- data/lib/nanoc/deploying/deployers/git.rb +0 -112
- data/lib/nanoc/deploying/deployers/rsync.rb +0 -68
- data/lib/nanoc/extra/core_ext/pathname.rb +0 -27
- data/lib/nanoc/orig_cli/commands/check.rb +0 -43
- data/lib/nanoc/orig_cli/commands/deploy.rb +0 -126
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a54c2c8a754d1aa180e0396ad8161c1d469d326959252001d7f7f792e1ec578
|
4
|
+
data.tar.gz: 68c456c19fc6f055f8cc62cac520adc589a88ba3f71933c74d18c849e05f27a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2ca39ce068b59312c9f6cb8fd21ee07cee626c02e9afdd7d01faeb808c71b1895398207abd88fd0e84e23310423dfa3c830c2624fe92a3a21ed1c04d7151fa0
|
7
|
+
data.tar.gz: a57f11835991c18c252e39b2fb973f8e5a82245ada4ef24ae893519f709e8f156ae12f6fe0558ec5667b0316e2b056a4dd467787b3dd3d47a8cdbc473bf0f775
|
data/NEWS.md
CHANGED
@@ -1,275 +1,321 @@
|
|
1
1
|
# Nanoc news
|
2
2
|
|
3
|
+
## 4.11.18 (2020-06-17)
|
4
|
+
|
5
|
+
Fixes:
|
6
|
+
|
7
|
+
- Fixed a `Encoding::CompatibilityError` that would be thrown e.g. when using the `contracts` library (#1502, #1505) [Ethan Crawford]
|
8
|
+
- Fixed an issue which could cause Nanoc not to compile all items on Ruby 2.7 (#1501, #1507)
|
9
|
+
|
10
|
+
## 4.11.17 (2020-06-12)
|
11
|
+
|
12
|
+
Fixes:
|
13
|
+
|
14
|
+
- Fixed issue which could cause Nanoc to throw a timeout exception (#1503)
|
15
|
+
|
16
|
+
## 4.11.16 (2020-04-26)
|
17
|
+
|
18
|
+
Fixes:
|
19
|
+
|
20
|
+
- Fixed uninitialized constant/undefined method bug with guard-nanoc (#1494, #1495)
|
21
|
+
- Removed remaining more “Using the last argument …” warnings (#1498)
|
22
|
+
|
23
|
+
Enhancements:
|
24
|
+
|
25
|
+
- Ignore redirects to self (misued for cookies) (#1496) [Daniel Aleksandersen]
|
26
|
+
|
27
|
+
## 4.11.15 (2020-03-07)
|
28
|
+
|
29
|
+
Enhancements:
|
30
|
+
|
31
|
+
- Made `prune` print files to delete when using dry run (#1474, #1476)
|
32
|
+
- Made Nanoc emit a warning when the `contracts` library is loaded, as it can cause severe slowdowns (#1483, #1489)
|
33
|
+
- Made the default Rules handle `index.*` files (#1485, #1490)
|
34
|
+
|
35
|
+
Fixes:
|
36
|
+
|
37
|
+
- Fixed warnings on Ruby 2.7
|
38
|
+
- Made `@rep` (not just `@item_rep`) available in the Rendering helper (#1484, #1488)
|
39
|
+
- Made the `:relativize_paths` filter relativize the `value` attribute, not the `content` one, of the `param` HTML element (#1491)
|
40
|
+
- Made the `:relativize_paths` filter support relativizing paths in `srcset` attributes (#1475, #1492)
|
41
|
+
- Fixed an issue that could cause items to be marked as outdated when they shouldn’t be (#1471, #1493).
|
42
|
+
|
43
|
+
## 4.11.14 (2019-11-10)
|
44
|
+
|
45
|
+
Fixes:
|
46
|
+
|
47
|
+
- Fixed an issue where removing and re-adding an item would not cause dependent items to be recompiled (#1463, #1464)
|
48
|
+
|
3
49
|
## 4.11.13 (2019-11-02)
|
4
50
|
|
5
51
|
Fixes:
|
6
52
|
|
7
|
-
|
53
|
+
- Fixed an issue which could cause Nanoc to freeze when generating the output diff on Windows
|
8
54
|
|
9
55
|
## 4.11.12 (2019-09-21)
|
10
56
|
|
11
57
|
Fixes:
|
12
58
|
|
13
|
-
|
59
|
+
- Fixed an issue with the output diff, where some hunks would not appear (#1457)
|
14
60
|
|
15
61
|
## 4.11.11 (2019-09-07)
|
16
62
|
|
17
63
|
Fixes:
|
18
64
|
|
19
|
-
|
65
|
+
- Made output diff more reliable (#1455, #1456)
|
20
66
|
|
21
67
|
## 4.11.10 (2019-08-31)
|
22
68
|
|
23
69
|
Fixes:
|
24
70
|
|
25
|
-
|
71
|
+
- Fixed problem with sporadic `DDMetrics::Stopwatch::AlreadyRunningError` (#1445)
|
26
72
|
|
27
73
|
## 4.11.9 (2019-08-17)
|
28
74
|
|
29
75
|
Enhancements:
|
30
76
|
|
31
|
-
|
32
|
-
|
33
|
-
|
77
|
+
- Allowed specifying excluded files across all checks (#1438)
|
78
|
+
- Replace handlebars.rb with ruby-handlebars (#1443)
|
79
|
+
- Improved dependency tracking for Sass imports (#1451, #1452) [Romain Goyet]
|
34
80
|
|
35
81
|
## 4.11.8 (2019-08-08)
|
36
82
|
|
37
83
|
Fixes:
|
38
84
|
|
39
|
-
|
85
|
+
- Fixed issue with `#find_all` yielding incorrect objects, causing a crash when attempting to access attributes (#1446, #1447)
|
40
86
|
|
41
87
|
## 4.11.7 (2019-07-28)
|
42
88
|
|
43
89
|
Fixes:
|
44
90
|
|
45
|
-
|
91
|
+
- Fixed handling of protocol-relative URLs (#1444)
|
46
92
|
|
47
93
|
## 4.11.6 (2019-07-06)
|
48
94
|
|
49
95
|
Fixes:
|
50
96
|
|
51
|
-
|
52
|
-
|
97
|
+
- Fixed crash in the `show-data` command when printing layout outdatedness (#1432)
|
98
|
+
- Fixed crash in the `view` command when host/port is not specified
|
53
99
|
|
54
100
|
Enhancements:
|
55
101
|
|
56
|
-
|
57
|
-
|
58
|
-
|
102
|
+
- Added `#env_name` to `@config` (#1437)
|
103
|
+
- Made the `external_links` checker detect more kinds of broken links (#1422) [Daniel Aleksandersen]
|
104
|
+
- Made the `external_links` checker shuffle the list of links (#1429) [Daniel Aleksandersen]
|
59
105
|
|
60
106
|
## 4.11.5 (2019-04-30)
|
61
107
|
|
62
108
|
Fixes:
|
63
109
|
|
64
|
-
|
110
|
+
- Fixed an incompatibility introduced in Cri 2.15.4 (#1423, #1426)
|
65
111
|
|
66
112
|
## 4.11.4 (2019-04-28)
|
67
113
|
|
68
114
|
Fixes:
|
69
115
|
|
70
|
-
|
116
|
+
- Fixed an issue which could cause `#compiled_content` to sometimes return compiled content that erroneously includes the layout (#1412, #1421)
|
71
117
|
|
72
118
|
## 4.11.3 (2019-04-27)
|
73
119
|
|
74
120
|
Enhancements:
|
75
121
|
|
76
|
-
|
77
|
-
|
78
|
-
|
122
|
+
- Set a User-Agent for HTTP requests made by the `external_links` check (#1417) [Daniel Aleksandersen]
|
123
|
+
- Added `atom:link[type]` attributes (#1415) [Daniel Aleksandersen]
|
124
|
+
- Made the `external_links` check treat permanent redirects as errors (#1419) [Daniel Aleksandersen]
|
79
125
|
|
80
126
|
## 4.11.2 (2019-02-16)
|
81
127
|
|
82
128
|
Fixes:
|
83
129
|
|
84
|
-
|
130
|
+
- Fixed issue which prevented Sass (not SCSS) files from being imported (#1397, #1407) [Alexander Groß]
|
85
131
|
|
86
132
|
## 4.11.1 (2019-02-09)
|
87
133
|
|
88
134
|
Fixes:
|
89
135
|
|
90
|
-
|
136
|
+
- Fixed an issue which caused hardlinking to fail in certain situations (#1405, #1406)
|
91
137
|
|
92
138
|
## 4.11.0 (2018-12-01)
|
93
139
|
|
94
140
|
Features:
|
95
141
|
|
96
|
-
|
97
|
-
|
142
|
+
- Added support for generating inline source maps for Sass (#1376) [Gregory Pakosz]
|
143
|
+
- Added `:tiebreaker` option to the breadcrumbs helper, so that it can deal with ambiguity (#1368)
|
98
144
|
|
99
145
|
## 4.10.4 (2018-12-01)
|
100
146
|
|
101
147
|
Fixes:
|
102
148
|
|
103
|
-
|
149
|
+
- Fixed an error when importing a Sass/SCSS file outside of Nanoc’s content directory (#1378, #1379)
|
104
150
|
|
105
151
|
## 4.10.3 (2018-10-28)
|
106
152
|
|
107
153
|
Fixes:
|
108
154
|
|
109
|
-
|
155
|
+
- Fixed an issue which could cause `write nil` to still invoke the routing rule (#1374, #1375)
|
110
156
|
|
111
157
|
## 4.10.2 (2018-10-21)
|
112
158
|
|
113
159
|
Fixes:
|
114
160
|
|
115
|
-
|
161
|
+
- Fixed an issue where changing a layout rule’s parameters would not recompile items that use the layout for this layout rule (#1372, #1373)
|
116
162
|
|
117
163
|
## 4.10.1 (2018-10-16)
|
118
164
|
|
119
165
|
Fixes:
|
120
166
|
|
121
|
-
|
167
|
+
- Made Nanoc no longer crash when the Sass gem is not available (#1371)
|
122
168
|
|
123
169
|
## 4.10.0 (2018-10-14)
|
124
170
|
|
125
171
|
Features:
|
126
172
|
|
127
|
-
|
128
|
-
|
173
|
+
- Added source map support to the Sass filter (#1365) [Gregory Pakosz]
|
174
|
+
- Added a `nanoc()` Sass function (#1365) [Gregory Pakosz]
|
129
175
|
|
130
176
|
Fixes:
|
131
177
|
|
132
|
-
|
178
|
+
- Ensured breadcrumb trail always ends in item itself (#1367)
|
133
179
|
|
134
180
|
Enhancemens:
|
135
181
|
|
136
|
-
|
182
|
+
- Made Nanoc error when meta-file cannot be unambiguously associated (#1370)
|
137
183
|
|
138
184
|
## 4.9.9 (2018-10-06)
|
139
185
|
|
140
186
|
Fixes:
|
141
187
|
|
142
|
-
|
188
|
+
- Allowed `items_root` and `layouts_root` to be null
|
143
189
|
|
144
190
|
## 4.9.8 (2018-10-05)
|
145
191
|
|
146
192
|
Fixes:
|
147
193
|
|
148
|
-
|
194
|
+
- Fixed missing `configuration-schema.json` file
|
149
195
|
|
150
196
|
## 4.9.7 (2018-10-05)
|
151
197
|
|
152
198
|
Enhancements:
|
153
199
|
|
154
|
-
|
155
|
-
|
156
|
-
|
200
|
+
- Added `title_proc:` option to the blogging helper (#1362, #1363) [Thomas Hochstein]
|
201
|
+
- Dropped Ruby 2.3 support, as it is no longer maintained (#1361)
|
202
|
+
- Added static configuration file verification (#1360)
|
157
203
|
|
158
204
|
## 4.9.6 (2018-09-19)
|
159
205
|
|
160
206
|
Fixes:
|
161
207
|
|
162
|
-
|
208
|
+
- Fixed an issue which would cause the checksum of binary items created by the filesystem data source not to be updated when the content changes (#1358, #1359)
|
163
209
|
|
164
210
|
## 4.9.5 (2018-09-15)
|
165
211
|
|
166
212
|
Fixes:
|
167
213
|
|
168
|
-
|
214
|
+
- Fixed an issue which would cause Nanoc to trip up when the working directory changes during compilation (#1338, #1353, #1354, #1357)
|
169
215
|
|
170
216
|
## 4.9.4 (2018-08-19)
|
171
217
|
|
172
218
|
Fixes:
|
173
219
|
|
174
|
-
|
220
|
+
- Fixed an issue where compiled content of items generated in the preprocessor would not be available in the postprocessor (#1341, #1348)
|
175
221
|
|
176
222
|
## 4.9.3 (2018-06-09)
|
177
223
|
|
178
224
|
Enhancements:
|
179
225
|
|
180
|
-
|
226
|
+
- Added an `:exclude` option to `relativize_paths`, to exclude certain paths from being relativized (#1340)
|
181
227
|
|
182
228
|
## 4.9.2 (2018-03-30)
|
183
229
|
|
184
230
|
Fixes:
|
185
231
|
|
186
|
-
|
187
|
-
|
232
|
+
- Fixed bug which caused `output_dir` not to be ignored when checking for excludes in pruner (#1313, #1324)
|
233
|
+
- Fixed bug which caused `Filter#depend_on` not to create a proper dependency when the depended-on item has no representations (#1330)
|
188
234
|
|
189
235
|
Enhancements:
|
190
236
|
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
237
|
+
- Made Nanoc use hardlinks instead of copying files when possible (#1321) [Antonio Terceiro]
|
238
|
+
- Made Nanoc show an understandable error when a filter returns `nil` by accident (#1323, #1326)
|
239
|
+
- Made the checks also consider `.xhtml` and `.htm` files (#1328, #1329)
|
240
|
+
- Made Nanoc not report thread exceptions, which would freeze Ruby (#1332)
|
195
241
|
|
196
242
|
## 4.9.1 (2018-02-22)
|
197
243
|
|
198
244
|
Fixes:
|
199
245
|
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
246
|
+
- Fixed issue which could cause terminal output to be jumbled up (#1312, #1316)
|
247
|
+
- Made pruner ignore `output_dir` configuration attribute when checking for excludes (#1313, #1317)
|
248
|
+
- Fixed handling of interrupts (SIGINT) in the `shell` command (#1309, #1318)
|
249
|
+
- Added workaround for `relativize_paths` mangling `gcse:search` elements (#1319, #1320)
|
204
250
|
|
205
251
|
Enhancements:
|
206
252
|
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
253
|
+
- Allowed overriding `<id>` and `<link rel="alternate">` elements in Atom feed generator (#1301) [Ian Young]
|
254
|
+
- Made `sh` an alias for the `shell` command (#1308)
|
255
|
+
- Simplified the default configuration (#1311)
|
256
|
+
- Removed routing rules from newly-created sites (#1310)
|
211
257
|
|
212
258
|
## 4.9.0 (2018-01-31)
|
213
259
|
|
214
260
|
Features:
|
215
261
|
|
216
|
-
|
217
|
-
|
218
|
-
|
262
|
+
- Added `Identifier#match?` (#1305)
|
263
|
+
- Added `Nanoc::Check.define`
|
264
|
+
- Made Nanoc read checks configuration from `nanoc.yaml` (#1296)
|
219
265
|
|
220
266
|
Enhancements:
|
221
267
|
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
268
|
+
- Made Nanoc write out files asynchronously (#1288)
|
269
|
+
- Made the filesystem data source ignore an initial blank line after the frontmatter (#1292, #1293)
|
270
|
+
- Made the `check` command run deploy checks by default (#1304)
|
271
|
+
- Made Nanoc honor the `NO_COLOR` environment variable (#1306)
|
226
272
|
|
227
273
|
Bugs:
|
228
274
|
|
229
|
-
|
230
|
-
|
231
|
-
|
275
|
+
- Fixed a potential deadlock in the `external_links` check (#1294, #1295)
|
276
|
+
- Fixed the `external_links` check’s handling of redirects without a `Location` header (#1297, #1302)
|
277
|
+
- Fixed the `external_links` check’s handling of URLs with invalid components (#1303)
|
232
278
|
|
233
279
|
## 4.8.19 (2018-01-01)
|
234
280
|
|
235
281
|
Enhancements:
|
236
282
|
|
237
|
-
|
283
|
+
- Made `write nil` skip routing rule (#1286)
|
238
284
|
|
239
285
|
## 4.8.18 (2017-12-28)
|
240
286
|
|
241
287
|
Enhancements:
|
242
288
|
|
243
|
-
|
289
|
+
- Added `.tex` to the default list of text extensions (#1280) [Rien Maertens]
|
244
290
|
|
245
291
|
Fixes:
|
246
292
|
|
247
|
-
|
248
|
-
|
293
|
+
- Made `#breadcrumbs_trail` smarter about picking the right parent when there is ambiguity (#1278, #1279)
|
294
|
+
- Made `#find_all` be callable with block instead of an argument (like `Enumerable#find_all`) (#1284, #1285)
|
249
295
|
|
250
296
|
## 4.8.17 (2017-12-16)
|
251
297
|
|
252
298
|
Enhancements:
|
253
299
|
|
254
|
-
|
300
|
+
- Made `LoadError` be printed more nicely (#1273, #1274, #1275)
|
255
301
|
|
256
302
|
## 4.8.16 (2017-12-09)
|
257
303
|
|
258
304
|
Fixes:
|
259
305
|
|
260
|
-
|
306
|
+
- Made `adsf-live` not be required for `nanoc view`, unless running with `--live-reload`
|
261
307
|
|
262
308
|
## 4.8.15 (2017-12-02)
|
263
309
|
|
264
310
|
Fixes:
|
265
311
|
|
266
|
-
|
267
|
-
|
268
|
-
|
312
|
+
- Made `nanoc` show item being compiled in crash logs of all errors, not just errors inheriting from `StandardError` (#1258)
|
313
|
+
- Made Erubi stack traces include the filename of the item or layout that is being compiled (#1255, #1259)
|
314
|
+
- Prevented `view --live-reload` from crashing when the output directory does not exist (#1254, #1261)
|
269
315
|
|
270
316
|
Enhancements:
|
271
317
|
|
272
|
-
|
318
|
+
- Made pruner not remove the output directory if it’s empty (#1260)
|
273
319
|
|
274
320
|
## 4.8.14 (2017-11-27)
|
275
321
|
|
@@ -279,152 +325,152 @@ Same as 4.8.13, but published with the proper release date.
|
|
279
325
|
|
280
326
|
Enhancements:
|
281
327
|
|
282
|
-
|
328
|
+
- Added `-L`/`--live-reload` option to `nanoc view` (#1251)
|
283
329
|
|
284
330
|
## 4.8.12 (2017-11-16)
|
285
331
|
|
286
332
|
Fixes:
|
287
333
|
|
288
|
-
|
334
|
+
- Fixed issue where changing `:output_dir` during preprocessing would prevent Nanoc from performing incremental compilation (#1248, #1249)
|
289
335
|
|
290
336
|
Enhancements:
|
291
337
|
|
292
|
-
|
338
|
+
- Allowed creation of pattern from symbols, not just strings (#1247) [Gregory Pakosz]
|
293
339
|
|
294
340
|
## 4.8.11 (2017-10-28)
|
295
341
|
|
296
342
|
Enhancements:
|
297
343
|
|
298
|
-
|
299
|
-
|
344
|
+
- Added `:save_with` parameter to `relativize_paths` filter (#1237) [Gregory Pakosz]
|
345
|
+
- Made error messages more compact and easier to read
|
300
346
|
|
301
347
|
## 4.8.10 (2017-10-08)
|
302
348
|
|
303
349
|
Fixes:
|
304
350
|
|
305
|
-
|
306
|
-
|
351
|
+
- Fixed handling of four dashes for separating metadata (#1222, #1223)
|
352
|
+
- Made `#raw_path` unavailable in rules context (#1231)
|
307
353
|
|
308
354
|
## 4.8.9 (2017-09-22)
|
309
355
|
|
310
356
|
Fixes:
|
311
357
|
|
312
|
-
|
358
|
+
- Fixed “uninitialized constant DisabledContracts::Args” error
|
313
359
|
|
314
360
|
## 4.8.8 (2017-09-22)
|
315
361
|
|
316
362
|
Enhancements:
|
317
363
|
|
318
|
-
|
364
|
+
- Added `#dig` to configuration (#1221) [Gregory Pakosz]
|
319
365
|
|
320
366
|
## 4.8.7 (2017-09-18)
|
321
367
|
|
322
368
|
Fixes:
|
323
369
|
|
324
|
-
|
370
|
+
- Fixed “uninitialized constant CGI” issue (#1218)
|
325
371
|
|
326
372
|
## 4.8.6 (2017-09-17)
|
327
373
|
|
328
374
|
Fixes:
|
329
375
|
|
330
|
-
|
376
|
+
- Fixed issue which would cause items not to be considered as outdated when their content and/or attributes are changed in the preprocessor (#1216, #1217)
|
331
377
|
|
332
378
|
## 4.8.5 (2017-09-07)
|
333
379
|
|
334
380
|
Enhancements:
|
335
381
|
|
336
|
-
|
337
|
-
|
382
|
+
- Made `nanoc check` accept hyphenated check names (e.g. `internal-links`, in addition to `internal_links`).
|
383
|
+
- `compile --verbose` now prints “cached” rather than “identical” when cached compiled content is used. (#1214)
|
338
384
|
|
339
385
|
## 4.8.4 (2017-09-03)
|
340
386
|
|
341
387
|
Fixes:
|
342
388
|
|
343
|
-
|
389
|
+
- Fixed issue which caused the CLI to load the site at the wrong moment (#1211, #1212, #1213)
|
344
390
|
|
345
391
|
## 4.8.3 (2017-08-30)
|
346
392
|
|
347
393
|
Fixes:
|
348
394
|
|
349
|
-
|
350
|
-
|
395
|
+
- Disallowed full identifiers from ending with a slash (#1206)
|
396
|
+
- Made `nanoc view` listen on 127.0.0.1, not 0.0.0.0, by default (#1205)
|
351
397
|
|
352
398
|
Enhancements:
|
353
399
|
|
354
|
-
|
355
|
-
|
400
|
+
- Made `nanoc view` print site URL (#1204)
|
401
|
+
- Made `nanoc` search for parent directory containing Nanoc site (#1210)
|
356
402
|
|
357
403
|
## 4.8.2 (2017-08-19)
|
358
404
|
|
359
405
|
Fixes:
|
360
406
|
|
361
|
-
|
407
|
+
- Fixed compatibility issue with guard-nanoc
|
362
408
|
|
363
409
|
## 4.8.1 (2017-08-06)
|
364
410
|
|
365
411
|
Enhancements:
|
366
412
|
|
367
|
-
|
413
|
+
- Various speed improvements
|
368
414
|
|
369
415
|
## 4.8 (2017-07-17)
|
370
416
|
|
371
417
|
Features:
|
372
418
|
|
373
|
-
|
419
|
+
- Added `asciidoctor` filter (#1199)
|
374
420
|
|
375
421
|
## 4.7.14 (2017-07-16)
|
376
422
|
|
377
423
|
Enhancements:
|
378
424
|
|
379
|
-
|
425
|
+
- Various speed improvements (#1195, #1198)
|
380
426
|
|
381
427
|
## 4.7.13 (2017-07-02)
|
382
428
|
|
383
429
|
Enhancements:
|
384
430
|
|
385
|
-
|
431
|
+
- Made adding an item or a layout only recompile items that likely depend on it (#1191, #1193)
|
386
432
|
|
387
433
|
## 4.7.12 (2017-06-23)
|
388
434
|
|
389
435
|
Fixes:
|
390
436
|
|
391
|
-
|
437
|
+
- Fixed an issue in which the fog deployer could run out of open file descriptors (#1189)
|
392
438
|
|
393
439
|
Enhancements:
|
394
440
|
|
395
|
-
|
441
|
+
- Made changes to `@config` only cause outdatedness of items that depend on `@config` (#1188)
|
396
442
|
|
397
443
|
## 4.7.11 (2017-06-17)
|
398
444
|
|
399
445
|
Fixes:
|
400
446
|
|
401
|
-
|
402
|
-
|
447
|
+
- Made the `external_links` check always use GET, not HEAD (#1178, #1179)
|
448
|
+
- Fixed an issue where changing identifiers during preprocessing could cause a crash (#1184, #1185)
|
403
449
|
|
404
450
|
Enhancements:
|
405
451
|
|
406
|
-
|
452
|
+
- Added `--preprocess` to `shell` command, to load preprocessed site data (#1180)
|
407
453
|
|
408
454
|
## 4.7.10 (2017-05-14)
|
409
455
|
|
410
456
|
Fixes:
|
411
457
|
|
412
|
-
|
458
|
+
- Fixed behavior of `parent_config_file` so that it merges, rather than overwrites (#1176) [Gregory Pakosz]
|
413
459
|
|
414
460
|
Enhancements:
|
415
461
|
|
416
|
-
|
417
|
-
|
462
|
+
- Made `slim` filter show the filename in error messages (#1175) [Alexander Groß]
|
463
|
+
- Added `#use_helper` as an alternative to `#include` for enabling helpers (#1170)
|
418
464
|
|
419
465
|
## 4.7.9 (2017-05-01)
|
420
466
|
|
421
467
|
Fixes:
|
422
468
|
|
423
|
-
|
469
|
+
- Fixed character set handling of code snippets (#1171, #1174)
|
424
470
|
|
425
471
|
Enhancements:
|
426
472
|
|
427
|
-
|
473
|
+
- Added `xml:base` support (#1172, #1173) [Chris Burkhardt]
|
428
474
|
|
429
475
|
This release drops support for Ruby 2.2, as it is no longer maintained.
|
430
476
|
|
@@ -432,298 +478,298 @@ This release drops support for Ruby 2.2, as it is no longer maintained.
|
|
432
478
|
|
433
479
|
Fixes:
|
434
480
|
|
435
|
-
|
436
|
-
|
437
|
-
|
481
|
+
- Fixed a crash when printing dependency cycle error messages (#1164, #1166)
|
482
|
+
- Fixed incorrect ordering in dependency cycle error messages (#1167, #1168)
|
483
|
+
- Fixed a crash when attempting to print malformed UTF-8 strings (#1163, #1165)
|
438
484
|
|
439
485
|
Enhancements:
|
440
486
|
|
441
|
-
|
487
|
+
- Added various speed improvements (#1158, #1159, #1160)
|
442
488
|
|
443
489
|
## 4.7.7 (2017-04-16)
|
444
490
|
|
445
491
|
Enhancements:
|
446
492
|
|
447
|
-
|
448
|
-
|
493
|
+
- Added `--diff` option to `compile` command as a one-time alternative to `enable_output_diff` (#1155)
|
494
|
+
- Sped up incremental compilation (#1156, #1157)
|
449
495
|
|
450
496
|
## 4.7.6 (2017-04-15)
|
451
497
|
|
452
498
|
Enhancements:
|
453
499
|
|
454
|
-
|
500
|
+
- Added support for `:html5` in `relativize_paths` and `colorize_syntax` filters (#1153)
|
455
501
|
|
456
502
|
## 4.7.5 (2017-04-01)
|
457
503
|
|
458
504
|
Fixes:
|
459
505
|
|
460
|
-
|
506
|
+
- Made `--verbose` be recognised when calling `nanoc` without subcommand (#1145, #1146)
|
461
507
|
|
462
508
|
Enhancements:
|
463
509
|
|
464
|
-
|
465
|
-
|
510
|
+
- Made `show-data` print all outdatedness reasons, not just the first (#1142)
|
511
|
+
- Sped up `@items.find_all` (#1147)
|
466
512
|
|
467
513
|
## 4.7.4 (2017-03-29)
|
468
514
|
|
469
515
|
Enhancements:
|
470
516
|
|
471
|
-
|
472
|
-
|
517
|
+
- Made attribute dependencies cause outdatedness less often (#1136, #1137, #1138)
|
518
|
+
- Improved speed of Rules file handling (#1140)
|
473
519
|
|
474
520
|
## 4.7.3 (2017-03-26)
|
475
521
|
|
476
522
|
Fixes:
|
477
523
|
|
478
|
-
|
524
|
+
- Fixed an issue which could cause a missing file for a snapshot that is not `:last` not to be regenerated when compiling (#1134, #1135)
|
479
525
|
|
480
526
|
## 4.7.2 (2017-03-21)
|
481
527
|
|
482
528
|
Fixes:
|
483
529
|
|
484
|
-
|
530
|
+
- Fixed crash when calling `#raw_path` in the Checks file (#1130, #1131)
|
485
531
|
|
486
532
|
## 4.7.1 (2017-03-19)
|
487
533
|
|
488
534
|
Fixes:
|
489
535
|
|
490
|
-
|
536
|
+
- Fixed issue with `:xsl` filter not recompiling when it should (#924, #1127)
|
491
537
|
|
492
538
|
Enhancements:
|
493
539
|
|
494
|
-
|
495
|
-
|
540
|
+
- Made `compile --verbose` print percentiles rather than averages (#1122)
|
541
|
+
- Improved dependency cycle error messages (#1123)
|
496
542
|
|
497
543
|
## 4.7 (2017-03-15)
|
498
544
|
|
499
545
|
Features:
|
500
546
|
|
501
|
-
|
502
|
-
|
547
|
+
- Added `:erubi` filter (#1103) [Jan M. Faber]
|
548
|
+
- Added `write ext: 'something'` shortcut (#1079)
|
503
549
|
|
504
550
|
## 4.6.4 (2017-03-10)
|
505
551
|
|
506
552
|
Fixes:
|
507
553
|
|
508
|
-
|
554
|
+
- Fixed issue where `compile --verbose` would show misleading timing information (#1113)
|
509
555
|
|
510
556
|
## 4.6.3 (2017-03-05)
|
511
557
|
|
512
558
|
Fixes:
|
513
559
|
|
514
|
-
|
515
|
-
|
516
|
-
|
560
|
+
- Fixed `Errno::ENOENT` crash (#1094, #1109)
|
561
|
+
- Fixed undefined method `#reverse_each` crash (#1107, #1108)
|
562
|
+
- Fixed compilation speed issue introduced in 4.6.2 (#1106)
|
517
563
|
|
518
564
|
## 4.6.2 (2017-03-04)
|
519
565
|
|
520
566
|
Fixes:
|
521
567
|
|
522
|
-
|
523
|
-
|
568
|
+
- Fixed crash in `#binary?` (#1082, #1083, #1084)
|
569
|
+
- Fixed issue which would cause the file referenced by `#raw_path` not to exist (#1097, #1099)
|
524
570
|
|
525
571
|
Enhancements:
|
526
572
|
|
527
|
-
|
528
|
-
|
573
|
+
- Allowed calling `#write` multiple times in the same rule (#1037, #1085)
|
574
|
+
- Changed the `html` check to use validator.nu (#1104)
|
529
575
|
|
530
576
|
## 4.6.1 (2017-01-29)
|
531
577
|
|
532
578
|
Fixes:
|
533
579
|
|
534
|
-
|
580
|
+
- Fixed table formatting in `compile --verbose` (#1074) [Hugo Peixoto]
|
535
581
|
|
536
582
|
Enhancements:
|
537
583
|
|
538
|
-
|
584
|
+
- Reduced memory usage (#1075, #1076, #1077, #1078)
|
539
585
|
|
540
586
|
## 4.6 (2017-01-22)
|
541
587
|
|
542
588
|
Features:
|
543
589
|
|
544
|
-
|
545
|
-
|
546
|
-
|
590
|
+
- Made `#content_for` accept a string as well as a block, to allow setting captured content outside of ERB (#1066, #1073)
|
591
|
+
- Added `#raw_content=` to items and layouts during preprocessing (#1057)
|
592
|
+
- Added `#snapshot?` to item rep views (#1056)
|
547
593
|
|
548
594
|
Enhancements:
|
549
595
|
|
550
|
-
|
596
|
+
- Prevented useless recompilations when switching Nanoc environments (#1070, #1071)
|
551
597
|
|
552
598
|
## 4.5.4 (2017-01-16)
|
553
599
|
|
554
600
|
Fixes:
|
555
601
|
|
556
|
-
|
602
|
+
- Fixed issue with site not being recompiled fully when switching between environments (#1067, #1069)
|
557
603
|
|
558
604
|
## 4.5.3 (2017-01-15)
|
559
605
|
|
560
606
|
Fixes:
|
561
607
|
|
562
|
-
|
563
|
-
|
608
|
+
- Fixed “Fixnum is deprecated” message (#1061, #1062)
|
609
|
+
- Fixed `:pre` snapshot not being created for items that are not laid out (#1064, #1065)
|
564
610
|
|
565
611
|
## 4.5.2 (2017-01-11)
|
566
612
|
|
567
613
|
Fixes:
|
568
614
|
|
569
|
-
|
570
|
-
|
571
|
-
|
615
|
+
- Fixed handling of periods in full identifiers (#1022, #1059)
|
616
|
+
- Fixed “cannot layout binary items” error message (#1058)
|
617
|
+
- Fixed escaping of URLs in sitemaps (#1052, #1054)
|
572
618
|
|
573
619
|
## 4.5.1 (2017-01-09)
|
574
620
|
|
575
621
|
Fixes:
|
576
622
|
|
577
|
-
|
623
|
+
- Fixed crash when Nokogiri is not installed (#1053)
|
578
624
|
|
579
625
|
## 4.5 (2017-01-09)
|
580
626
|
|
581
627
|
Features:
|
582
628
|
|
583
|
-
|
629
|
+
- Added Git deployer (#997)
|
584
630
|
|
585
631
|
## 4.4.7 (2017-01-05)
|
586
632
|
|
587
633
|
Fixes:
|
588
634
|
|
589
|
-
|
590
|
-
|
635
|
+
- Fixed issue that caused an item not to be considered outdated when only the mtime has changed (#1046)
|
636
|
+
- Removed stray `require 'parallel'` which could break the `external_links` check (#1051) [Cédric Boutillier]
|
591
637
|
|
592
638
|
Enhancements:
|
593
639
|
|
594
|
-
|
640
|
+
- Made Nanoc not recompile compiled items after an exception occurs (#1044)
|
595
641
|
|
596
642
|
## 4.4.6 (2016-12-28)
|
597
643
|
|
598
644
|
Fixes:
|
599
645
|
|
600
|
-
|
646
|
+
- Fixed issue where `#compiled_content` would not return the correct content (#1040, #1041)
|
601
647
|
|
602
648
|
## 4.4.5 (2016-12-24)
|
603
649
|
|
604
650
|
Fixes:
|
605
651
|
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
652
|
+
- Prevented stale data from making it into the checksum store and thereby blowing up in memory (#1004, #1027)
|
653
|
+
- Fixed slow recompile after adding many items to a site (#1028)
|
654
|
+
- Fixed wrong capturing helper output when the output field separator (`$,`) is set
|
655
|
+
- Fixed issue that could cause items with multiple reps not to be recompiled when needed (#1031, #1032)
|
656
|
+
- Fixed error when fetching textual content of item whose `:last` snapshot is binary (#1035, #1036)
|
611
657
|
|
612
658
|
## 4.4.4 (2016-12-19)
|
613
659
|
|
614
660
|
Enhancements:
|
615
661
|
|
616
|
-
|
662
|
+
- Improved speed of incremental compilations (#1017, #1019, #1024)
|
617
663
|
|
618
664
|
## 4.4.3 (2016-12-17)
|
619
665
|
|
620
666
|
Fixes:
|
621
667
|
|
622
|
-
|
623
|
-
|
624
|
-
|
668
|
+
- Prevented stale data from making it into the compiled content cache and thereby blowing up in memory (#1004, #1013)
|
669
|
+
- Fixed “about” and “IRC channel” links in default site
|
670
|
+
- Fixed accuracy of `<updated>` in Atom feed (use most recent `updated_at` or `created_at`) (#1007, #1014)
|
625
671
|
|
626
672
|
Enhancements:
|
627
673
|
|
628
|
-
|
629
|
-
|
630
|
-
|
674
|
+
- Added support for non-legacy identifiers in `#breadcrumbs_trail` (#1010, #1011)
|
675
|
+
- Defined checksum for `Nanoc::Int::Context` to make outdatedness checker more precise (#1008, #1012)
|
676
|
+
- Made Nanoc raise an error when item reps are routed to a path that does not start with a slash (#1015, #1016)
|
631
677
|
|
632
678
|
## 4.4.2 (2016-11-27)
|
633
679
|
|
634
680
|
Fixes:
|
635
681
|
|
636
|
-
|
637
|
-
|
682
|
+
- Fixed “Maximum call stack size exceeded” issue in the `less` filter (#1001)
|
683
|
+
- Fixed issue that could cause the `less` filter to not generate all necessary dependencies (#1003)
|
638
684
|
|
639
685
|
Enhancements:
|
640
686
|
|
641
|
-
|
687
|
+
- Improved the way that the crash log displays the item rep that is being compiled (#1000)
|
642
688
|
|
643
689
|
## 4.4.1 (2016-11-21)
|
644
690
|
|
645
691
|
Fixes:
|
646
692
|
|
647
|
-
|
693
|
+
- Fixed an issue where the `xsl` filter would not generate a correct dependency on the layout (#996)
|
648
694
|
|
649
695
|
Enhancements:
|
650
696
|
|
651
|
-
|
697
|
+
- Made `view` command use index filenames specified in the `index_filenames` site configuration attribute (#998)
|
652
698
|
|
653
699
|
## 4.4 (2016-11-19)
|
654
700
|
|
655
701
|
Features:
|
656
702
|
|
657
|
-
|
703
|
+
- Added support for Nanoc environments (#859)
|
658
704
|
|
659
705
|
## 4.3.8 (2016-11-18)
|
660
706
|
|
661
707
|
Enhancements:
|
662
708
|
|
663
|
-
|
664
|
-
|
665
|
-
|
709
|
+
- Improved support for Rouge 1.x and 2.x (#880) [Rémi Barraquand]
|
710
|
+
- Added `#include` to the `nanoc shell` command (#973)
|
711
|
+
- Improved speed of full and incremental compilations (#977, #985)
|
666
712
|
|
667
713
|
Fixes:
|
668
714
|
|
669
|
-
|
670
|
-
|
671
|
-
|
715
|
+
- Made routing rules and `#write` calls accept an identifier, and not just a string (#976)
|
716
|
+
- Removed GC speed-up hacks, which became counterproductive in Ruby 2.2 (#975)
|
717
|
+
- Fixed issue which caused items to be always recompiled if `rep`/`item_rep` or `self` are used in those items’ rules (#982)
|
672
718
|
|
673
719
|
## 4.3.7 (2016-10-29)
|
674
720
|
|
675
721
|
Fixes:
|
676
722
|
|
677
|
-
|
723
|
+
- Fixed issue with `show-data` and `show-rules` commands not showing all data (#970) [Chris Chapman]
|
678
724
|
|
679
725
|
Enhancements:
|
680
726
|
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
727
|
+
- Improved speed of `compile` command (#968)
|
728
|
+
- Improved speed of `prune` command (#969)
|
729
|
+
- Made kramdown warnings include affected item rep (#967) [Gregory Pakosz]
|
730
|
+
- Made kramdown warnings configurable (#967) [Gregory Pakosz]
|
685
731
|
|
686
732
|
## 4.3.6 (2016-10-23)
|
687
733
|
|
688
734
|
Fixes:
|
689
735
|
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
736
|
+
- Made legacy patterns properly support full identifiers (#957)
|
737
|
+
- Fixed timezone issues in `#to_iso8601_date` (#961)
|
738
|
+
- Fixed error when accessing item (rep) paths in shell command (#963)
|
739
|
+
- Fixed issue that caused `#path` to be nil inside compilation rules (#964)
|
740
|
+
- Made `__FILE__` in Checks file be a absolute path (#966)
|
695
741
|
|
696
742
|
Enhancements:
|
697
743
|
|
698
|
-
|
744
|
+
- Made the command line write status information to stderr, not stdout (#958)
|
699
745
|
|
700
746
|
## 4.3.5 (2016-10-14)
|
701
747
|
|
702
748
|
Fixes:
|
703
749
|
|
704
|
-
|
750
|
+
- Handle `form/@action` in `relativize_paths` filter (#950) [Lorin Werthen]
|
705
751
|
|
706
752
|
Experimental features:
|
707
753
|
|
708
|
-
|
709
|
-
|
754
|
+
- `profiler`: adds `--profile` option to the `compile` command to profile compilation (#903)
|
755
|
+
- `environments`: adds support for Nanoc environments (#859)
|
710
756
|
|
711
757
|
## 4.3.4 (2016-10-02)
|
712
758
|
|
713
759
|
Fixes:
|
714
760
|
|
715
|
-
|
761
|
+
- Fixed compilation crash when output directory does not exist and auto-pruning is enabled (#948, #949)
|
716
762
|
|
717
763
|
## 4.3.3 (2016-09-26)
|
718
764
|
|
719
765
|
Fixes:
|
720
766
|
|
721
|
-
|
722
|
-
|
767
|
+
- Fixed issue causing `Bundler::GemfileNotFound` to be thrown (#936) [Lorin Werthen]
|
768
|
+
- Fixed issue when replacing a directory with a file or vice versa (#942, #946)
|
723
769
|
|
724
770
|
Enhancements:
|
725
771
|
|
726
|
-
|
772
|
+
- Modified the `compile` command to allow specifying the deploy target as argument (#945)
|
727
773
|
|
728
774
|
## 4.3.2 (2016-08-23)
|
729
775
|
|
@@ -733,67 +779,67 @@ Identical to 4.3.1, but with corrected release notes.
|
|
733
779
|
|
734
780
|
Fixes:
|
735
781
|
|
736
|
-
|
737
|
-
|
738
|
-
|
782
|
+
- Fixed “outdatedness of LayoutView” error (#927, #931)
|
783
|
+
- Fixed bug causing some checks not to appear in `nanoc check --list` (#928, #930)
|
784
|
+
- Fixed `@item`, … not being accessible in filters defined with `Nanoc::Filter.define` (#932, #934)
|
739
785
|
|
740
786
|
## 4.3 (2016-08-21)
|
741
787
|
|
742
788
|
Features:
|
743
789
|
|
744
|
-
|
745
|
-
|
790
|
+
- Added `Nanoc::Filter.define`, to easily define filters (#895)
|
791
|
+
- Made the `nanoc` Gemfile group be auto-required when Nanoc starts (#910) [whitequark]
|
746
792
|
|
747
793
|
## 4.2.4 (2016-07-24)
|
748
794
|
|
749
795
|
Fixes:
|
750
796
|
|
751
|
-
|
797
|
+
- Fixed `UnmetDependency` errors in postprocessor (#913, #917)
|
752
798
|
|
753
799
|
Enhancements:
|
754
800
|
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
801
|
+
- Sped up Nanoc by not releasing cache memory as quickly (#902)
|
802
|
+
- Let `internal_links` check also verify resource paths, such as scripts and images (#912) [Lorin Werthen]
|
803
|
+
- Improved error reporting for errors in the Rules file (#908, #914, #915, #916)
|
804
|
+
- Removed `win32console` support, as it’s deprecated and causing problems (#900, #918)
|
759
805
|
|
760
806
|
## 4.2.3 (2016-07-03)
|
761
807
|
|
762
808
|
Fixes:
|
763
809
|
|
764
|
-
|
810
|
+
- Fixed issue with `#inspect` raising a `WeakRef::RefError` (#877, #897)
|
765
811
|
|
766
812
|
Enhancements:
|
767
813
|
|
768
|
-
|
769
|
-
|
770
|
-
|
814
|
+
- Sped up compiler (#894)
|
815
|
+
- Improved `#inspect` output of some classes (#896)
|
816
|
+
- Deprecated `Item#modified` and replaced it with `Item#modified_reps` (#898)
|
771
817
|
|
772
818
|
## 4.2.2 (2016-07-02)
|
773
819
|
|
774
820
|
Fixes:
|
775
821
|
|
776
|
-
|
777
|
-
|
778
|
-
|
822
|
+
- Fixed confusing “invalid prefix” error message (#873, #879)
|
823
|
+
- Ensured filter arguments are frozen, to prevent outdatedness checker errors (#881, #886)
|
824
|
+
- Fixed issue with dependencies of items generated in the preprocessor not being tracked (#885, #891, #893)
|
779
825
|
|
780
826
|
Enhancements:
|
781
827
|
|
782
|
-
|
783
|
-
|
828
|
+
- Added specific handling for `Sass::Importers::Filesystem` in the checksummer, which should reduce unnecessary recompiles in sites using Compass (#866, #884)
|
829
|
+
- Improved speed of checksummer (#864, #887)
|
784
830
|
|
785
831
|
## 4.2.1 (2016-06-19)
|
786
832
|
|
787
833
|
Fixes:
|
788
834
|
|
789
|
-
|
790
|
-
|
835
|
+
- Fixed an occasional `WeakRef::RefError` (#863, #865)
|
836
|
+
- Fixed `show-data` command not running preprocessor (#867, #870)
|
791
837
|
|
792
838
|
## 4.2 (2016-06-04)
|
793
839
|
|
794
840
|
Enhancements:
|
795
841
|
|
796
|
-
|
842
|
+
- Dropped Ruby 2.1 support (#856)
|
797
843
|
|
798
844
|
This release also includes the changes from 4.2.0b1.
|
799
845
|
|
@@ -801,81 +847,81 @@ This release also includes the changes from 4.2.0b1.
|
|
801
847
|
|
802
848
|
Fixes:
|
803
849
|
|
804
|
-
|
805
|
-
|
850
|
+
- Strip index.html only if it is a full component (#850, #851)
|
851
|
+
- Force UTF-8 for item rep paths (#837, #852)
|
806
852
|
|
807
853
|
## 4.2.0b1 (2016-04-17)
|
808
854
|
|
809
855
|
Features:
|
810
856
|
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
857
|
+
- Allow creating items and layouts with a pre-calculated checksum (#793) [Ruben Verborgh]
|
858
|
+
- Allow lazy-loading item/layout content and attributes (#794) [Ruben Verborgh]
|
859
|
+
- Added `exclude_origins` configuration option to internal links checker (#847)
|
860
|
+
- Added `ChildParent` helper, providing `#children_of` and `#parent_of` (#849)
|
815
861
|
|
816
862
|
Enhancements:
|
817
863
|
|
818
|
-
|
819
|
-
|
864
|
+
- Made `#html_escape` raise an appropriate error when the given argument is not a String (#840) [Micha Rosenbaum]
|
865
|
+
- Improved memory usage of memoized values by using weak refs (#846)
|
820
866
|
|
821
867
|
## 4.1.5 (2016-03-24)
|
822
868
|
|
823
869
|
Fixes:
|
824
870
|
|
825
|
-
|
826
|
-
|
871
|
+
- Fixed crash in `show-data` command (#833, #835)
|
872
|
+
- Fixed preprocessor not being invoked before running checks (#841, #842)
|
827
873
|
|
828
874
|
## 4.1.4 (2016-02-13)
|
829
875
|
|
830
876
|
Fixes:
|
831
877
|
|
832
|
-
|
833
|
-
|
878
|
+
- Added missing `Configuration#key?` method (#815, #820)
|
879
|
+
- Made output diff use correct snapshot rather than `:last` (#813, #814)
|
834
880
|
|
835
881
|
Enhancements:
|
836
882
|
|
837
|
-
|
838
|
-
|
883
|
+
- Sped up item resolution in Sass filter (#821)
|
884
|
+
- Made `#link_to` more resilient to unsupported argument types (#816, #819)
|
839
885
|
|
840
886
|
## 4.1.3 (2016-01-30)
|
841
887
|
|
842
888
|
Fixes:
|
843
889
|
|
844
|
-
|
845
|
-
|
890
|
+
- Fixed crash in `check` command when the subject of an issue is nil (#804, #811)
|
891
|
+
- Made stale check not ignore non-final snapshot paths (#809, #810)
|
846
892
|
|
847
893
|
## 4.1.2 (2016-01-16)
|
848
894
|
|
849
895
|
Fixes:
|
850
896
|
|
851
|
-
|
852
|
-
|
897
|
+
- Made @-variables (e.g. `@items`) report their frozenness properly, so that optimisations based on frozenness work once again (#795, #797)
|
898
|
+
- Removed environment from `crash.log` to prevent leaking sensitive information (#798, #800)
|
853
899
|
|
854
900
|
Enhancements:
|
855
901
|
|
856
|
-
|
902
|
+
- Removed redundant checksum calculation (#789) [Ruben Verborgh]
|
857
903
|
|
858
904
|
## 4.1.1 (2015-12-30)
|
859
905
|
|
860
906
|
Fixes:
|
861
907
|
|
862
|
-
|
908
|
+
- Fixed preprocessor not being run before check/deploy/prune commands (#763, #784, #787, #788)
|
863
909
|
|
864
910
|
Enhancements:
|
865
911
|
|
866
|
-
|
912
|
+
- Made `#breadcrumbs_trail` explicitly fail when using full identifiers (#781, #783)
|
867
913
|
|
868
914
|
## 4.1 (2015-12-18)
|
869
915
|
|
870
916
|
Fixes:
|
871
917
|
|
872
|
-
|
873
|
-
|
874
|
-
|
918
|
+
- Fixed crash when attempting to `#puts` an object that’s not a string (#778)
|
919
|
+
- Made pruner not prune away files from routes defined for custom snapshots (#779)
|
920
|
+
- Wrapped `@layout` in a layout view (#773)
|
875
921
|
|
876
922
|
Enhancements:
|
877
923
|
|
878
|
-
|
924
|
+
- Added a base path to the Checks file, so that it supports `#require_relative` (#774)
|
879
925
|
|
880
926
|
This release also includes the changes from 4.1.0a1 to 4.1.0rc2.
|
881
927
|
|
@@ -883,77 +929,77 @@ This release also includes the changes from 4.1.0a1 to 4.1.0rc2.
|
|
883
929
|
|
884
930
|
Fixes:
|
885
931
|
|
886
|
-
|
932
|
+
- Fixed children of the root item not having a parent (#769, #770)
|
887
933
|
|
888
934
|
Enhancements:
|
889
935
|
|
890
|
-
|
936
|
+
- Made `#path`, `#compiled_content` and `#reps` unavailable during pre-processing, compilation and routing, because they do not make sense in these contexts (#571, #767, #768)
|
891
937
|
|
892
938
|
## 4.1.0rc1 (2015-12-12)
|
893
939
|
|
894
940
|
Fixes:
|
895
941
|
|
896
|
-
|
942
|
+
- Fixed `@item.compiled_content` in a layout raising an exception (#761, #766)
|
897
943
|
|
898
944
|
## 4.1.0b1 (2015-12-11)
|
899
945
|
|
900
946
|
Fixes:
|
901
947
|
|
902
|
-
|
948
|
+
- Fixed issue with `:pre` snapshot not being generated properly (#764)
|
903
949
|
|
904
950
|
Enhancements:
|
905
951
|
|
906
|
-
|
952
|
+
- Updated default site to use `#write` (#759)
|
907
953
|
|
908
954
|
## 4.1.0a1 (2015-12-05)
|
909
955
|
|
910
956
|
Features:
|
911
957
|
|
912
|
-
|
913
|
-
|
958
|
+
- Added `postprocess` block (#726) [Garen Torikian]
|
959
|
+
- Added `#write` compilation instruction and `path` option to `#snapshot` (#753)
|
914
960
|
|
915
961
|
Fixes:
|
916
962
|
|
917
|
-
|
918
|
-
|
963
|
+
- Fixed crash when printing non-string object (#712) [Garen Torikian]
|
964
|
+
- Removed English text from `#link_to` helper (#736) [Lucas Vuotto]
|
919
965
|
|
920
966
|
Enhancements:
|
921
967
|
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
968
|
+
- Allowed excluding URLs from external links check (#686) [Yannick Ihmels]
|
969
|
+
- Added `atom` to list of text extensions (#657) [Yannick Ihmels]
|
970
|
+
- Added `#each` to `Nanoc::ConfigView` (#705) [Garen Torikian]
|
971
|
+
- Made `#attribute_to_time` handle `DateTime` (#717) [Micha Rosenbaum]
|
972
|
+
- Added `Identifier#components` (#677)
|
973
|
+
- Added `:existing` option to `#content_for` (can be `:error`, `:overwrite` and `:append`) (#744)
|
928
974
|
|
929
975
|
## 4.0.2 (2015-11-30)
|
930
976
|
|
931
977
|
Fixes:
|
932
978
|
|
933
|
-
|
934
|
-
|
935
|
-
|
979
|
+
- Properly set required Ruby version to 2.1 in the gem specification (#747)
|
980
|
+
- Fixed issue with CLI commands not being loaded as UTF-8 (#742)
|
981
|
+
- Added missing `#identifier=` method to items and layouts during preprocessing (#750)
|
936
982
|
|
937
983
|
Enhancements:
|
938
984
|
|
939
|
-
|
985
|
+
- Let attempts to fetch an item rep by number, rather than symbol, fail with a meaningful error (#749)
|
940
986
|
|
941
987
|
## 4.0.1 (2015-11-28)
|
942
988
|
|
943
989
|
Fixes:
|
944
990
|
|
945
|
-
|
946
|
-
|
991
|
+
- Fixed params documentation for :rdiscount filter (#722)
|
992
|
+
- Fixed crash when comparing item rep views (#735, #738)
|
947
993
|
|
948
994
|
Enhancements:
|
949
995
|
|
950
|
-
|
996
|
+
- Lowered minimum required Ruby version from 2.2 to 2.1 (#732)
|
951
997
|
|
952
998
|
## 4.0 (2015-11-07)
|
953
999
|
|
954
1000
|
Enhancements:
|
955
1001
|
|
956
|
-
|
1002
|
+
- `#parent` and `#children` now raise an exception when used on items with a non-legacy identifier (#710)
|
957
1003
|
|
958
1004
|
This release also includes the changes from 4.0.0a1 to 4.0.0rc3.
|
959
1005
|
|
@@ -961,134 +1007,134 @@ This release also includes the changes from 4.0.0a1 to 4.0.0rc3.
|
|
961
1007
|
|
962
1008
|
Features:
|
963
1009
|
|
964
|
-
|
965
|
-
|
1010
|
+
- Added `Identifier#without_exts` and `Identifier#exts` (#644, #696) [Rémi Barraquand]
|
1011
|
+
- Added `DocumentView#attributes` (#699, #702)
|
966
1012
|
|
967
1013
|
Fixes:
|
968
1014
|
|
969
|
-
|
1015
|
+
- Fixed issue when comparing document views (#680, #693)
|
970
1016
|
|
971
1017
|
Enhancements:
|
972
1018
|
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
1019
|
+
- Made `#base_url` argument in `#tags_for` optional (#687) [Croath Liu]
|
1020
|
+
- Allowed `IdentifiableCollection#[]` to be passed an identifier (#681, #695)
|
1021
|
+
- Improved `Pattern.from` error message (#683, #692)
|
1022
|
+
- Let default site use a direct link to the stylesheet (#685, #701)
|
977
1023
|
|
978
1024
|
Changes:
|
979
1025
|
|
980
|
-
|
981
|
-
|
1026
|
+
- Removed `Identifier#with_ext` because its behavior was confusing (#697, #700)
|
1027
|
+
- Disallowed storing document (views) in attributes (#682, #694)
|
982
1028
|
|
983
1029
|
## 4.0.0rc2 (2015-07-11)
|
984
1030
|
|
985
1031
|
Fixes:
|
986
1032
|
|
987
|
-
|
988
|
-
|
1033
|
+
- Fixed broken `shell` command (#672) [Jim Mendenhall]
|
1034
|
+
- Fixed absolute path check on Windows (#656)
|
989
1035
|
|
990
1036
|
Enhancements:
|
991
1037
|
|
992
|
-
|
993
|
-
|
1038
|
+
- Made Nanoc error when multiple items have the same output path (#665, #669)
|
1039
|
+
- Improved error message for non-hash frontmatter (#670, #673)
|
994
1040
|
|
995
1041
|
Changes:
|
996
1042
|
|
997
|
-
|
1043
|
+
- nanoc is now called Nanoc
|
998
1044
|
|
999
1045
|
## 4.0.0rc1 (2015-06-21)
|
1000
1046
|
|
1001
1047
|
Fixes:
|
1002
1048
|
|
1003
|
-
|
1004
|
-
|
1049
|
+
- Fixed double-wrapping of `@layout` in rendering helper (#631)
|
1050
|
+
- Fixed `show-rules` command (#633)
|
1005
1051
|
|
1006
1052
|
## 4.0.0b4 (2015-06-10)
|
1007
1053
|
|
1008
1054
|
Fixes:
|
1009
1055
|
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1056
|
+
- Added missing `#ext` method to identifiers (#612)
|
1057
|
+
- Fixed issue where identifiers would have the wrong extension (#611)
|
1058
|
+
- Fixed rule context exposing entities rather than views (#614, #615)
|
1059
|
+
- Fixed `#key?` and `#fetch` not being available on layout views (#618)
|
1060
|
+
- Fixed `#update_attributes` not being available on mutable layout views (#619)
|
1015
1061
|
|
1016
1062
|
## 4.0.0b3 (2015-05-31)
|
1017
1063
|
|
1018
1064
|
Changes:
|
1019
1065
|
|
1020
|
-
|
1021
|
-
|
1066
|
+
- Removed `filesystem_verbose` data source (#599)
|
1067
|
+
- Set minimum required Ruby version to 2.2
|
1022
1068
|
|
1023
1069
|
Enhancements:
|
1024
1070
|
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1071
|
+
- Made `@config`, `@items` and `@layouts` available in checks (#598)
|
1072
|
+
- Made `filesystem` an alias for `filesystem_unified` (#599)
|
1073
|
+
- Made specific reps for an item accessible using `@item.reps[:name]` (#586, #607)
|
1074
|
+
- Removed `allow_periods_in_identifiers` documentation (#605)
|
1075
|
+
- Made fog deployer not upload files with identical ETags to AWS (#480, #536, #552) [Paul Boone]
|
1030
1076
|
|
1031
1077
|
Fixes:
|
1032
1078
|
|
1033
|
-
|
1034
|
-
|
1079
|
+
- Made `ItemView#parent` return nil if parent is nil (#600, #602)
|
1080
|
+
- Added missing `identifier_type` documentation (#604)
|
1035
1081
|
|
1036
1082
|
## 4.0.0b2 (2015-05-23)
|
1037
1083
|
|
1038
1084
|
Changes:
|
1039
1085
|
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1086
|
+
- Removed `ItemCollectionView#at` (#582)
|
1087
|
+
- Removed support for calling `ItemCollectionView#[]` with an integer (#582)
|
1088
|
+
- Renamed `identifier_style` to `identifier_type`, and made its values be `"full"` or `"legacy"` (#593)
|
1089
|
+
- Renamed `pattern_syntax` to `string_pattern_type`, and made its values be `"glob"` or `"legacy"` (#593)
|
1090
|
+
- Made `"full"` the default for `identifier_type` (#592, #594)
|
1091
|
+
- Made `"glob"` the default for `string_pattern_type` (#592)
|
1092
|
+
- Enabled auto-pruning by default for new sites (#590)
|
1047
1093
|
|
1048
1094
|
Enhancements:
|
1049
1095
|
|
1050
|
-
|
1051
|
-
|
1096
|
+
- Added `--force` to `create-site` command (#580) [David Alexander]
|
1097
|
+
- Made default Rules file more future-proof (#591)
|
1052
1098
|
|
1053
1099
|
Fixes:
|
1054
1100
|
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1101
|
+
- Fixed `LayoutCollectionView#[]` documentation (it mentioned items)
|
1102
|
+
- Fixed `ItemCollectionView#[]` returning an array when passed a regex
|
1103
|
+
- Fixed an issue with mutable collection views’ `#delete_if` not yielding mutable views
|
1104
|
+
- Fixed an issue with collection views’ `#find_all` returning entities instead of views
|
1059
1105
|
|
1060
1106
|
## 4.0.0b1 (2015-05-14)
|
1061
1107
|
|
1062
1108
|
Changes:
|
1063
1109
|
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1110
|
+
- Removed tasks
|
1111
|
+
- Removed several private methods in the view API
|
1112
|
+
- Removed default `base_url` in tagging helper
|
1067
1113
|
|
1068
1114
|
Enhancements:
|
1069
1115
|
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1116
|
+
- Removed unused options from CLI
|
1117
|
+
- Added `Nanoc::Identifier#without_ext`
|
1118
|
+
- Made `Nanoc::Identifier#=~` work with a glob
|
1119
|
+
- Added `Nanoc::LayoutCollectionView#[]`
|
1120
|
+
- Allowed creation of site in current directory (#549) [David Alexander]
|
1075
1121
|
|
1076
1122
|
Fixes:
|
1077
1123
|
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1124
|
+
- Fixed `#passthrough` for identifiers with extensions
|
1125
|
+
- Fixed rendering helper for identifiers with extensions
|
1126
|
+
- Fixed filtering helper
|
1081
1127
|
|
1082
1128
|
## 4.0.0a2 (2015-05-12)
|
1083
1129
|
|
1084
1130
|
Features:
|
1085
1131
|
|
1086
|
-
|
1087
|
-
|
1132
|
+
- Glob patterns (opt-in by setting `pattern_syntax` to `"glob"` in the site configuration)
|
1133
|
+
- Identifiers with extensions (opt-in by setting `identifier_style` to `"full"` in the data source configuration)
|
1088
1134
|
|
1089
1135
|
Enhancements:
|
1090
1136
|
|
1091
|
-
|
1137
|
+
- Added several convenience methods to view classes (#570, #572)
|
1092
1138
|
|
1093
1139
|
See the [nanoc 4 upgrade guide](https://nanoc.ws/doc/nanoc-4-upgrade-guide/) for details.
|
1094
1140
|
|
@@ -1102,96 +1148,96 @@ This release provides no new features, but streamlines the API and functionality
|
|
1102
1148
|
|
1103
1149
|
Features:
|
1104
1150
|
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1151
|
+
- Added `mixed_content` check (#542, #543) [Mike Pennisi]
|
1152
|
+
- Added `commands_dirs` configuration option for specifying directories to read commands from (#475) [Gregory Pakosz]
|
1153
|
+
- Added `:cdn_id` option to fog deployer for invalidating CDN objects (#451) [Vlatko Kosturjak]
|
1154
|
+
- Add access to regular expressions group matches in rules (#478) [Michal Papis]
|
1155
|
+
- Allow filtering the items array by regex (#458) [Mike Pennisi]
|
1110
1156
|
|
1111
1157
|
Enhancements:
|
1112
1158
|
|
1113
|
-
|
1114
|
-
|
1159
|
+
- Added `:preserve_order` option to preserve order in Atom feed (#533, #534)
|
1160
|
+
- Allowed accessing `:pre` snapshot from within item itself (#537, #538, #548)
|
1115
1161
|
|
1116
1162
|
Fixes:
|
1117
1163
|
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1164
|
+
- Allowed passing generic Pandoc options with :args (#526, #535)
|
1165
|
+
- Fix crash when compiling extensionless binary items (#524, #525)
|
1166
|
+
- Fix double snapshot creation error (#547)
|
1121
1167
|
|
1122
1168
|
## 3.7.5 (2015-01-12)
|
1123
1169
|
|
1124
1170
|
Enhancements:
|
1125
1171
|
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1172
|
+
- Allowed extra patterns to be specified in the data source configuration, so that dotfiles are no longer necessary ignored (e.g. `extra_files: ['.htaccess']`) (#492, #498) [Andy Drop, Michal Papis]
|
1173
|
+
- Removed Ruby 1.8.x support ([details](https://groups.google.com/forum/#!topic/nanoc/pSL1i15EFz8)) (#517)
|
1174
|
+
- Improved CSS and HTML error messages (#484, #504)
|
1175
|
+
- Let kramdown filter print warnings (#459, #519)
|
1130
1176
|
|
1131
1177
|
Fixes:
|
1132
1178
|
|
1133
|
-
|
1134
|
-
|
1179
|
+
- Fixed HTML class names for recent Rouge versions (#502)
|
1180
|
+
- Fixed crash when using items or layouts in attributes (#469, #518)
|
1135
1181
|
|
1136
1182
|
## 3.7.4 (2014-11-23)
|
1137
1183
|
|
1138
1184
|
Enhancements:
|
1139
1185
|
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1186
|
+
- Made `check` command fail when output directory is missing (#472) [Mike Pennisi]
|
1187
|
+
- Made external links check timeouts start small and grow (#483) [Michal Papis]
|
1188
|
+
- Made code and API adhere much more closely to the Ruby style guide (#476)
|
1143
1189
|
|
1144
1190
|
Fixes:
|
1145
1191
|
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1192
|
+
- Fixed potential “parent directory is world writable” error (#465, #474)
|
1193
|
+
- Fixed retrying requests in the external link checker (#483) [Michal Papis]
|
1194
|
+
- Fixed issue with data sources not being unloaded (#491) [Michal Papis]
|
1149
1195
|
|
1150
1196
|
## 3.7.3 (2014-08-31)
|
1151
1197
|
|
1152
1198
|
Fixes:
|
1153
1199
|
|
1154
|
-
|
1200
|
+
- Fixed issue which caused metadata sections not be recognised in files that use CRLF line endings (#470, #471) [Gregory Pakosz]
|
1155
1201
|
|
1156
1202
|
## 3.7.2 (2014-08-17)
|
1157
1203
|
|
1158
1204
|
Fixes:
|
1159
1205
|
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1206
|
+
- Fixed broken links to the now defunct RubyForge (#454, #467)
|
1207
|
+
- Fixed crash when Gemfile is missing but Bundler is installed (#464)
|
1208
|
+
- Made filesystem data source not strip any whitespace (#463) [Gregory Pakosz]
|
1163
1209
|
|
1164
1210
|
Enhancements:
|
1165
1211
|
|
1166
|
-
|
1167
|
-
|
1212
|
+
- Fixed issue which could cause items to be unnecessarily marked as outdated (#461) [Gregory Pakosz]
|
1213
|
+
- Prevented binary layouts from being generated (#468) [Gregory Pakosz]
|
1168
1214
|
|
1169
1215
|
## 3.7.1 (2014-06-16)
|
1170
1216
|
|
1171
1217
|
Fixes:
|
1172
1218
|
|
1173
|
-
|
1219
|
+
- Fixed bug which would cause nanoc to crash if no Gemfile is present (#447, #449)
|
1174
1220
|
|
1175
1221
|
## 3.7 (2014-06-08)
|
1176
1222
|
|
1177
1223
|
New features:
|
1178
1224
|
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1225
|
+
- Allowed excluding links from the internal links check (`@config[:checks][:internal_links][:exclude]`) (#242) [Remko Tronçon]
|
1226
|
+
- Added Rouge syntax coloring filter (#398) [Guilherme Garnier]
|
1227
|
+
- Backported `after_setup` from nanoc 4 to make it easier to create CLI plugins (#407) [Rémi Barraquand]
|
1228
|
+
- Make lib dirs configurable using `lib_dirs` config attribute (#424) [Gregory Pakosz]
|
1229
|
+
- Added support for setting parent config dir using `parent_config_file` config attribute (#419) [Gregory Pakosz]
|
1184
1230
|
|
1185
1231
|
Enhancements:
|
1186
1232
|
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1233
|
+
- Added `:with_toc` support to RedCarpet (#222, #232)
|
1234
|
+
- Added `slim` to the list of text extensions (#316)
|
1235
|
+
- Made `content/` and `layouts/` dirs configurable (#412) [Gregory Pakosz]
|
1236
|
+
- Allowed included rules files to have their own preprocess block (#420) [Gregory Pakosz]
|
1191
1237
|
|
1192
1238
|
Fixes:
|
1193
1239
|
|
1194
|
-
|
1240
|
+
- Fixed bug which caused temporary directories not to be removed (#440, #444)
|
1195
1241
|
|
1196
1242
|
## 3.6.11 (2014-05-09)
|
1197
1243
|
|
@@ -1203,606 +1249,606 @@ This release was previously known as 3.6.10.1, but was renamed due to incompatib
|
|
1203
1249
|
|
1204
1250
|
Fixes:
|
1205
1251
|
|
1206
|
-
|
1207
|
-
|
1252
|
+
- Fixed occasional "no such file" error on JRuby (#422)
|
1253
|
+
- Prevented multiple items and layouts from having the same identifier (#434, #435)
|
1208
1254
|
|
1209
1255
|
Enhancements:
|
1210
1256
|
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1257
|
+
- Set default encoding to UTF-8 (#428)
|
1258
|
+
- Improved checksummer to reduce number of unnecessary recompiles (#310, #431)
|
1259
|
+
- Disabled USR1 on JRuby in order to suppress warning (#425, #426)
|
1260
|
+
- Made pandoc filter argument passing more generic (#210, #433)
|
1215
1261
|
|
1216
1262
|
## 3.6.9 (2014-04-15)
|
1217
1263
|
|
1218
1264
|
Fixes:
|
1219
1265
|
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1266
|
+
- Fixed path to default stylesheet (#410, #411)
|
1267
|
+
- Improved reliability of piping from/to external processes in JRuby (#417)
|
1268
|
+
- Added workaround for “cannot modify” errors when using Nokogiri on JRuby (#416)
|
1269
|
+
- Made corrupted cached data auto-repair itself if possible (#409, #418)
|
1224
1270
|
|
1225
1271
|
## 3.6.8 (2014-03-22)
|
1226
1272
|
|
1227
1273
|
Fixes:
|
1228
1274
|
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1275
|
+
- Fixed issue with missing compilation durations (#374, #379)
|
1276
|
+
- Made XSL filter transform item rather than layout (#399, #401) [Simon South]
|
1277
|
+
- Made XSL filter honor omit-xml-declaration (#403, #404) [Simon South]
|
1278
|
+
- Removed "see full crash log" line from crash log (#397, #402)
|
1233
1279
|
|
1234
1280
|
Enhancements:
|
1235
1281
|
|
1236
|
-
|
1237
|
-
|
1282
|
+
- Added warning when multiple preprocessors are defined (#389)
|
1283
|
+
- Improve stylesheet handling in default site (#339, #395)
|
1238
1284
|
|
1239
1285
|
## 3.6.7 (2013-12-09)
|
1240
1286
|
|
1241
1287
|
Fixes:
|
1242
1288
|
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
|
1249
|
-
|
1289
|
+
- Made Handlebars filter usable outside layouts (#346, #348)
|
1290
|
+
- Fixed ANSI color support on Windows (#352, #356)
|
1291
|
+
- Made fog deployer handle prefixes properly (#351) [Oliver Byford]
|
1292
|
+
- Fixed crash in watcher (#358)
|
1293
|
+
- Fixed huge durations when showing skipped items after compilation (#360, #364)
|
1294
|
+
- Fixed output of `--verbose` compilation statistics (#359, #365)
|
1295
|
+
- Fixed issue with Sass files not recompiling (#350, #370)
|
1250
1296
|
|
1251
1297
|
Enhancements:
|
1252
1298
|
|
1253
|
-
|
1254
|
-
|
1255
|
-
|
1299
|
+
- Fixed Windows compatibility issues in test suite (#353) [Raphael von der Grün]
|
1300
|
+
- Hid deprecated `autocompile` and `watch` commands in help
|
1301
|
+
- Made CLI swallow broken pipe errors when piping to a process that terminates prematurely (#318, #369)
|
1256
1302
|
|
1257
1303
|
## 3.6.6 (2013-11-08)
|
1258
1304
|
|
1259
1305
|
Enhancements:
|
1260
1306
|
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1307
|
+
- Reduced number of dependencies generated by Sass filter (#306) [Gregory Pakosz]
|
1308
|
+
- Recognised lowercase `utf` in language value (e.g. `en_US.utf8`) as being UTF-8 (#335, #338)
|
1309
|
+
- Set [Thin](https://github.com/macournoyer/thin) as the default server for `nanoc view` (#342, #345)
|
1310
|
+
- Removed watcher section from the default configuration file (#343, #344)
|
1265
1311
|
|
1266
1312
|
Fixes:
|
1267
1313
|
|
1268
|
-
|
1314
|
+
- Prevented capturing helper from erroneously compiling items twice (#331, #337)
|
1269
1315
|
|
1270
1316
|
## 3.6.5 (2013-09-29)
|
1271
1317
|
|
1272
1318
|
Fixes:
|
1273
1319
|
|
1274
|
-
|
1275
|
-
|
1320
|
+
- Fixed bug which could cause incorrect dependencies to be generated in some cases (#329)
|
1321
|
+
- Fixed handling of index filenames when allowing periods in identifiers (#330)
|
1276
1322
|
|
1277
1323
|
## 3.6.4 (2013-05-29)
|
1278
1324
|
|
1279
1325
|
Enhancements:
|
1280
1326
|
|
1281
|
-
|
1327
|
+
- Deprecated `watch` and `autocompile` commands in favour of [`guard-nanoc`](https://github.com/guard/guard-nanoc)
|
1282
1328
|
|
1283
1329
|
Fixes:
|
1284
1330
|
|
1285
|
-
|
1286
|
-
|
1331
|
+
- Fixed bug which could cause the `tmp/` dir to blow up in size
|
1332
|
+
- Unescaped URLs when checking internal links
|
1287
1333
|
|
1288
1334
|
## 3.6.3 (2013-04-24)
|
1289
1335
|
|
1290
1336
|
Fixes:
|
1291
1337
|
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1300
|
-
|
1301
|
-
|
1338
|
+
- Added support for growlnotify on Windows (#253, #267)
|
1339
|
+
- Fixed bug which caused the external links checker to ignore the query string (#279, #297)
|
1340
|
+
- Removed weird treatment of `DOCTYPE`s in the `relativize_paths` filter (#296)
|
1341
|
+
- Fixed CodeRay syntax coloring on Ruby 2.0
|
1342
|
+
- Silenced "Could not find files for the given pattern(s)" message on Windows (#298)
|
1343
|
+
- Fixed issue which could cause `output.diff` not to be generated correctly (#255, #301)
|
1344
|
+
- Let filesystem and static data sources follow symlinks (#299, #302)
|
1345
|
+
- Added compatibility with Listen 1.0 (#309)
|
1346
|
+
- Let `#passthrough` in Rules work well with the static data source (#251) [Gregory Pakosz]
|
1347
|
+
- Made timing information be more accurate (#303)
|
1302
1348
|
|
1303
1349
|
## 3.6.2 (2013-03-23)
|
1304
1350
|
|
1305
1351
|
Fixes:
|
1306
1352
|
|
1307
|
-
|
1353
|
+
- Removed the list of available deployers from the `deploy` help text and moved
|
1308
1354
|
them into a new `--list-deployers` option [Damien Pollet]
|
1309
|
-
|
1355
|
+
- Fixed warning about `__send__` and `object_id` being redefined on Ruby
|
1310
1356
|
1.8.x [Justin Hileman]
|
1311
1357
|
|
1312
1358
|
Enhancements:
|
1313
1359
|
|
1314
|
-
|
1360
|
+
- Added possible alternative names for the `Checks` file for consistency with
|
1315
1361
|
the `Rules` file: `Checks.rb`, `checks`, `checks.rb` [Damien Pollet]
|
1316
|
-
|
1317
|
-
|
1362
|
+
- Made sure unchanged files never have their mtime updated [Justin Hileman]
|
1363
|
+
- Made link checker retry 405 Method Not Allowed results with GET instead of
|
1318
1364
|
HEAD [Daniel Hofstetter]
|
1319
1365
|
|
1320
1366
|
## 3.6.1 (2013-02-25)
|
1321
1367
|
|
1322
1368
|
Fixes:
|
1323
1369
|
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1370
|
+
- Fixed bug which could cause the Sass filter to raise a load error [Damien Pollet]
|
1371
|
+
- Fixed warnings about `__send__` and `object_id` being redefined [Justin Hileman]
|
1372
|
+
- Made `files_to_watch` contain `nanoc.yaml`, not `config.yaml` by default
|
1327
1373
|
|
1328
1374
|
## 3.6 (2013-02-24)
|
1329
1375
|
|
1330
1376
|
Features:
|
1331
1377
|
|
1332
|
-
|
1378
|
+
- Added `sync` command, allowing data sources to update local caches of
|
1333
1379
|
external data [Justin Hileman]
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1380
|
+
- Added `#ignore` compiler DSL method
|
1381
|
+
- Allowed accessing items by identifier using e.g. `@items['/about/']`
|
1382
|
+
- Added `shell` command
|
1337
1383
|
|
1338
1384
|
Enhancements:
|
1339
1385
|
|
1340
|
-
|
1386
|
+
- Renamed the nanoc configuration file from `config.yaml` to `nanoc.yaml`
|
1341
1387
|
|
1342
1388
|
Fixes:
|
1343
1389
|
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1390
|
+
- Updated references to old web site and old repository
|
1391
|
+
- Made `require` errors mention Bundler if appropriate
|
1392
|
+
- Fixed bug which caused pruner not to delete directories in some cases [Matthias Reitinger]
|
1393
|
+
- Made `check` command exit with the proper exit status
|
1394
|
+
- Added support for the `HTML_TOC` Redcarpet renderer
|
1395
|
+
- Made `stale` check honor files excluded by the pruner
|
1350
1396
|
|
1351
1397
|
## 3.5 (2013-01-27)
|
1352
1398
|
|
1353
1399
|
Major changes:
|
1354
1400
|
|
1355
|
-
|
1401
|
+
- Added checks
|
1356
1402
|
|
1357
1403
|
Minor changes:
|
1358
1404
|
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1405
|
+
- Added `#include_rules` for modularising Rules files [Justin Hileman]
|
1406
|
+
- Replaced FSSM with Listen [Takashi Uchibe]
|
1407
|
+
- Made USR1 print stack trace (not on Windows)
|
1408
|
+
- Added ability to configure autocompiler host/port in config.yaml [Stuart Montgomery]
|
1409
|
+
- Added static data source
|
1410
|
+
- Added `:rep_select` parameter to XML sitemap to allow filtering reps
|
1411
|
+
- Removed use of bright/bold colors for compatibility with Solarized
|
1366
1412
|
|
1367
1413
|
Exensions:
|
1368
1414
|
|
1369
|
-
|
1370
|
-
|
1415
|
+
- Added support for parameters in Less filter [Ruben Verborgh]
|
1416
|
+
- Added support for icon and logo in Atom feed [Ruben Verborgh]
|
1371
1417
|
|
1372
1418
|
Fixes:
|
1373
1419
|
|
1374
|
-
|
1420
|
+
- Made syntax colorizer only use the first non-empty line when extracting the
|
1375
1421
|
language comment
|
1376
|
-
|
1422
|
+
- Fixed XSL filter
|
1377
1423
|
|
1378
1424
|
## 3.4.3 (2012-12-09)
|
1379
1425
|
|
1380
1426
|
Improvements:
|
1381
1427
|
|
1382
|
-
|
1428
|
+
- Item reps are now accessible in a consistent way: in Rules and during
|
1383
1429
|
compilation, they can be accessed using both `@rep` and `@item_rep`
|
1384
1430
|
|
1385
1431
|
Fixes:
|
1386
1432
|
|
1387
|
-
|
1433
|
+
- Made cleaning streams (stdout/stderr as used by nanoc) compatible with
|
1388
1434
|
Ruby’s built-in Logger
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1435
|
+
- Made prune work when the output directory is a symlink
|
1436
|
+
- Made Handlebars filter compatible with the latest version
|
1437
|
+
- Made `show-data` command show more accurate dependencies [Stefan Bühler]
|
1438
|
+
- Restored compatibility with Sass 3.2.2
|
1393
1439
|
|
1394
1440
|
## 3.4.2 (2012-11-01)
|
1395
1441
|
|
1396
1442
|
Fixes:
|
1397
1443
|
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
|
1444
|
+
- Made passthrough rules be inserted in the right place [Gregory Pakosz]
|
1445
|
+
- Fixed crashes in the progress indicator when compiling
|
1446
|
+
- Made auto-pruning honor excluded files [Grégory Karékinian]
|
1447
|
+
- Made lack of which/where not crash watch command
|
1402
1448
|
|
1403
1449
|
Improvements:
|
1404
1450
|
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1451
|
+
- Fixed constant reinitialization warnings [Damien Pollet]
|
1452
|
+
- Made UTF-8 not be decomposed when outputting to a file from a non-UTF-8 terminal
|
1453
|
+
- Made syntax colorizer wrap CodeRay output in required CodeRay divs
|
1454
|
+
- Made fog delete after upload, not before [Go Maeda]
|
1455
|
+
- Made requesting compiled content of binary item impossible
|
1410
1456
|
|
1411
1457
|
## 3.4.1 (2012-09-22)
|
1412
1458
|
|
1413
1459
|
Fixes:
|
1414
1460
|
|
1415
|
-
|
1416
|
-
|
1461
|
+
- Fixed auto-pruning
|
1462
|
+
- Made slim filter work with the capturing helper [Bil Bas]
|
1417
1463
|
|
1418
1464
|
Improvements:
|
1419
1465
|
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1466
|
+
- Made several speed improvements
|
1467
|
+
- Added prune configuration to config.yaml
|
1468
|
+
- Made nanoc check for presence of nanoc in Gemfile
|
1469
|
+
- Made compile command not show identicals (use `--verbose` if you want them)
|
1470
|
+
- Made `relativize_paths` filter recognise more paths to relativize [Arnau Siches]
|
1471
|
+
- Fixed #passthrough for items without extensions [Justin Hileman]
|
1472
|
+
- Added more IO/File proxy methods to cleaning streams
|
1427
1473
|
|
1428
1474
|
## 3.4 (2012-06-09)
|
1429
1475
|
|
1430
|
-
|
1431
|
-
|
1432
|
-
|
1476
|
+
- Improved error output and added crash log
|
1477
|
+
- Renamed `debug` and `info` commands to `show-data` and `show-plugins`, respectively
|
1478
|
+
- Added `show-rules` command (aka `explain`)
|
1433
1479
|
|
1434
1480
|
Extensions:
|
1435
1481
|
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
1441
|
-
|
1482
|
+
- Added `:yield` key for Mustache filter
|
1483
|
+
- Added Handebars filter
|
1484
|
+
- Added Pandoc filter
|
1485
|
+
- Made the deployer use the `default` target if no target is specified
|
1486
|
+
- Converted HTML/CSS/link validation tasks to commands
|
1487
|
+
- Made link validator follow relative redirects
|
1442
1488
|
|
1443
1489
|
## 3.3.7 (2012-05-28)
|
1444
1490
|
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1491
|
+
- Added filename to YAML parser errors
|
1492
|
+
- Fixed issue which caused extra dependencies to be generated
|
1493
|
+
- Made timing information take filtering helper into account
|
1448
1494
|
|
1449
1495
|
## 3.3.6 (2012-04-27)
|
1450
1496
|
|
1451
|
-
|
1497
|
+
- Fixed issue with relative_link_to stripping HTML boilerplate
|
1452
1498
|
|
1453
1499
|
## 3.3.5 (2012-04-23)
|
1454
1500
|
|
1455
|
-
|
1501
|
+
- Fixed issue with relative_link_to not working properly
|
1456
1502
|
|
1457
1503
|
## 3.3.4 (2012-04-23)
|
1458
1504
|
|
1459
|
-
|
1460
|
-
|
1505
|
+
- Fixed bug which caused the compilation stack to be empty
|
1506
|
+
- Restored Ruby 1.8 compatibility
|
1461
1507
|
|
1462
1508
|
## 3.3.3 (2012-04-11)
|
1463
1509
|
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1510
|
+
- Fixed directed graph implementation on Rubinius
|
1511
|
+
- Made capturing helper not remember content between runs
|
1512
|
+
- Fixed Date#freeze issue on Ruby 1.8.x
|
1513
|
+
- Made it possible to have any kind of object as parameters in the Rules file
|
1514
|
+
- Fixed bug which caused changed routes not to cause a recompile
|
1469
1515
|
|
1470
1516
|
## 3.3.2 (2012-03-16)
|
1471
1517
|
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1518
|
+
- Removed bin/nanoc3 (use nanoc3 gem if you want it)
|
1519
|
+
- Fixed wrong “no such snapshot” errors
|
1520
|
+
- Made deployer default to rsync for backwards compatibility
|
1521
|
+
- Fixed missing Nanoc::OrigCLI in deployment tasks
|
1522
|
+
- Fixed “unrecognised kind” deployer error
|
1477
1523
|
|
1478
1524
|
## 3.3.1 (2012-02-18)
|
1479
1525
|
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1526
|
+
- Fixed issue with long paths on Windows
|
1527
|
+
- Fixed a few deployer crashes
|
1528
|
+
- Added nanoc3.rb, nanoc3/tasks.rb, … for compatibility with older versions
|
1529
|
+
- Made nanoc setup Bundler at startup [John Nishinaga]
|
1484
1530
|
|
1485
1531
|
## 3.3 (2012-02-12)
|
1486
1532
|
|
1487
1533
|
Base:
|
1488
1534
|
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1535
|
+
- Dropped the “3” suffix on nanoc3/Nanoc3
|
1536
|
+
- Turned Rake tasks into proper nanoc commands
|
1537
|
+
- Improved dependency tracking
|
1538
|
+
- Added support for locals in filters and layouts
|
1493
1539
|
|
1494
1540
|
Extensions:
|
1495
1541
|
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1542
|
+
- Added support for deployment using Fog [Jack Chu]
|
1543
|
+
- Added CoffeeScript filter [Riley Goodside]
|
1544
|
+
- Added XSL filter [Arnau Siches]
|
1545
|
+
- Added YUICompress filter [Matt Keveney]
|
1546
|
+
- Added pygments.rb to supported syntax colorizers
|
1547
|
+
- Allowed syntax colorizer to colorize outside `pre` elements [Kevin Lynagh]
|
1548
|
+
- Added support for HTTPS link validation [Fabian Buch]
|
1549
|
+
- Added support for (automatically) pruning stray output files [Justin Hileman]
|
1550
|
+
- Added deploy command
|
1505
1551
|
|
1506
1552
|
## 3.2.4 (2012-01-09)
|
1507
1553
|
|
1508
|
-
|
1509
|
-
|
1510
|
-
|
1511
|
-
|
1512
|
-
|
1554
|
+
- Fixed bug which would cause some reps not to be compiled when invoking nanoc programmatically
|
1555
|
+
- Made data source configuration location a bit more obvious
|
1556
|
+
- Fixed watch command under Windows
|
1557
|
+
- Made filesystem data source ignore UTF-8 BOM
|
1558
|
+
- Improved compatibility of `colorize_syntax` filter with older libxml versions
|
1513
1559
|
|
1514
1560
|
## 3.2.3 (2011-10-31)
|
1515
1561
|
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1562
|
+
- Made syntax colorizer only strip trailing blank lines instead of all blanks
|
1563
|
+
- Improved Ruby 1.9.x compatibility
|
1564
|
+
- Made default rakefile require rubygems if necessary
|
1565
|
+
- Made filename/content argument of `Nanoc3::Item#initialize` mandatory
|
1520
1566
|
|
1521
1567
|
## 3.2.2 (2011-09-04)
|
1522
1568
|
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1569
|
+
- Fixed command usage printing
|
1570
|
+
- Made `relativize_paths` filter handle Windows network paths [Ruben Verborgh]
|
1571
|
+
- Made watcher use correct configuration
|
1572
|
+
- Allowed code blocks to start with a non-language shebang line
|
1527
1573
|
|
1528
1574
|
## 3.2.1 (2011-07-27)
|
1529
1575
|
|
1530
|
-
|
1531
|
-
|
1532
|
-
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1576
|
+
- Made `@config` available in rules file
|
1577
|
+
- Fixed `#readpartial` issue on JRuby [Matt Keveney]
|
1578
|
+
- Fixed possible `@cache` name clash in memoization module
|
1579
|
+
- Fixed options with required arguments (such as `--port` and `--host`)
|
1580
|
+
- Fixed broken `#check_availability`
|
1581
|
+
- Fixed error handling in watch command
|
1536
1582
|
|
1537
1583
|
## 3.2 (2011-07-24)
|
1538
1584
|
|
1539
1585
|
Base:
|
1540
1586
|
|
1541
|
-
|
1542
|
-
|
1543
|
-
|
1544
|
-
|
1545
|
-
|
1546
|
-
|
1587
|
+
- Sped up nanoc quite a bit
|
1588
|
+
- Added progress indicator for long-running filters
|
1589
|
+
- Made all source data, such as item attributes, frozen during compilation
|
1590
|
+
- Added --color option to force color on
|
1591
|
+
- Cleaned up internals, deprecating several parts and/or marking them as private in the progress
|
1592
|
+
- Allowed custom commands in commands/
|
1547
1593
|
|
1548
1594
|
Extensions:
|
1549
1595
|
|
1550
|
-
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1596
|
+
- Added AsciiDoc filter
|
1597
|
+
- Added Redcarpet filter [Peter Aronoff]
|
1598
|
+
- Added Slim filter [Zaiste de Grengolada]
|
1599
|
+
- Added Typogruby filter
|
1600
|
+
- Added UglifyJS filter [Justin Hileman]
|
1601
|
+
- Added `:items` parameter for the XML site map [Justin Hileman]
|
1602
|
+
- Added support for params to ERB
|
1603
|
+
- Added `:default_colorizer` parameter to the `:colorize_syntax` filter
|
1604
|
+
- Allowed for passing arbitrary options to pygmentize [Matthias Vallentin]
|
1605
|
+
- Exposed RedCloth parameters in the filter [Vincent Driessen]
|
1560
1606
|
|
1561
1607
|
## 3.1.9 (2011-06-30)
|
1562
1608
|
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1609
|
+
- Really fixed dependency generation between Sass partials this time
|
1610
|
+
- Updated Less filter to 2.0
|
1611
|
+
- Made `colorize_syntax` filter throw an error if pygmentize is not available
|
1566
1612
|
|
1567
1613
|
## 3.1.8 (2011-06-25)
|
1568
1614
|
|
1569
|
-
|
1570
|
-
|
1571
|
-
|
1572
|
-
|
1573
|
-
|
1574
|
-
|
1615
|
+
- Made link validator accept https: URLs
|
1616
|
+
- Fixed erroneous handling of layouts with names ending in index
|
1617
|
+
- Fixed dependency generation between Sass partials
|
1618
|
+
- Fixed errors related to thread requires
|
1619
|
+
- Fixed crash while handling load errors
|
1620
|
+
- Improved encoding handling while reading files
|
1575
1621
|
|
1576
1622
|
## 3.1.7 (2011-05-03)
|
1577
1623
|
|
1578
|
-
|
1624
|
+
- Restored compatibility with Sass 3.1
|
1579
1625
|
|
1580
1626
|
## 3.1.6 (2010-11-21)
|
1581
1627
|
|
1582
|
-
|
1628
|
+
- Fixed issues with incompatible encodings
|
1583
1629
|
|
1584
1630
|
## 3.1.5 (2010-08-24)
|
1585
1631
|
|
1586
|
-
|
1587
|
-
|
1588
|
-
|
1589
|
-
|
1590
|
-
|
1632
|
+
- Improved `#render` documentation
|
1633
|
+
- Improved metadata section check so that e.g. raw diffs are handled properly
|
1634
|
+
- Deprecated using `Nanoc3::Site#initialize` with a non-`"."` argument
|
1635
|
+
- Added Ruby engine to version string
|
1636
|
+
- Allowed the `created_at` and `updated_at` attributes used in the `Blogging` helper to be `Date` instances
|
1591
1637
|
|
1592
1638
|
## 3.1.4 (2010-07-25)
|
1593
1639
|
|
1594
|
-
|
1595
|
-
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
1640
|
+
- Made INT and TERM signals always quit the CLI
|
1641
|
+
- Allowed relative imports in LESS
|
1642
|
+
- Made sure modification times are unchanged for identical recompiled items
|
1643
|
+
- Improved link validator error handling
|
1644
|
+
- Made pygmentize not output extra divs and pres
|
1645
|
+
- Allowed colorizers to be specified using symbols instead of strings
|
1646
|
+
- Added scss to the default list of text extensions
|
1601
1647
|
|
1602
1648
|
## 3.1.3 (2010-04-25)
|
1603
1649
|
|
1604
|
-
|
1605
|
-
|
1606
|
-
|
1607
|
-
|
1650
|
+
- Removed annoying win32console warning [Eric Sunshine]
|
1651
|
+
- Removed color codes when not writing to a terminal, or when writing to Windows’ console when win32console is not installed [Eric Sunshine]
|
1652
|
+
- Added .xhtml and .xml to list of text extensions
|
1653
|
+
- Improved support for relative Sass @imports [Chris Eppstein]
|
1608
1654
|
|
1609
1655
|
## 3.1.2 (2010-04-07)
|
1610
1656
|
|
1611
|
-
|
1657
|
+
- Fixed bug which could cause incorrect output when compilation of an item is delayed due to an unmet dependency
|
1612
1658
|
|
1613
1659
|
## 3.1.1 (2010-04-05)
|
1614
1660
|
|
1615
|
-
|
1616
|
-
|
1661
|
+
- Sass `@import`s now work for files not managed by nanoc
|
1662
|
+
- Rake tasks now have their Unicode description decomposed if necessary
|
1617
1663
|
|
1618
1664
|
## 3.1 (2010-04-03)
|
1619
1665
|
|
1620
1666
|
New:
|
1621
1667
|
|
1622
|
-
|
1623
|
-
|
1624
|
-
|
1625
|
-
|
1626
|
-
|
1627
|
-
|
1628
|
-
|
1629
|
-
|
1630
|
-
|
1631
|
-
|
1668
|
+
- An `Item#rep_named(name)` function for quickly getting a certain rep
|
1669
|
+
- An `Item#compiled_content` function for quickly getting compiled content
|
1670
|
+
- An `Item#path` function for quickly getting the path of an item rep
|
1671
|
+
- A new “+” wildcard in rule patterns that matches one or more characters
|
1672
|
+
- A `view` command that starts a web server in the output directory
|
1673
|
+
- A `debug` command that shows information about the items, reps and layouts
|
1674
|
+
- A `kramdown` filter ([kramdown site](https://kramdown.gettalong.org/))
|
1675
|
+
- A diff between the previously compiled content and the last compiled content is now written to `output.diff` if the `enable_output_diff` site configuration attribute is true
|
1676
|
+
- Assigns, such as `@items`, `@layouts`, `@item`, … are accessible without `@`
|
1677
|
+
- Support for binary items
|
1632
1678
|
|
1633
1679
|
Changed:
|
1634
1680
|
|
1635
|
-
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
|
1640
|
-
|
1641
|
-
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
1647
|
-
|
1648
|
-
|
1681
|
+
- New sites now come with a stylesheet item instead of a `style.css` file in the output directory
|
1682
|
+
- The `deploy:rsync` task now use sensible default options
|
1683
|
+
- The `deploy:rsync` task now accepts a config environment variable
|
1684
|
+
- The `deploy:rsync` task now uses a lowercase `dry_run` environment variable
|
1685
|
+
- The `maruku` filter now accepts parameters
|
1686
|
+
- The `rainpress` filter now accepts parameters
|
1687
|
+
- The `filesystem` data source is now known as `filesystem_verbose`
|
1688
|
+
- Meta files and content files are now optional
|
1689
|
+
- The `filesystem_compact` and `filesystem_combined` data sources have been merged into a new `filesystem_unified` data source
|
1690
|
+
- The metadata section in `filesystem_unified` is now optional [Chris Eppstein]
|
1691
|
+
- The `--server` autocompile option is now known as `--handler`
|
1692
|
+
- Assigns in filters are now available as instance variables and methods
|
1693
|
+
- The `#breadcrumbs_trail` function now allows missing parents
|
1694
|
+
- The `sass` filter now properly handles `@import` dependencies
|
1649
1695
|
|
1650
1696
|
Deprecated:
|
1651
1697
|
|
1652
|
-
|
1653
|
-
|
1654
|
-
|
1698
|
+
- `Nanoc3::FileProxy`; use one of the filename attributes instead
|
1699
|
+
- `ItemRep#content_at_snapshot`; use `#compiled_content` instead
|
1700
|
+
- The `last_fm`, `delicious` and `twitter` data sources; fetch online content into a cache by a rake task and load data from this cache instead
|
1655
1701
|
|
1656
1702
|
## 3.0.9 (2010-02-24)
|
1657
1703
|
|
1658
|
-
|
1704
|
+
- Fixed 1.8.x parsing bug due to lack of parens which could cause “undefined method `to_iso8601_time` for #<String:0x…>” errors
|
1659
1705
|
|
1660
1706
|
## 3.0.8 (2010-02-24)
|
1661
1707
|
|
1662
|
-
|
1663
|
-
|
1664
|
-
|
1665
|
-
|
1708
|
+
- `#atom_tag_for` now works with `base_url`s that contain a path [Eric Sunshine]
|
1709
|
+
- Generated root URLs in `#atom_feed` now end with a slash [Eric Sunshine]
|
1710
|
+
- Autocompiler now recognises requests to index files
|
1711
|
+
- `Blogging` helper now allows `created_at` to be a Time instance
|
1666
1712
|
|
1667
1713
|
## 3.0.7 (2010-01-29)
|
1668
1714
|
|
1669
|
-
|
1715
|
+
- Fixed bug which could cause layout rules not be matched in order
|
1670
1716
|
|
1671
1717
|
## 3.0.6 (2010-01-17)
|
1672
1718
|
|
1673
|
-
|
1674
|
-
|
1675
|
-
|
1676
|
-
|
1719
|
+
- Error checking in `filesystem_combined` has been improved [Brian Candler]
|
1720
|
+
- Generated HTML files now have a default encoding of UTF-8
|
1721
|
+
- Periods in identifiers for layouts now behave correctly
|
1722
|
+
- The `relativize_paths` filter now correctly handles “/” [Eric Sunshine]
|
1677
1723
|
|
1678
1724
|
## 3.0.5 (2010-01-12)
|
1679
1725
|
|
1680
|
-
|
1726
|
+
- Restored pre-3.0.3 behaviour of periods in identifiers. By default, a file can have multiple extensions (e.g. `content/foo.html.erb` will have the identifier `/foo/`), but if `allow_periods_in_identifiers` in the site configuration is true, a file can have only one extension (e.g. `content/blog/stuff.entry.html` will have the identifier `/blog/stuff.entry/`).
|
1681
1727
|
|
1682
1728
|
## 3.0.4 (2010-01-07)
|
1683
1729
|
|
1684
|
-
|
1730
|
+
- Fixed a bug which would cause the `filesystem_compact` data source to incorrectly determine the content filename, leading to weird “Expected 1 content file but found 3” errors [Eric Sunshine]
|
1685
1731
|
|
1686
1732
|
## 3.0.3 (2010-01-06)
|
1687
1733
|
|
1688
|
-
|
1689
|
-
|
1690
|
-
|
1691
|
-
|
1692
|
-
|
1693
|
-
|
1694
|
-
|
1695
|
-
|
1734
|
+
- The `Blogging` helper now properly handles item reps without paths
|
1735
|
+
- The `relativize_paths` filter now only operates inside tags
|
1736
|
+
- The autocompiler now handles escaped paths
|
1737
|
+
- The `LinkTo` and `Tagging` helpers now output escaped HTML
|
1738
|
+
- Fixed `played_at` attribute assignment in the `LastFM` data source for tracks playing now, and added a `now_playing` attribute [Nicky Peeters]
|
1739
|
+
- The `filesystem_*` data sources can now handle dots in identifiers
|
1740
|
+
- Required enumerator to make sure `#enum_with_index` always works
|
1741
|
+
- `Array#stringify_keys` now properly recurses
|
1696
1742
|
|
1697
1743
|
## 3.0.2 (2009-11-07)
|
1698
1744
|
|
1699
|
-
|
1700
|
-
|
1701
|
-
|
1745
|
+
- Children-only identifier patterns no longer erroneously also match parent (e.g. `/foo/*/` no longer matches `/foo/`)
|
1746
|
+
- The `create_site` command no longer uses those ugly HTML entities
|
1747
|
+
- Install message now mentions the IRC channel
|
1702
1748
|
|
1703
1749
|
## 3.0.1 (2009-10-05)
|
1704
1750
|
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
1709
|
-
|
1751
|
+
- The proper exception is now raised when no matching compilation rules can be found
|
1752
|
+
- The autocompile command no longer has a duplicate `--port` option
|
1753
|
+
- The `#url_for` and `#feed_url` methods now check the presence of the `base_url` site configuration attribute
|
1754
|
+
- Several outdated URLs are now up-to-date
|
1755
|
+
- Error handling has been improved in general
|
1710
1756
|
|
1711
1757
|
## 3.0 (2009-08-14)
|
1712
1758
|
|
1713
1759
|
New:
|
1714
1760
|
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
1720
|
-
|
1721
|
-
|
1761
|
+
- Multiple data sources
|
1762
|
+
- Dependency tracking between items
|
1763
|
+
- Filters can now optionally take arguments
|
1764
|
+
- `#create_page` and `#create_layout` methods in data sources
|
1765
|
+
- A new way to specify compilation/routing rules using a Rules file
|
1766
|
+
- A `coderay` filter ([CodeRay site](http://coderay.rubychan.de/))
|
1767
|
+
- A `filesystem_compact` data source which uses less directories
|
1722
1768
|
|
1723
1769
|
Changed:
|
1724
1770
|
|
1725
|
-
|
1771
|
+
- Pages and textual assets are now known as “items”
|
1726
1772
|
|
1727
1773
|
Removed:
|
1728
1774
|
|
1729
|
-
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1734
|
-
|
1775
|
+
- Support for drafts
|
1776
|
+
- Support for binary assets
|
1777
|
+
- Support for templates
|
1778
|
+
- Everything that was deprecated in nanoc 2.x
|
1779
|
+
- `save_*`, `move_*` and `delete_*` methods in data sources
|
1780
|
+
- Processing instructions in metadata
|
1735
1781
|
|
1736
1782
|
## 2.2.2 (2009-05-18)
|
1737
1783
|
|
1738
|
-
|
1739
|
-
|
1740
|
-
|
1784
|
+
- Removed `relativize_paths` filter; use `relativize_paths_in_html` or `relativize_paths_in_css` instead
|
1785
|
+
- Fixed bug which could cause nanoc to eat massive amounts of memory when an exception occurs
|
1786
|
+
- Fixed bug which would cause nanoc to complain about the open file limit being reached when using a large amount of assets
|
1741
1787
|
|
1742
1788
|
## 2.2.1 (2009-04-08)
|
1743
1789
|
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1790
|
+
- Fixed bug which prevented `relative_path_to` from working
|
1791
|
+
- Split `relativize_paths` filter into two filter: `relativize_paths_in_html` and `relativize_paths_in_css`
|
1792
|
+
- Removed bundled mime-types library
|
1747
1793
|
|
1748
1794
|
## 2.2 (2009-04-06)
|
1749
1795
|
|
1750
1796
|
New:
|
1751
1797
|
|
1752
|
-
|
1753
|
-
|
1754
|
-
|
1755
|
-
|
1756
|
-
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1798
|
+
- `--pages` and `--assets` compiler options
|
1799
|
+
- `--no-color` command-line option
|
1800
|
+
- `Filtering` helper
|
1801
|
+
- `#relative_path_to` function in `LinkTo` helper
|
1802
|
+
- `rainpress` filter ([Rainpress site](https://github.com/ddfreyne/rainpress))
|
1803
|
+
- `relativize_paths` filter
|
1804
|
+
- The current layout is now accessible through the `@layout` variable
|
1805
|
+
- Much more informative stack traces when something goes wrong
|
1760
1806
|
|
1761
1807
|
Changed:
|
1762
1808
|
|
1763
|
-
|
1764
|
-
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1809
|
+
- The command-line option parser is now a lot more reliable
|
1810
|
+
- `#atom_feed` now takes optional `:content_proc`, `:excerpt_proc` and `:articles` parameters
|
1811
|
+
- The compile command show non-written items (those with `skip_output: true`)
|
1812
|
+
- The compile command compiles everything by default
|
1813
|
+
- Added `--only-outdated` option to compile only outdated pages
|
1768
1814
|
|
1769
1815
|
Removed:
|
1770
1816
|
|
1771
|
-
|
1817
|
+
- deprecated extension-based code
|
1772
1818
|
|
1773
1819
|
## 2.1.6 (2009-02-28)
|
1774
1820
|
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1778
|
-
|
1779
|
-
|
1821
|
+
- The `filesystem_combined` data source now supports empty metadata sections
|
1822
|
+
- The `rdoc` filter now works for both RDoc 1.x and 2.x
|
1823
|
+
- The autocompiler now serves a 500 when an exception occurs outside compilation
|
1824
|
+
- The autocompiler no longer serves index files when the request path does not end with a slash
|
1825
|
+
- The autocompiler now always serves asset content correctly
|
1780
1826
|
|
1781
1827
|
## 2.1.5 (2009-02-01)
|
1782
1828
|
|
1783
|
-
|
1784
|
-
|
1829
|
+
- Added Ruby 1.9 compatibility
|
1830
|
+
- The `filesystem` and `filesystem_combined` data sources now preserve custom extensions
|
1785
1831
|
|
1786
1832
|
## 2.1.4 (2008-11-15)
|
1787
1833
|
|
1788
|
-
|
1834
|
+
- Fixed an issue where the autocompiler in Windows would serve broken assets
|
1789
1835
|
|
1790
1836
|
## 2.1.3 (2008-09-27)
|
1791
1837
|
|
1792
|
-
|
1793
|
-
|
1794
|
-
|
1795
|
-
|
1838
|
+
- The `haml` and `sass` filters now correctly take their options from assets
|
1839
|
+
- The autocompiler now serves index files instead of 404s
|
1840
|
+
- Layouts named “index” are now handled correctly
|
1841
|
+
- The `filesystem_combined` data source now properly handles assets
|
1796
1842
|
|
1797
1843
|
## 2.1.2 (2008-09-08)
|
1798
1844
|
|
1799
|
-
|
1800
|
-
|
1801
|
-
|
1845
|
+
- The utocompiler now compiles assets as well
|
1846
|
+
- The `sass` filter now takes options (just like the `haml` filter)
|
1847
|
+
- Haml/Sass options are now taken from the page _rep_ instead of the page
|
1802
1848
|
|
1803
1849
|
## 2.1.1 (2008-08-18)
|
1804
1850
|
|
1805
|
-
|
1851
|
+
- Fixed issue which would cause files not to be required in the right order
|
1806
1852
|
|
1807
1853
|
## 2.1 (2008-08-17)
|
1808
1854
|
|
@@ -1812,141 +1858,141 @@ updated manual will be useful.
|
|
1812
1858
|
|
1813
1859
|
New:
|
1814
1860
|
|
1815
|
-
|
1816
|
-
|
1817
|
-
|
1818
|
-
|
1819
|
-
|
1820
|
-
|
1821
|
-
|
1861
|
+
- New `rdiscount` filter ([RDiscount site](https://github.com/davidfstr/rdiscount))
|
1862
|
+
- New `maruku` filter ([Maruku site](https://github.com/bhollis/maruku/))
|
1863
|
+
- New `erubis` filter ([Erubis site](http://www.kuwata-lab.com/erubis/))
|
1864
|
+
- A better command-line frontend
|
1865
|
+
- A new filesystem data source named `filesystem_combined`
|
1866
|
+
- Routers, which decide where compiled pages should be written to
|
1867
|
+
- Page/layout mtimes can now be retrieved through `page.mtime`/`layout.mtime`
|
1822
1868
|
|
1823
1869
|
Changed:
|
1824
1870
|
|
1825
|
-
|
1826
|
-
|
1827
|
-
|
1828
|
-
|
1829
|
-
|
1871
|
+
- Already compiled pages will no longer be re-compiled unless outdated
|
1872
|
+
- Layout processors and filters have been merged
|
1873
|
+
- Layouts no longer rely on file extensions to determine the layout processor
|
1874
|
+
- Greatly improved source code documentation
|
1875
|
+
- Greatly improved unit test suite
|
1830
1876
|
|
1831
1877
|
Removed:
|
1832
1878
|
|
1833
|
-
|
1834
|
-
|
1835
|
-
|
1836
|
-
|
1879
|
+
- Several filters have been removed and replaced by newer filters:
|
1880
|
+
- `eruby`: use `erb` or `erubis` instead
|
1881
|
+
- `markdown`: use `bluecloth`, `rdiscount` or `maruku` instead
|
1882
|
+
- `textile`: use `redcloth` instead
|
1837
1883
|
|
1838
1884
|
## 2.0.4 (2008-05-04)
|
1839
1885
|
|
1840
|
-
|
1841
|
-
|
1886
|
+
- Fixed `default.rb`’s `#html_escape`
|
1887
|
+
- Updated Haml filter and layout processor so that @page, @pages and @config are now available as instance variables instead of local variables
|
1842
1888
|
|
1843
1889
|
## 2.0.3 (2008-03-25)
|
1844
1890
|
|
1845
|
-
|
1846
|
-
|
1891
|
+
- The autocompiler now honors custom paths
|
1892
|
+
- The autocompiler now attempts to serve pages with the most appropriate MIME type, instead of always serving everything as `text/html`
|
1847
1893
|
|
1848
1894
|
## 2.0.2 (2008-01-26)
|
1849
1895
|
|
1850
|
-
|
1896
|
+
- nanoc now requires Ruby 1.8.5 instead of 1.8.6
|
1851
1897
|
|
1852
1898
|
## 2.0.1 (2008-01-21)
|
1853
1899
|
|
1854
|
-
|
1900
|
+
- Fixed a “too many open files” error that could appear during (auto)compiling
|
1855
1901
|
|
1856
1902
|
## 2.0 (2007-12-25)
|
1857
1903
|
|
1858
1904
|
New:
|
1859
1905
|
|
1860
|
-
|
1861
|
-
|
1862
|
-
|
1863
|
-
|
1864
|
-
|
1906
|
+
- Support for custom layout processors
|
1907
|
+
- Support for custom data sources
|
1908
|
+
- Database data source
|
1909
|
+
- An auto-compiler
|
1910
|
+
- Pages have `parent` and `children`
|
1865
1911
|
|
1866
1912
|
Changed:
|
1867
1913
|
|
1868
|
-
|
1869
|
-
|
1870
|
-
|
1914
|
+
- The source has been restructured and cleaned up a great deal
|
1915
|
+
- Filters are defined in a different way now
|
1916
|
+
- The `eruby` filter now uses ERB instead of Erubis
|
1871
1917
|
|
1872
1918
|
Removed:
|
1873
1919
|
|
1874
|
-
|
1875
|
-
|
1920
|
+
- The `filters` property; use `filters_pre` instead
|
1921
|
+
- Support for Liquid
|
1876
1922
|
|
1877
1923
|
## 1.6.2 (2007-10-23)
|
1878
1924
|
|
1879
|
-
|
1925
|
+
- Fixed an issue which prevented the content capturing plugin from working
|
1880
1926
|
|
1881
1927
|
## 1.6.1 (2007-10-14)
|
1882
1928
|
|
1883
|
-
|
1929
|
+
- Removed a stray debug message
|
1884
1930
|
|
1885
1931
|
## 1.6 (2007-10-13)
|
1886
1932
|
|
1887
|
-
|
1888
|
-
|
1889
|
-
|
1890
|
-
|
1933
|
+
- Added support for post-layout filters
|
1934
|
+
- Added support for getting a File object for the page, so you can now e.g. easily get the modification time for a given page (`@page.file.mtime`)
|
1935
|
+
- Cleaned up the source code a lot
|
1936
|
+
- Removed deprecated asset-copying functionality
|
1891
1937
|
|
1892
1938
|
## 1.5 (2007-09-10)
|
1893
1939
|
|
1894
|
-
|
1895
|
-
|
1896
|
-
|
1897
|
-
|
1940
|
+
- Added support for custom filters
|
1941
|
+
- Improved Liquid support -- Liquid is now a first-class nanoc citizen
|
1942
|
+
- Deprecated assets -- use something like rsync instead
|
1943
|
+
- Added `eruby_engine` option, which can be `erb` or `erubis`
|
1898
1944
|
|
1899
1945
|
## 1.4 (2007-07-06)
|
1900
1946
|
|
1901
|
-
|
1902
|
-
|
1903
|
-
|
1904
|
-
|
1947
|
+
- nanoc now supports ERB (as well as Erubis); Erubis no longer is a dependency
|
1948
|
+
- `meta.yaml` can now have `haml_options` property, which is passed to Haml
|
1949
|
+
- Pages can now have a `filename` property, which defaults to `index` [Dennis Sutch]
|
1950
|
+
- Pages now know in what order they should be compiled, eliminating the need for custom page ordering [Dennis Sutch]
|
1905
1951
|
|
1906
1952
|
## 1.3.1 (2007-06-30)
|
1907
1953
|
|
1908
|
-
|
1954
|
+
- The contents of the `assets` directory are now copied into the output directory specified in `config.yaml`
|
1909
1955
|
|
1910
1956
|
## 1.3 (2007-06-24)
|
1911
1957
|
|
1912
|
-
|
1913
|
-
|
1914
|
-
|
1915
|
-
|
1916
|
-
|
1917
|
-
|
1958
|
+
- The `@pages` array now also contains uncompiled pages
|
1959
|
+
- Pages with `skip_output` set to true will not be outputted
|
1960
|
+
- Added new filters
|
1961
|
+
- Textile/RedCloth
|
1962
|
+
- Sass
|
1963
|
+
- nanoc now warns before overwriting in `create_site`, `create_page` and `create_template` (but not in compile)
|
1918
1964
|
|
1919
1965
|
## 1.2 (2007-06-05)
|
1920
1966
|
|
1921
|
-
|
1922
|
-
|
1923
|
-
|
1924
|
-
|
1925
|
-
|
1926
|
-
|
1967
|
+
- Sites now have an `assets` directory, whose contents are copied to the `output` directory when compiling [Stanley Rost]
|
1968
|
+
- Added support for non-eRuby layouts (Markaby, Haml, Liquid, …)
|
1969
|
+
- Added more filters (Markaby, Haml, Liquid, RDoc [Dmitry Bilunov])
|
1970
|
+
- Improved error reporting
|
1971
|
+
- Accessing page attributes using instance variables, and not through `@page`, is no longer possible
|
1972
|
+
- Page attributes can now be accessed using dot notation, i.e. `@page.title` as well as `@page[:title]`
|
1927
1973
|
|
1928
1974
|
## 1.1.3 (2007-05-18)
|
1929
1975
|
|
1930
|
-
|
1976
|
+
- Fixed bug which would cause layoutless pages to be outputted incorrectly
|
1931
1977
|
|
1932
1978
|
## 1.1.2 (2007-05-17)
|
1933
1979
|
|
1934
|
-
|
1935
|
-
|
1980
|
+
- Backup files (files ending with a “~”) are now ignored
|
1981
|
+
- Fixed bug which would cause subpages not to be generated correctly
|
1936
1982
|
|
1937
1983
|
## 1.1 (2007-05-08)
|
1938
1984
|
|
1939
|
-
|
1940
|
-
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
1985
|
+
- Added support for nested layouts
|
1986
|
+
- Added coloured logging
|
1987
|
+
- `@page` now hold the page that is currently being processed
|
1988
|
+
- Index files are now called “content” files and are now named after the directory they are in [Colin Barrett]
|
1989
|
+
- It is now possible to access `@page` in the page’s content file
|
1944
1990
|
|
1945
1991
|
## 1.0.1 (2007-05-05)
|
1946
1992
|
|
1947
|
-
|
1948
|
-
|
1993
|
+
- Fixed a bug which would cause a “no such template” error to be displayed when the template existed but compiling it would raise an exception
|
1994
|
+
- Fixed bug which would cause pages not to be sorted by order before compiling
|
1949
1995
|
|
1950
1996
|
## 1.0 (2007-05-03)
|
1951
1997
|
|
1952
|
-
|
1998
|
+
- Initial release
|