Skip to content

Commit 3f5c462

Browse files
committed
3.6.6
1 parent 95e3192 commit 3f5c462

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGES.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
This file describes notable changes in each version of JSDoc 3.
44

55

6+
## 3.6.6 (September 2020)
7+
8+
Fixes an issue that could cause members of an interface to be tracked incorrectly if the interface
9+
was both defined as an ES2015 class and assigned to a variable. For example:
10+
11+
```js
12+
/** @interface */
13+
foo.Bar = class {
14+
constructor() {
15+
/** This member was missing from the generated docs. */
16+
this.baz = null;
17+
}
18+
}
19+
```
20+
21+
622
## 3.6.5 (July 2020)
723

824
Prevents circular references in doclets when two function parameters use the same type expression,

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsdoc",
3-
"version": "3.6.5",
4-
"revision": "1595462156621",
3+
"version": "3.6.6",
4+
"revision": "1600568714547",
55
"description": "An API documentation generator for JavaScript.",
66
"keywords": [
77
"documentation",

0 commit comments

Comments
 (0)