Skip to content

Latest commit

 

History

History
142 lines (101 loc) · 4.11 KB

changelog.md

File metadata and controls

142 lines (101 loc) · 4.11 KB

1.0.0 - September 10, 2014

  • Finalized API, replaced parse/parseWithConfig with a single render method
  • Added a way for users to specify their own output processing via a processOutput function in the config object

0.32.0 - September 9, 2014

  • Support for custom templates via command line parameters (#72)

0.31.2 - September 6, 2014

  • Support enums for headers and URI parameters (#59)
  • Rendering URI parameter examples (#57)
  • Greatly simplified resource.handlebars by moving all the common code into a separate partial

0.31.1 - August 21, 2014

  • Fixed HTML validity (#61)
  • Fixed rendering of links within Markdown content (#63)

0.31.0 - August 21, 2014

  • Improved rendering of tables within Markdown content

0.30.0 - July 16, 2014

  • Adding -s command line parameter to use https links in the generated html file (it uses http by default)
  • Deprecated the parse function, use parseWithConfig instead (in combination with the getDefaultConfig function)
  • Bugfix: fixed html escaping for XML/HTML content (#53)

0.29.0 - July 16, 2014

  • Moved code highlighting to the client to generate smaller HTML output
  • Use a HTML minifier to generate MUCH smaller output
  • Don't html-escape string in <pre><code> blocks
  • The GitHub example used to be 3.2 MB, after these changes it's down to 1.2 MB

0.28.0 - July 14, 2014

  • Render descriptions for nested resources
  • Made the method badges clickable directly from the collapsed panel

0.27.0 - July 10, 2014

  • Added a new public function getDefaultConfig

0.26.0 - July 10, 2014

  • Render required and description of URI Parameters
  • Made the output of URI params, form params, request body and response body consistent with each other

0.25.0 - July 9, 2014

  • Added code highlighting to the Markdown parser

0.24.0 - July 7, 2014

  • Added header examples

0.23.2 - July 7, 2014

  • Fixed escape key not closing the modal

0.23.1 - June 29, 2014

  • Fixed Markdown output for long sentences
  • Added GitHub API example

0.23.0 - June 29, 2014

  • Parse method descriptions in the main view with Markdown as well

0.22.1 - June 21, 2014

  • Fixed error handling

0.22.0 - June 21, 2014

  • Added headers to request and response information

0.21.0 - June 12, 2014

  • Split all the raml parsing logic into its own raml2obj project

0.20.0 - June 4, 2014

  • Fixed html output
  • Added anchors to top level documentation chapters

0.19.0 - May 28, 2014

  • External resources automatically switch between http and https links
  • Attach the config object to the RAML object so it's accessible in your handlebars templates

0.18.0 - May 25, 2014

  • Render the displayName property of resources
  • Render formParameters

0.17.1 - May 14, 2014

  • Bugfix: properly replace all non-word characters in resource with underscores (#20)

0.17.0 - May 14, 2014

  • Support for command line arguments

0.16.0 - May 13, 2014

  • Support loading source from file, string or buffer (#9)

0.15.1 - May 12, 2014

  • Bugfix: hide padlock for unsecured methods when the default is secured (#16)

0.15.0 - May 12, 2014

  • Show padlock for secured methods (#14)
  • Bugfix: handle resource urls with periods (#15)

0.14.0 - May 6, 2014

  • Better schema handling (#12)

0.13.0 - April 24, 2014

  • Added syntax highlighting (#8)

0.12.0 - April 14, 2014

  • Added UTF-8 meta tag (#7)

0.11.0 - April 9, 2014

  • Render the description of query params with Markdown

0.10.0 - April 8, 2014

  • New parseWithConfig method allowing you to override the templates (#5)

0.9.0 - April 8, 2014

  • Allow raml2html to be used from another module

0.8.2 - April 7, 2014

  • Showing all uri parameters, also those from parents

0.8.1 - April 7, 2014

  • Code cleanup, added allUriParameters property to every resource

0.8.0 - April 5, 2014

  • Improved rendering of query params: show required, enum and example

0.7.0 - March 28, 2014

  • Render resource descriptions
  • Render all descriptions as Markdown

0.6.0 - March 27, 2014

  • Render the top level documentation as Markdown

0.5.0 - March 27, 2014

  • Added navigation sidebar

0.4.0 - March 7, 2014

  • Showing request and response per method

0.3.0 - March 6, 2014

  • Cleaner color scheme

0.2.0 - March 5, 2014

  • Improved HTML output

0.1.0 - March 5, 2014

  • Initial release