Skip to content

Commit 0c4b2b1

Browse files
committed
1.1.15
2 parents 3cd09ba + bebbb33 commit 0c4b2b1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+19244
-3970
lines changed

.github/stale.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ daysUntilStale: 60
33
# Number of days of inactivity before a stale issue is closed
44
daysUntilClose: 7
55
# Issues with these labels will never be considered stale
6-
# exemptLabels:
6+
exemptLabels:
7+
- Status: Accepted
78
# Label to use when marking an issue as stale
89
staleLabel: wontfix
910
# Comment to post when marking an issue as stale. Set to `false` to disable

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [10.x, 12.x, 14.x]
17+
node-version: [10.x, 12.x, 14.x, 16.x]
1818
os: [ubuntu-latest, windows-latest]
1919

2020
steps:
@@ -50,18 +50,18 @@ jobs:
5050
run: npm run test-refactoring
5151

5252
- name: Merge lcov
53-
if: ${{ matrix.node-version == '10.x' && matrix.os == 'ubuntu-latest' }}
53+
if: ${{ matrix.node-version == '12.x' && matrix.os == 'ubuntu-latest' }}
5454
run: npm run merge-lcov
5555

5656
- name: Sonarcloud
57-
if: ${{ matrix.node-version == '10.x' && matrix.os == 'ubuntu-latest' }}
57+
if: ${{ matrix.node-version == '12.x' && matrix.os == 'ubuntu-latest' }}
5858
uses: sonarsource/sonarcloud-github-action@master
5959
env:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6161
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
6262

6363
- name: Angular expo test
64-
if: ${{ matrix.node-version == '12.x' && matrix.os == 'ubuntu-latest' }}
64+
if: ${{ matrix.node-version == '14.x' && matrix.os == 'ubuntu-latest' }}
6565
run: npm run angularexpo
6666

6767
e2e:
@@ -72,7 +72,7 @@ jobs:
7272
strategy:
7373
fail-fast: false
7474
matrix:
75-
node-version: [12.x]
75+
node-version: [14.x]
7676
os: [ubuntu-latest]
7777

7878
steps:

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
<a name="1.1.15"></a>
2+
3+
## [1.1.15](https://github.com/compodoc/compodoc/compare/1.1.14...1.1.15) (2021-09_17)
4+
5+
### Merged
6+
7+
- fix(app): fixes a bug in CORS that only allows specific content types, Fi… [#1120](https://github.com/compodoc/compodoc/pull/1120)
8+
- fix(i18n): fix misspeling in pt-BR translation [#1107](https://github.com/compodoc/compodoc/pull/1107)
9+
- fix(app): show custom logo even when in dark mode [#1103](https://github.com/compodoc/compodoc/pull/1103)
10+
11+
### Bug fixes
12+
13+
- fix(app): @link in @see JSDoc tag ([ba13a85](https://github.com/compodoc/compodoc/commit/ba13a85)), closes [#1104](https://github.com/compodoc/compodoc/issues/1104)
14+
- fix(app): component template import parsing ([b31604c](https://github.com/compodoc/compodoc/commit/b31604c)), closes [#1121](https://github.com/compodoc/compodoc/issues/1121)
15+
- fix(app): Fixes a bug in CORS that only allows specific content types, Fixes #1109 ([71ab9d3](https://github.com/compodoc/compodoc/commit/71ab9d3)), closes [#1109](https://github.com/compodoc/compodoc/issues/1109)
16+
- fix(app): last sentences, exporting html with locale option ([85d183e](https://github.com/compodoc/compodoc/commit/85d183e)), closes [#365](https://github.com/compodoc/compodoc/issues/365)
17+
- fix(app): use normalized paths in unit test coverage ([43bbc3b](https://github.com/compodoc/compodoc/commit/43bbc3b)), closes [#664](https://github.com/compodoc/compodoc/issues/664)
18+
- fix(app): JSDoc @param tag with @link ([55eb258](https://github.com/compodoc/compodoc/commit/55eb258)), closes [#294](https://github.com/compodoc/compodoc/issues/294)
19+
- fix(app): ES6 destructuring assignment support ([254e8cd](https://github.com/compodoc/compodoc/commit/254e8cd)), closes [#502](https://github.com/compodoc/compodoc/issues/502)
20+
- fix(app): webcomponent menu transpilation with Babel and missing filename config for @babel/preset-env ([10f73a5](https://github.com/compodoc/compodoc/commit/10f73a5)), closes [#1100](https://github.com/compodoc/compodoc/issues/1100)
21+
- fix(app): lazy routing with async - await ([150d97a](https://github.com/compodoc/compodoc/commit/150d97a)), closes [#1042](https://github.com/compodoc/compodoc/issues/1042)
22+
123
<a name="1.1.14"></a>
224

325
## [1.1.14](https://github.com/compodoc/compodoc/compare/1.1.13...1.1.14) (2021-07-14)

DONTUPDATE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
**Don't update the following dependencies**
2+
3+
os-name - version 5.0.0 use ESM modules

TODOS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Dependencies
44

55
- pdfjs : move to modern version if Node.js > 14 | Optional chaining support
6+
- remove lodash, imported in 17 files : forEach, sortBy, cloneDeep, find, findIndex, map, filter, clone, includes, indexOf, groupBy, slice, flatMap, concat, uniq,
67

78
## TypeScript errors to fix
89

0 commit comments

Comments
 (0)