UNPKG

34.4 kBMarkdownView Raw
1# JSDoc 3 change history
2
3This file describes notable changes in each version of JSDoc 3. To download a specific version of JSDoc 3, see [GitHub's tags page](https://github.com/jsdoc3/jsdoc/tags).
4
5
6## 3.4.3 (November 2016)
7
8Updated JSDoc's `LICENSE.md` file.
9
10
11## 3.4.2 (October 2016)
12
13+ Classes exported from an ES2015 module are now documented correctly. (#1137)
14+ Fixed an issue that prevented plugins and templates from being loaded correctly. (#1259)
15+ Fixed a crash when using the experimental object spread operator in assignments. (#1258)
16
17
18## 3.4.1 (September 2016)
19
20### Enhancements
21+ When installing JSDoc from NPM, all dependencies are now pulled from NPM. (#961)
22+ The configuration setting `tags.allowUnknownTags` may now contain an array of tag names that should be allowed. (#1159)
23
24### Bug fixes
25+ When an ES2015 module's default export is a class, JSDoc now documents the class correctly. (#1113, #1120)
26+ JSDoc no longer crashes when an ES2015 module exports an anonymous class. (#1113)
27+ JSDoc no longer crashes when the experimental object spread operator is used. (#1141)
28+ In ES2015 methods, JSDoc now autodetects whether a parameter is a default or repeatable parameter. (#1144)
29+ The Markdown plugin now works correctly with inline tags that contain special characters, such as `{@link chat."#channel"}`. (#1035)
30+ When JSDoc is run in a directory that has a `plugins/` or `templates/` directory, JSDoc can now discover plugins and templates in other directories. (#1081)
31
32### Templates
33+ The default template now uses appropriate styles for displaying tables. (#1064)
34+ The default template's CSS file no longer uses the same style for both `<h2>` and `<h3>` elements. (#1108)
35+ JSDoc now includes a `silent` template that generates no output. This template makes it easier to use JSDoc as a linter to check for syntax errors and unrecognized tags in documentation comments. (#1160)
36
37
38## 3.4.0 (November 2015)
39
40### Major changes
41+ JSDoc is now compatible with Node.js 4.0.0 and later.
42+ JSDoc no longer runs on Mozilla Rhino. Use Node.js to run JSDoc.
43+ JSDoc can now parse ECMAScript 2015 code, including code that uses native classes and modules. (#555)
44+ JSDoc can now parse [JSX](https://facebook.github.io/jsx/) files. (#1001)
45+ JSDoc's `app` and `env` global variables are now deprecated. Avoid using the `app` global. Use the `jsdoc/env` module instead of the `env` global. (#812)
46
47### Enhancements
48+ `const` declarations are now automatically treated as constants. (#555)
49+ Templates may now run asynchronously. To create an asynchronous template, simply return a promise from your template's `publish` method. (#953)
50
51### Bug fixes
52+ Symbols now get the correct longname when they are defined as properties of a prototype and include special characters, such as `#` and `.` (for example, `Foo.prototype['this#is#bar']`). (#888)
53+ Instance members that are defined as computed properties of `this` (for example, `this['bar']`) now get the correct longname. (#890)
54+ When an instance member (for example, `this.bar`) is documented within a member of a prototype (for example, `Foo.prototype.setBar`), the instance member's longname is now set correctly. (#1011)
55+ The `@borrows` tag now works with symbol names that contain whitespace. (#818)
56
57### Plugins
58+ For the Markdown plugin, you can now autogenerate a heading ID for each heading by setting the configuration property `markdown.idInHeadings` to `true`. (#1032)
59
60### Template improvements
61+ In the default template, you can now show the full namepath of each object in the navigation column by setting the configuration property `templates.default.useLongnameInNav` to `true`. (#986)
62+ In the Haruki template, falsy default values now appear in the output. (#1063)
63
64
65## 3.3.3 (September 2015)
66
67+ Symbols named `prototype` are now handled correctly. (#891)
68+ Fixed an issue that could cause JSDoc to go into an infinite loop when a module is documented twice. (#975)
69+ Fixed an issue that could cause parsing errors on valid regular expressions. (#1053)
70
71
72## 3.3.2 (June 2015)
73
74JSDoc no longer crashes when parsing a large number of files, or a single object that has a large number of properties. (#976)
75
76
77## 3.3.1 (June 2015)
78
79+ Fixed a crash in the Haruki template. (#1005)
80+ When a type expression includes a record type with numeric keys (for example, `{0: string}`), the type expression is now parsed correctly. (#1016)
81
82
83## 3.3.0 (May 2015)
84
85### Major changes
86+ You can now run JSDoc on Node.js. (#93)
87+ You can now use the `@interface` and `@implements` tags to document interfaces and their implementations. (#720, #828)
88+ Closure Compiler's `@inheritDoc` and `@override` tags are now supported. (#53)
89+ If the JSDoc comment for a symbol includes the `@mixes` tag, all of the mixins now appear in the symbol's documentation. (#378)
90+ JSDoc can now log information to the console as it runs (for example, the name of each file that JSDoc parses). To log this information, run JSDoc with the `--verbose` flag. (#416)
91+ You can now use any file as the package or README file for your documentation. Use the `-P/--package/` and `-R/--readme` flags to specify the package and README file. (#708)
92+ The default template's typography and color scheme have been significantly improved. (#550, #780, #843)
93
94### Enhancements
95+ You can now use the `--pedantic` flag to treat all errors as fatal errors, and to treat warnings as errors. This flag replaces the `--lenient` flag, which had roughly the opposite meaning and is no longer available. (#416)
96+ You can now use the `-a/--access` flag to control whether private, protected, and public symbols appear in the documentation. (#860, #861)
97+ You can now use the `--debug` flag to log detailed debugging information to the console. This information can help you diagnose bugs in JSDoc itself. (#416)
98+ JSDoc's configuration file can now contain JavaScript comments. (#660)
99+ You can now include source files from a directory, but exclude one of its subdirectories, by adding the subdirectory to the `source.exclude` option in the configuration file. (#484)
100+ The `source.exclude` option now works correctly when JSDoc is run with the `-r/--recurse` flag. (#616)
101+ When JSDoc is run with the `-r/--recurse` flag, it now scans for tutorials recursively. (#712)
102+ JSDoc's `-X/--explain` option now runs much more quickly. (#633)
103+ If all of the text for an `@example` tag is indented, JSDoc now removes the extra indentation. (#540)
104+ The default value for a parameter or property can now include brackets (for example, `@param {Array.<string>} [foo=['bar']]`). (#640)
105+ You can now provide a default value for parameters and properties that are not optional (for example, `@property {string} foo='bar'`). (#791)
106+ If the `@type` tag includes a description (for example, `@type {string} some text`), JSDoc now parses the type expression correctly and discards the description. (#615)
107+ You can now add JSDoc comments to function parameters. (#473)
108+ For Closure Compiler projects, you can now enable a Closure Compiler-specific tag dictionary that more closely matches Closure Compiler's semantics. To enable Closure Compiler semantics, set the configuration file's `tags.dictionaries` option to `['closure']`. This option can contain the values `jsdoc`, `closure`, or both. If multiple dictionaries are enabled, and a tag is defined in more than one dictionary, JSDoc uses the definition from the first dictionary that contains the tag. (#729, #730, #731, #732)
109+ If one symbol overrides another, JSDoc now adds an `overrides` property to the doclet that is overriding another. The `overrides` property contains the longname of the overridden symbol. (#792)
110+ When a JSDoc tag contains a type expression, the doclet's `type` object now includes a hidden `parsedType` property. The `parsedType` property contains a syntax tree that represents the type expression. The syntax tree is generated by [Catharsis](https://github.com/hegemonic/catharsis), and its format may change in the future. (#576)
111+ JSDoc now allows output filenames to contain non-ASCII characters. In addition, links to output files are now URL-encoded when necessary. (#677)
112+ JSDoc now ensures that output filenames do not have a leading underscore. (#758)
113+ JSDoc now tries to ensure that `id` attributes in output files are unique within that file. (#539)
114+ JSDoc now has an up-to-date JSON Schema file for parse results. The schema file is available in `lib/jsdoc/schema.js`. (#327)
115+ JSDoc now extracts more information from package files. (#710)
116+ JSDoc now displays usage information if you run JSDoc without any input files, or with an unrecognized command-line option. (#609, #840)
117
118### Bug fixes
119+ When the `allowUnknownTags` option is set to `false`, JSDoc no longer logs warnings about the presence of `@also` and `@scope` tags. (#574)
120+ Fixed several errors when parsing type expressions. (#619, #644, #652, #705, #767)
121+ Properties added to the `module.exports` object can now be documented. (#500)
122+ When a symbol's name starts with the same characters as its parent namespace (such as `Vector` in `V.Vector`), JSDoc now assigns the correct longname to the symbol. (#608)
123+ If a child class inherits from multiple parent classes, and the parent classes have instance members with the same name, the child class no longer displays the documentation from both parent classes. (#613)
124+ If a source file contains an object literal, and one of the property names is a whitespace character or a character that must be escaped in a regular expression, JSDoc now parses the file successfully. (#549, #775)
125+ Virtual comments now work correctly for overloaded functions. (#727)
126+ When a virtual comment appears within a module, JSDoc now assigns the correct values to the virtual comment doclet's `memberof`, `longname`, and `scope` properties. (#631)
127+ JSDoc now sets the `scope` property to `global` for all global doclets. (#684)
128+ Module doclets no longer have a `scope` property. (#782)
129+ In Markdown tutorials, JSDoc no longer unescapes HTML entities. (#743)
130+ If a longname includes a variation (for example, `Foo#bar(variation)`), the link text is now preserved when generating HTML links. (#857)
131+ When a single JSDoc comment includes `@class`, `@classdesc`, and `@constructor` tags, JSDoc no longer ignores the value of the `@classdesc` tag. (#806)
132+ For tags where the name and type are both optional (`@constant`, `@external`, `@member`, `@module`, `@namespace`, and `@param`), JSDoc now parses the tag correctly when it includes a type but not a name. (#351, #535)
133+ The `@default` tag now works correctly when used with an array literal. (#604)
134+ The `@enum` tag now works correctly when the enumeration is part of a chain of assignments (for example, `var FOO = exports.FOO = {/* enumerated values */}`). (#702)
135+ The `@exports` and `@module` tags now work correctly when their value includes a `module:` namespace (for example, `@exports module:foo`). (#786)
136+ The `@memberof` tag now works correctly when it refers to a module that is defined in a separate file. (#880)
137+ The `@variation` tag now works correctly when its value is enclosed in parentheses (for example, `@variation (foo)`). (#850)
138
139### Plugins
140+ Tag definitions can now have a `mustNotHaveDescription` property. When this property is set to `true`, JSDoc will warn the user if the tag text includes a description (such as `The description` in `@param {string} foo - The description`). (#615)
141+ Tag definitions can now call the method `dictionary.normalize`, which is a synonym for `dictionary.normalise`. (#884)
142+ The Markdown plugin no longer prevents inline `{@link}` tags from working. (#518)
143+ The Markdown plugin now converts `@author` and `@throws` tag values to HTML by default. (#736, #878)
144+ JSDoc now includes a `summarize` plugin that automatically generates summaries based on the description. (#485)
145+ JSDoc now includes an `underscore` plugin that finds symbols whose names begin with an underscore and automatically tags them as `@private`. (#471)
146+ Plugins can now replace the `doclet` property of `newDoclet` events. (#584)
147
148### Template improvements
149+ You can now override the default template's main layout file, `layout.tmpl`, by setting the `templates.default.layoutFile` option in JSDoc's configuration file. The property can contain a relative or absolute path to the replacement for `layout.tmpl`. Relative paths are resolved against the path to the configuration file; the current working directory; and the JSDoc directory, in that order. (#480)
150+ When the `templates.default.outputSourceFiles` option is set to `false`, the documentation no longer shows the path to each source file. (#571)
151+ You can now use the property `templates.default.staticFiles.include` to list files that will be copied to the output directory. For backwards compatibility, the property `templates.default.staticFiles.paths` is also supported but is deprecated. (#785)
152+ The property `templates.default.staticFiles.include` now works correctly when an absolute path is specified. (#939)
153+ The `templates.default.staticFiles` options now work correctly on Windows. (#785)
154+ In output files, you can now prevent the date from appearing in the footer by setting the property `templates.default.includeDate` to `false`. (#910)
155+ Output files no longer show the default value for members of an enumeration. (#689)
156+ In certain types of AMD modules, the module-overview section is no longer duplicated. (#853)
157+ If a constructor is assigned to `module.exports`, the value of the `@classdesc` tag now appears in the documentation. (#740)
158+ If a constructor is assigned to `module.exports`, and the constructor inherits from another class, the parent class is now listed in the documentation. (#594)
159+ Text within an `@example` tag, including HTML tags, is now properly escaped. (#511)
160+ If a member has a `@fires` tag, the tag information now appears in the documentation. (#568)
161+ If a symbol has members that use the `@mixin` tag, the mixins are now listed in the documentation. (#379, #602)
162+ When multiple `@param` tags are used to document properties of array values (for example, `@param {Object[]} foo` and `@param {string} foo[].bar`), the properties are now grouped into the appropriate row of the parameters table. (#870)
163+ If a member has a `@requires` tag, the tag information now appears in the documentation. (#563)
164+ Type expressions are now presented more clearly. (#618)
165+ Pretty-printed source files now include line numbers. (#532)
166+ When you run JSDoc with a single input file, the full path to the file no longer appears in the documentation. (#553)
167+ When an overloaded function is assigned to `module.exports`, the documentation now displays all of the signatures for the overloaded function. (#727)
168+ Resolved several issues that caused the default template to generate invalid HTML. (#843)
169
170
171## 3.2.2 (November 2013)
172
173### Bug fixes
174+ Addressed a regression in JSDoc 3.2.1 that could prevent a function declaration from shadowing a declaration with the same name in an outer scope. (#513)
175+ If a child class overrides a method in a parent class without documenting the overridden method, the method's documentation is now copied from the parent class. (#503)
176+ You can now use inline HTML tags in Markdown-formatted text. In addition, JSDoc now uses only the [marked Markdown parser](https://github.com/chjj/marked); the markdown-js parser has been removed. (#510)
177+ Type expressions can now include a much broader range of repeatable types. In addition, you can now use Closure Compiler's nullable and non-nullable modifiers with repeatable types. For example, the type expression `...!string` (a repeatable, non-nullable string) is now parsed correctly. (#502)
178+ If a function accepts a parameter named `prototype`, the parameter is no longer renamed during parsing. (#505)
179+ If the list of input files includes relative paths, the paths are now resolved relative to the user's working directory. (a3d33842)
180
181
182## 3.2.1 (October 2013)
183
184### Enhancements
185+ JSDoc's parser now fires a `processingComplete` event after JSDoc has completed all post-processing of the parse results. This event has a `doclets` property containing an array of doclets. (#421)
186+ When JSDoc's parser fires a `parseComplete` event, the event now includes a `doclets` property containing an array of doclets. (#431)
187+ You can now use relative paths in the JSDoc configuration file's `source.exclude` option. Relative paths will be resolved relative to the current working directory. (#405)
188+ If a symbol uses the `@default` tag, and its default value is an object literal, this value is now stored as a string, and the doclet will have a `defaultvaluetype` property containing the string `object`. This change enables templates to show the default value with appropriate syntax highlighting. (#419)
189+ Inline `{@link}` tags can now contain newlines. (#441)
190
191### Bug fixes
192+ Inherited symbols now indicate that they were inherited from the ancestor that defined the symbol, rather than the direct parent. (#422)
193+ If the first line of a JavaScript file contains a hashbang (for example, `#!/usr/bin/env node`), the hashbang is now ignored when the file is parsed. (#499)
194+ Resolved a crash when a JavaScript file contains a [JavaScript 1.8](https://developer.mozilla.org/en-US/docs/Web/JavaScript/New_in_JavaScript/1.8) keyword, such as `let`. (#477)
195+ The type expression `function[]` is now parsed correctly. (#493)
196+ If a module is tagged incorrectly, the module's output file now has a valid filename. (#440, #458)
197+ For tags that accept names, such as `@module` and `@param`, if a hyphen is used to separate the name and description, the hyphen must appear on the same line as the name. This change prevents a Markdown bullet on the followng line from being interpreted as a separator. (#459)
198+ When lenient mode is enabled, a `@param` tag with an invalid type expression no longer causes a crash. (#448)
199+ The `@requires` tag can now contain an inline tag in its tag text. (#486)
200+ The `@returns` tag can now contain inline tags even if a type is not specified. (#444)
201+ When lenient mode is enabled, a `@returns` tag with no value no longer causes a crash. (#451)
202+ The `@type` tag now works correctly with type expressions that span multiple lines. (#427)
203+ If a string contains inline `{@link}` tags preceded by bracketed link text (for example, `[test]{@link Test#test}`), HTML links are now generated correctly even if the string contains other bracketed text. (#470)
204+ On POSIX systems, if you run JSDoc using a symlink to the startup script, JSDoc now works correctly. (#492)
205
206### Default template
207+ Pretty-printed source files are now generated by default. To disable this feature, add the property `templates.default.outputSourceFiles: false` to your `conf.json` file. (#454)
208+ Links to a specific line in a source file now work correctly. (#475)
209+ Pretty-printed source files are now generated using the encoding specified in the `-e/--encoding` option. (#496)
210+ If a `@default` tag is added to a symbol whose default value is an object, the value is now displayed in the output file. (#419)
211+ Output files now identify symbols as "abstract" rather than "virtual." (#432)
212
213
214## 3.2.0 (May 2013)
215
216### Major changes
217+ JSDoc can now parse any valid [Google Closure Compiler type expression](https://developers.google.com/closure/compiler/docs/js-for-compiler#types). **Note**: As a result of this change, JSDoc quits if a file contains an invalid type expression. To prevent JSDoc from quitting, run JSDoc with the `--lenient` (`-l`) command-line option. (Multiple issues)
218+ You can now use the new `@listens` tag to indicate that a symbol listens for an event. (#273)
219
220### Enhancements
221+ The parser now fires a `parseBegin` event before it starts parsing files, as well as a `parseComplete` event after all files have been parsed. Plugins can define event handlers for these events, and `parseBegin` handlers can modify the list of files to parse. (#299)
222+ Event handlers for `jsdocCommentFound` events can now modify the JSDoc comment. (#228)
223+ You can now exclude tags from Markdown processing using the new option `markdown.excludeTags` in the configuration file. (#337)
224+ You can now use the [marked](https://github.com/chjj/marked) Markdown parser by setting the configuration property `markdown.parser` to `marked`. In addition, if `markdown.parser` is set to `gfm`, JSDoc will now use the "marked" parser instead. (#385)
225+ The `@typedef` tag no longer requires a name when used with a Closure Compiler-style type definition. For example, the following type definition will automatically get the name `Foo.Bar`:
226
227 ```javascript
228 /** @typedef {string} */
229 Foo.Bar;
230 ```
231
232 (#391)
233+ You can now use an inline `{@type}` tag in a parameter's description. If this tag is present, JSDoc will assume that the parameter uses the type specified in the inline `{@type}` tag. For example, the following `@param` tag would cause `myParam`'s type to be documented as `Foo`:
234
235 ```
236 @param {(boolean|string)} myParam - My special parameter. {@type Foo}
237 ```
238
239 (#152)
240+ The `console.log` function now behaves the same way as on Node.js. In addition, the functions `console.info`, `console.error`, `console.warn`, and `console.trace` have been implemented. (#298)
241+ You can now use npm to install JSDoc globally by running `npm install -g`. **Note**: JSDoc will still run under Mozilla Rhino, not Node.js. (#374)
242+ The `jsVersion` configuration property has been removed. (#390)
243
244### Bug fixes
245+ JSDoc now quits if the configuration file cannot be loaded. (#407)
246+ JSDoc's `--explain` (`-X`) option now runs much more quickly, and it outputs valid JSON to the console. (#298)
247+ JSDoc's `--lenient` (`-l`) option now prints warnings on STDERR rather than STDOUT. (#298)
248+ The parser now assigns the correct scope to object properties whose names include single quotes. (#386)
249+ The parser now recognizes CommonJS modules that export a single function rather than an object. (#384)
250+ The inline `{@link}` tag now works correctly when `@link` is followed by a tab. (#359)
251+ On POSIX systems, quoted command-line arguments are no longer split on spaces. (#397)
252
253### Plugins
254+ The new `overloadHelper` plugin makes it easier to link to overloaded methods. (#179)
255+ The `markdown` plugin now converts Markdown links in the `@see` tag. (#297)
256
257### Default template enhancements
258+ You can now use the configuration property `templates.default.staticFiles` to copy additional static files to the output directory. (#393)
259+ All output files now use human-readable filenames. (#339)
260+ The documentation for events now lists the symbols that listen to that event. (#273)
261+ Links to source files now allow you to jump to the line where a symbol is defined. (#316)
262+ The output files now link to individual types within a Closure Compiler type expression. (Multiple issues)
263+ CommonJS modules that export a single function, rather than an object, are now documented more clearly. (#384)
264+ Functions that can throw multiple types of errors are now documented more clearly. (#389)
265+ If a `@property` tag does not identify the property's name, the template no longer throws an error. (#373)
266+ The type of each `@typedef` is now displayed. (#391)
267+ If a `@see` tag contains a URL (for example, `@see http://example.com` or `@see <http://example.com>`), the tag text is now converted to a link. (#371)
268+ Repeatable parameters are now identified. (#381)
269+ The "Classes" header is no longer repeated in the navigation bar. (#361)
270+ When the only documented symbols in global scope are type definitions, you can now click the "Global" header to view their documentation. (#261)
271
272
273## 3.1.1 (February 2013)
274
275+ Resolved a crash when no input files contain JSDoc comments. (#329)
276+ Resolved a crash when JSDoc cannot identify the common prefix of several paths. (#330)
277+ Resolved a crash when the full path to JSDoc contained at least one space. (#347)
278+ Files named `README.md` or `package.json` will now be processed when they are specified on the command line. (#350)
279+ You can now use `@emits` as a synonym for `@fires`. (#324)
280+ The module `jsdoc/util/templateHelper` now allows you to specify the CSS class for links that are generated by the following methods: (#331)
281 + `getAncestorLinks`
282 + `getSignatureReturns`
283 + `getSignatureTypes`
284 + `linkto`
285
286
287## 3.1.0 (January 2013)
288
289### Major changes
290+ You can now use the new `@callback` tag to provide information about a callback function's signature. To document a callback function, create a standalone JSDoc comment, as shown in the following example:
291
292 ```javascript
293 /**
294 * @class
295 */
296 function MyClass() {}
297
298 /**
299 * Send a request.
300 *
301 * @param {MyClass~responseCb} cb - Called after a response is received.
302 */
303 MyClass.prototype.sendRequest = function(cb) {
304 // code
305 };
306
307 /**
308 * Callback for sending a request.
309 *
310 * @callback MyClass~responseCb
311 * @param {?string} error - Information about the error.
312 * @param {?string} response - Body of the response.
313 */
314 ```
315+ The inline link tag, `{@link}`, has been improved:
316 + You can now use a space as the delimiter between the link target and link text.
317 + In your `conf.json` file, you can now enable the option `templates.cleverLinks` to display code links in a monospace font and URL links in plain text. You can also enable the option `templates.monospaceLinks` to display all links in a monospace font. **Note**: JSDoc templates must be updated to respect these options.
318 + You can now use the new inline tags `{@linkplain}`, which forces a plain-text link, and `{@linkcode}`, which forces a monospace link. These tags always override the settings in your `conf.json` file. (#250)
319+ JSDoc now provides a `-l/--lenient` option that tells JSDoc to continue running if it encounters a non-fatal error. (Multiple issues)
320+ A template's `publish.js` file should now assign its `publish` function to `exports.publish`, rather than defining a global `publish` function. The global `publish` function is deprecated and may not be supported in future versions. JSDoc's built-in templates reflect this change. (#166)
321+ The template helper (`templateHelper.js`) exports a variety of new functions for finding information within a parse tree. These functions were previously contained within the default template. (#186)
322+ Updated the `fs` and `path` modules to make their behavior more consistent with Node.js. In addition, created extended versions of these modules with additional functionality. (Multiple commits)
323+ Updated or replaced numerous third-party modules. (Multiple commits)
324+ Reorganized the JSDoc codebase in preparation for future enhancements. (Multiple commits)
325+ JSDoc now embeds a version of Mozilla Rhino that recognizes Node.js packages, including `package.json` files. (Multiple commits)
326+ Node.js' `npm` utility can now install JSDoc from its GitHub repository. **Note**: JSDoc is not currently compatible with Node.js. However, this change allows JSDoc to be installed as a dependency of a Node.js project. In this version, global installation with `npm` is not supported. (Multiple commits)
327
328### Enhancements
329+ If a `README.md` file is passed to JSDoc, its contents will be included on the `index.html` page of the generated documentation. (#128)
330+ The `@augments` tag can now refer to an undocumented member, such as `window.XMLHTTPRequest`. (#160)
331+ The `@extends` tag can now refer to an undocumented member, such as `window.XMLHttpRequest`. In addition, you can now use `@host` as a synonym for `@extends`. (#145)
332+ The `@lends` tag is now supported in multiline JSDoc comments. (#163)
333+ On Windows, `jsdoc.cmd` now provides the same options as the `jsdoc` shell script. (#127)
334+ JSDoc now provides `setTimeout()`, `clearTimeout()`, `setInterval()`, and `clearInterval()` functions. (Multiple commits)
335+ JSDoc no longer provides a global `exit()` function. Use `process.exit()` instead. (1228a8f7)
336+ JSDoc now includes additional shims for Node.js' built-in modules. **Note**: Many of these shims implement only the functions that JSDoc uses, and they may not be consistent with Node.js' behavior in edge cases. (Multiple commits)
337+ JSDoc now provides a `-v/--version` option to display information about the current version. (#303)
338+ When running tests, you can now use the `--nocolor` option to disable colored output. On Windows, colored output is always disabled. (e17601fe, 8bc33541)
339
340### Bug fixes
341+ When using the `@event` tag to define an event within a class or namespace, the event's longname is now set correctly regardless of tag order. (#280)
342+ The `@property` tag no longer results in malformed parse trees. (20f87094)
343+ The `jsdoc` and `jsdoc.cmd` scripts now work correctly with paths that include spaces. (#127, #130)
344+ The `jsdoc` script now works correctly on Cygwin and MinGW, and with the `dash` shell. (#182, #184, #187)
345+ The `-d/--destination` option is no longer treated as a path relative to the JSDoc directory. Instead, it can contain an absolute path, or a path relative to the current working directory. (f5e3f0f3)
346+ JSDoc now provides default options for the values in `conf.json`. (#129)
347+ If the `conf.json` file does not exist, JSDoc no longer tries to create it, which prevents errors if the current user does not have write access to the JSDoc directory. (d2d05fcb)
348+ Doclets for getters and setters are now parsed appropriately. (#150)
349+ Only the first asterisk is removed from each line of a JSDoc comment. (#172)
350+ If a child member overrides an ancestor member, the ancestor member is no longer documented. (#158)
351+ If a member of a namespace has the same name as a namespace, the member is now documented correctly. (#214)
352+ The parse tree now uses a single set of properties to track both JSDoc-style type information and Closure Compiler-style type information. (#118)
353+ If a type has a leading `!`, indicating that it is non-nullable, the leading `!` is now removed from the type name. (#226)
354+ When Markdown formatting is enabled, underscores in inline `{@link}` tags are no longer treated as Markdown formatting characters. (#259)
355+ Markdown links now work correctly when a JavaScript reserved word, such as `constructor`, is used as the link text. (#249)
356+ Markdown files for tutorials are now parsed based on the settings in `conf.json`, rather than using the "evilstreak" Markdown parser in all cases. (#220)
357+ If a folder contains both tutorial source files and `.js` files, JSDoc no longer attempts to parse the `.js` files as JSON files. (#222)
358+ The "evilstreak" Markdown parser now works correctly with files that use Windows-style line endings. (#223)
359+ JSDoc no longer fails unit tests when the `conf.json` file is not present. (#206)
360+ On Windows, JSDoc now passes all unit tests. (Multiple commits)
361
362### Plugins
363+ The new `partial` plugin adds support for a `@partial` tag, which links to an external file that contains JSDoc comments. (#156)
364+ The new `commentsOnly` plugin removes everything in a file except JSDoc-style comments. You can use this plugin to document source files that are not valid JavaScript, including source files for other languages. (#304)
365+ The new `eventDumper` plugin logs information about parser events to the console. (#242)
366+ The new `verbose` plugin logs the name of each input file to the console. (#157)
367
368### Template enhancements
369
370#### Default template
371+ The template output now includes pretty-printed versions of source files. This feature is enabled by default. To disable this feature, add the property `templates.default.outputSourceFiles: false` to your `conf.json` file. (#208)
372+ You can now use the template if it is placed outside of the JSDoc directory. (#198)
373+ The template no longer throws an error when a parameter does not have a name. (#175)
374+ The navigation bar now includes an "Events" section if any events are documented. (#280)
375+ Pages no longer include a "Classes" header when no classes are documented. (eb0186b9)
376+ Member details now include "Inherited From" section when a member is inherited from another member. (#154)
377+ If an `@author` tag contains text in the format "Jane Doe <jdoe@example.com>", the value is now converted to an HTML `mailto:` link. (#326)
378+ Headings for functions now include the function's signature. (#253)
379+ Type information is now displayed for events. (#192)
380+ Functions now link to their return type when appropriate. (#192)
381+ Type definitions that contain functions are now displayed correctly. (#292)
382+ Tutorial output is now generated correctly. (#188)
383+ Output files now use Google Code Prettify with the Tomorrow theme as a syntax highlighter. (#193)
384+ The `index.html` output file is no longer overwritten if a namespace called `index` has been documented. (#244)
385+ The current JSDoc version number is now displayed in the footer. (#321)
386
387#### Haruki template
388+ Members are now contained in arrays rather than objects, allowing overloaded members to be documented. (#153)
389+ A clearer error message is now provided when the output destination is not specified correctly. (#174)
390
391
392## 3.0.1 (June 2012)
393
394### Enhancements
395+ The `conf.json` file may now contain `source.include` and `source.exclude` properties. (#56)
396 + `source.include` specifies files or directories that JSDoc should _always_ check for documentation.
397 + `source.exclude` specifies files or directories that JSDoc should _never_ check for documentation.
398 These settings take precedence over the `source.includePattern` and `source.excludePattern` properties, which contain regular expressions that JSDoc uses to search for source files.
399+ The `-t/--template` option may now specify the absolute path to a template. (#122)
400
401### Bug fixes
402+ JSDoc no longer throws exceptions when a symbol has a special name, such as `hasOwnProperty`. (1ef37251)
403+ The `@alias` tag now works correctly when documenting inner classes as globals. (810dd7f7)
404
405### Template improvements
406+ The default template now sorts classes by name correctly when the classes come from several modules. (4ce17195)
407+ The Haruki template now correctly supports `@example`, `@members`, and `@returns` tags. (6580e176, 59655252, 31c8554d)
408
409
410## 3.0.0 (May 2012)
411
412Initial release.