All Versions
32
Latest Version
Avg Release Cycle
166 days
Latest Release
925 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.0.0 Changes
September 06, 2022- โก๏ธ jsdoctypeparser finally updated to latest version
-
v0.9.1 Changes
April 26, 2022- ๐ Dependency bumps for commander and markdown-it to address security vulnerabilities
-
v0.9.0 Changes
August 13, 2016- Markdown is now generated using the
markdown-it
package, which conforms to Commonmark standards. Note, this may be a breaking change, as markdown output will change. - ๐ Fix: Dox now recognizes ES6 template strings as strings and does not attempt to parse their contents.
- Deps: added [email protected]
- Deps: removed marked
- DevDeps: [email protected]
- DevDeps: [email protected]
- Markdown is now generated using the
-
v0.8.1 Changes
March 29, 2016- ๐ Fix: Dox will no longer falsely enter or exit string blocks when encountering an escaped quote or double-quote
- Deps: [email protected]
- Deps: [email protected]
-
v0.8.0 Changes
May 27, 2015- ๐ Fix: Tags with whitespace between the tag start and the previous line ending are now parsed correctly.
- Deps: [email protected]
- ๐ Deps: [email protected]
- Better compatibility for type declarations, but may result in changes to output with invalid types.
-
v0.7.1 Changes
April 03, 2015- ๐ Context parsing has been re-factored into an array of functions that are iterated over until a match is found. This array is exposed as
dox.contextPatternMatchers
, allowing for extension with new contexts without needing to edit the dox source. - ๐ Fix: ES6 classes extended from sub-properties (such as Backbone.View) are now properly matched
- ๐ Context parsing has been re-factored into an array of functions that are iterated over until a match is found. This array is exposed as
-
v0.7.0 Changes
March 24, 2015- โ Add context parsing for some ES6 syntax:
- classes
- class constructors
- class methods
- assignments via
let
orconst
- โ Add support for @description tag
- โ Add context match for returned closure
- โ Add: Tags without descriptions now have an
html
property containing a markdown parse of the tag's contents - ๐ Fix: more agnostic to code style when parsing contexts (eg, no longer ignores functions without spaces between function name and parenthesis)
- ๐ Fix: No longer incorrectly tries to parse strings inside comments, causing large chunks of a file to be ignored.
- ๐ Fix: No longer parses double slash in a string literal as being a comment start.
- Deps:
[email protected]
- โ Add context parsing for some ES6 syntax:
-
v0.6.1 Changes
November 27, 2014- ๐ท Tag descriptions now contain markdown and obey raw option
-
v0.6.0 Changes
November 27, 2014- โ Add complex jsdoc annotations
- โ Add support for more tags
- โ Add typesDescription field
- ๐ Fix "skipPrefixes incorrectly assumes option.raw=false"
- ๐ Fix "White spaces in the tag type string break the parsing of tags"
-
v0.5.3 Changes
October 06, 2014- Add
--skipSingleStar
option to ignore/* ... */
comments - ๐ Merge #106: make the other context regex like the general method one
- Add