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.
 
 
 

376 lines
13 KiB

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