You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,26 @@
3
3
This 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
4
5
5
6
+
## 3.4.1 (September 2016)
7
+
8
+
### Enhancements
9
+
+ When installing JSDoc from NPM, all dependencies are now pulled from NPM. (#961)
10
+
+ The configuration setting `tags.allowUnknownTags` may now contain an array of tag names that should be allowed. (#1159)
11
+
12
+
### Bug fixes
13
+
+ When an ES2015 module's default export is a class, JSDoc now documents the class correctly. (#1113, #1120)
14
+
+ JSDoc no longer crashes when an ES2015 module exports an anonymous class. (#1113)
15
+
+ JSDoc no longer crashes when the experimental object spread operator is used. (#1141)
16
+
+ In ES2015 methods, JSDoc now autodetects whether a parameter is a default or repeatable parameter. (#1144)
17
+
+ The Markdown plugin now works correctly with inline tags that contain special characters, such as `{@link chat."#channel"}`. (#1035)
18
+
+ 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)
19
+
20
+
### Templates
21
+
+ The default template now uses appropriate styles for displaying tables. (#1064)
22
+
+ The default template's CSS file no longer uses the same style for both `<h2>` and `<h3>` elements. (#1108)
23
+
+ 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)
0 commit comments