A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

343 lines
11 KiB

  1. Version 0.8.7a6
  2. ============================================================
  3. * Better exception handling. (Issue #204)
  4. - Hyde now propagates exceptions
  5. - Hyde does not raise exceptions by default. `-x` flag is required
  6. for raising exceptions on error.
  7. - Traceback is available in the `verbose` mode
  8. * Upgraded to commando 0.3.4
  9. * Upgraded to Jinja 2.7
  10. Version 0.8.7a5
  11. ============================================================
  12. * Make sorter's prev/next links circular. (Issue #208)
  13. Version 0.8.7a4
  14. ============================================================
  15. * Include project artifacts in sdist. (Issue #211)
  16. - Add LICENSE, AUTHORS and CHANGELOG to MANIFEST.in
  17. * Add "Hyde contributors to LICENSE copyright"
  18. Version 0.8.7a3
  19. ============================================================
  20. * Upgrade `UglifyPlugin` to use 2.3.5 version of uglify. (Issue #214)
  21. Version 0.8.7a2
  22. ============================================================
  23. * Add support for draft blog posts. (Issue #213)
  24. Version 0.8.7a1
  25. ============================================================
  26. * Bugfix: Use `clearfix` class in `listing.j2`. (Issue #156)
  27. * Bugfix: Use `relative_path` instead of url in `macros.j2`. (Issue #180)
  28. Version 0.8.6
  29. ============================================================
  30. Thanks to @QuLogic:
  31. * Refactor: Plugins reorganized by function. (Issue #170)
  32. * Add HG Dates Plugin. (Issue #177)
  33. * Add Clever CSS Plugin. (Issue #178)
  34. * Add Sassy CSS Plugin. (Issue #179)
  35. Thanks to @sirlantis:
  36. * Add support for custom jinja filters. (Issue #159)
  37. Thanks to @gfuchedzhy
  38. * Bugfix: Serve files without a resource. (Issue #92)
  39. Thanks to @ilkerde:
  40. * Add Require JS plugin. (Issue #201)
  41. Thanks to @jakevdp:
  42. * Add SSH publisher. (Issue #205)
  43. Thanks to @herr-lehmann and @nud:
  44. * Bugfix: Fix date time comparison in git plugin. (Issue#142, #199, #137)
  45. Thanks to @rephorm, @gfuchedzhy and @vincentbernat:
  46. * Add thumbnail plugin. (Issue #169, #89)
  47. Thanks to @vincentbernat:
  48. * Add Coffeescript plugin. (Issue #172)
  49. * Add jpegtran plugin. (Issue #171)
  50. Thanks to @jabapyth:
  51. * Add extension support for restructured text. (Issue #206)
  52. Thanks to @tarajane:
  53. * Bugfix: Update the .clear styleName to be .clearfix instead.
  54. Base.j2 applies the 'clearfix' class to the 'banner' element, and not
  55. the 'clear' class. (Issue #156)
  56. Thanks to @pib:
  57. * Bugfix: Use `_transform` instead of `transform` in Expando.
  58. (Issue #152, #153)
  59. Version 0.8.5
  60. ============================================================
  61. * Upgrade dependencies and setup for 0.8.5
  62. * Remove `hyde.fs` use `fswrap` package instead.
  63. * Remove logging functions from `hyde.util`. Use `commando.util` instead.
  64. * Remove `hyde.loader`. Use `commando.util.load_python_object` instead.
  65. * Bugfix: Use the released version of typogrify. (Issue #193)
  66. * Bugfix: Fixed stylus `indent` issues with empty files. (Issue #161)
  67. * Bugfix: Added support for plugin paths relative to site. (Issue #107)
  68. * Bugfix: Folder Flattener updates node's `relative_deploy_path` & `url`
  69. attributes as well. (Issue #126)
  70. * BREAKING: As part of the above fix, `resource.url` is prefixed with a `/`.
  71. (Issue #126)
  72. * Added `simple_copy` feature to account for unprocessable files that
  73. are nonetheless required to be deployed (Issue #121)
  74. * Bugfix: Relative path was used in the server as the sitepath (Issue #119)
  75. * Plugins now support inclusion filters. (Issue #112)
  76. - `include_file_patterns` property accepts globs to filter by file name.
  77. - `include_paths` accepts paths relative to content.
  78. - `begin_node` and `node_complete` honor `include_paths`
  79. - `begin_text_resource`, `text_resource_complete`, `begin_binary_resource`
  80. and `binary_resource_complete` honor both.
  81. * Bugfix: Unsorted combine files fixed. (Issue #111)
  82. * Added an optional sorting parameter. (Issue #111)
  83. * Bugfix: Modified combine plugin to process during
  84. `begin_text_resource`. (Issue #110)
  85. * Modified combine plugin to support relative paths and recursion.
  86. (Issue #108)
  87. * Added ability to specify safe characters in `content_url`,
  88. `media_url` functions and `urlencode` filter. (Issue #103)
  89. Thanks to @idank
  90. * Bugfix: Use `check_output` to avoid a traceback when subprocess
  91. command fails.
  92. * Bugfix: Tag archive generator uses subscript syntax to avoid failure
  93. when tags contain '-' or space. (Issue #130)
  94. Thanks to @jd
  95. * Bugfix: Metadata Plugin: Do not try to read meta data on `simple_copy`
  96. files. (Issue #124, Issue #121)
  97. * Bugfix: Force escape on title in Atom feed. (Issue #176)
  98. * Add `node.rwalk` method for traversing the node in reverse. (Issue #176)
  99. Thanks to @vinilios
  100. * Added a helper method in Expando class to ease up non existing keys
  101. handling. (Issue #117)
  102. * Some improvements in LessCSSPlugin to be able to build complex less
  103. projects (such as twitter bootstrap) (Issue #117)
  104. Thanks to @Erkan-Yilmaz
  105. * Fixed typos in README.
  106. Thanks to @merlinrebrovic
  107. * Updates and improvements to the starter template.
  108. * Cleans up CSS.
  109. * Handles page title endings more elegantly.
  110. * Renders the advanced menu below the basic one.
  111. * Corrects and updates content.
  112. * Explains how to generate and serve the template.
  113. * Makes it more straightforward to contribute.
  114. Thanks to @joshgerdes:
  115. * Made urlencoding safe character list configurable. (Issue #150)
  116. Thanks to @irrelative:
  117. * Bugfix: Avoid index error if there aren't pages when iterating
  118. for paginator. (Issue #190)
  119. Thanks to @davefowler:
  120. * Bugfix: Infinate recursion error with resource dependencies.
  121. (Issue #155, Issue#200)
  122. Thanks to @adube:
  123. * Bugfix: Fix atom.j2 to use `relative_path` instead of `url` when
  124. referencing templates. (Issue #155, Issue#203)
  125. Version 0.8.4
  126. ============================================================
  127. * Bugfix: Configuration now gets reloaded when server regenerates (Issue #70)
  128. * Bugfix: Added styles for codebox (Issue #69)
  129. * Tagger now generates archives upfront in begin_site (Issue #72)
  130. * **Breaking**: The default nodemeta file has been changed to meta.yaml
  131. * Added test for codehilite markdown extension (Issue #82)
  132. * Added rst_directive.py from the pygments repository (Issue #82)
  133. * Added support for ignoring nodes (Issue #80)
  134. * Hyde now ignores .hg, .svn and .git by default (Issue #80)
  135. * Added support for default publisher (Issue #83)
  136. * Added `urlencode` and `urldecode` filters. (Issue #102)
  137. * Bugfix: Fixed tests for Issue #88
  138. * Added tests for sorting groups
  139. * Added support for loading modules from the site path. Thanks to
  140. @theomega for the idea (Issue #78 & #79)
  141. * Added docutils to dev-req.txt
  142. * Bugfix: Fixed uglify-js tests
  143. Thanks to @nud
  144. * `$PATH` based executable discovery for `CLTransformer` plugins. (Issue #100)
  145. * Bugfix: Fix class name of `test_stylus` (Issue #97)
  146. Thanks to @gfuchedzhy
  147. * Bugfix: Textlinks plugin: do nothing if resource doesn't use template (Issue #96)
  148. * Bugfix: Retain permissions in text files during generation (Issue #90)
  149. * Bugfix: Added support for encoded urls to hyde server. (Issue #88)
  150. * Bugfix: Converted `content_url` and `media_url` to encoded urls. (Issue #88)
  151. * Bugfix: All occurrences of `str` replaced with `unicode`. (Issue #87)
  152. * Bugfix: CLTransformer now gracefully handles arguments that have "=". (Issue #58)
  153. Thanks to @vincentbernat
  154. * Support for `output_format` configuration in markdown (Issue #89)
  155. Thanks to @merlinrebrovic
  156. * Hyde starter kit extended with advanced options (Issue #68)
  157. Thanks to @tcheneau
  158. * Added support for AsciiDoc. (Issue #76)
  159. Thanks to @gr3dman
  160. * Added paginator plugin and tests (Issue #73)
  161. Thanks to @benallard
  162. * Added restructuredText plugin (Issue #63)
  163. * Added restructuredText filter (Issue #63)
  164. * Added traceback support for errors when server is running (Issue #63)
  165. Thanks to @rfk
  166. * Added Sphinx Plugin (Issue #62)
  167. * Bugfix: PyFS publisher now checks if the pyfs module is installed. (Issue #62)
  168. Version 0.8.3
  169. ============================================================
  170. * Bugfix: A bad bug in Expando that modified the `__dict__` has been fixed.
  171. (Issue #53)
  172. * Tags now support metadata. Metadata can be provided as part of the tagger
  173. plugin configuration in `site.yaml`
  174. * Ensured that the context data & providers behave in the same manner. Both
  175. get loaded as expandos. (Issue #29)
  176. * `hyde serve` now picks up changes in config data automatically.
  177. (Issue #24)
  178. * Bugfix: `hyde create` only fails when `content`, `layout` or `site.yaml`
  179. is present in the target directory. (Issue #21)
  180. * Bugfix: Exceptions are now handled with `ArgumentParser.error`.
  181. * Bugfix: Sorter excludes items that do not have sorting attributes.
  182. (Issue #18)
  183. * Wrapped `<figure>` inside `<div>` to appease markdown. (Issue #17)
  184. * Added `display:block` for html5 elements in basic template so that it
  185. works in not so modern browsers as well. (Issue #17)
  186. Thanks to Joe Steeve.
  187. * Changed deploy location for main.py and fixed entry point in
  188. `setup.py`. (Issue #56)
  189. Thanks to @stiell
  190. * Bugfix: Better mime type support in hyde server (Issue #50)
  191. * Bugfix: Support empty extension in tagger archives (Issue #50)
  192. Thanks to @gfuchedzhy
  193. * Bugfix: Hyde server now takes the url cleaner plugin into account.
  194. (Issue #54)
  195. Thanks to @vincentbernat
  196. * Bugfix: Ensure image sizer plugin handles external urls properly.
  197. (Issue #52)
  198. Thanks to @rfk
  199. * Added PyPI publisher (Issue #49)
  200. * Bugfix: Made `site.full_url` ignore fully qualified paths (Issue #49)
  201. Thanks to @vincentbernat
  202. * Added JPEG Optim plugin (Issue #47)
  203. * Fixes to CLTransformer (Issue #47)
  204. Version 0.8.2
  205. ============================================================
  206. Thanks to @merlinrebrovic
  207. * Added hyde starter kit (Issue #43)
  208. Thanks to @vincentbernat
  209. * Added git dates plugin (Issue #42)
  210. * Added Image size plugin (Issue #44)
  211. * Added silent, compress and optimization parameter support for less css
  212. plugin (Issue #40)
  213. * Fixed plugin chaining issues (Issue #38)
  214. * Added Language(translation) plugin (Issue #37)
  215. * Bugfix: Made sorting tests more predictable (Issue #41)
  216. * Bugfix: Added more standard paths for executables (Issue #41)
  217. * Added Combine files plugin (Issue #39)
  218. * Added ignore option in site configuration to igore based on wildcards
  219. (Issue #32)
  220. Thanks to @pestaa
  221. * Added support `UTF8` keys in `metadata` and `config` (Issue #33)
  222. Version 0.8.1
  223. ============================================================
  224. Thanks to @rfk.
  225. * Updated to use nose 1.0 (Issue #28)
  226. * Bugfix: LessCSSPlugin: return original text if not a .less file
  227. (Issue #28)
  228. * PyFS publisher with mtime and etags support. (Issue #28)
  229. Version 0.8
  230. ============================================================
  231. * Relative path bugs in windows generation have been fixed.
  232. Version 0.8rc3
  233. ============================================================
  234. * Fixed a jinja2 loader path issue that prevented site generation in windows
  235. * Fixed tests for stylus plugin to account for more accurate color
  236. manipulation in the latest stylus