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.
 
 
 

430 lines
14 KiB

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