-
Notifications
You must be signed in to change notification settings - Fork 0
Commit 1955039
authored
chore(deps): Bump typedoc from 0.23.28 to 0.24.1 (#38)
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.23.28 to 0.24.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/TypeStrong/TypeDoc/releases">typedoc's releases</a>.</em></p>
<blockquote>
<h2>v0.24.1</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Improve detection for legacy JSDoc <code>@example</code> tags, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2222">#2222</a>.</li>
<li>The page footer will now appear at the bottom of the page even if the page is short, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2223">#2223</a>.</li>
</ul>
<h2>v0.24.0</h2>
<h3>Breaking Changes</h3>
<ul>
<li><code>@link</code>, <code>@linkcode</code> and <code>@linkplain</code> tags will now be resolved with TypeScript's link resolution by default. The <code>useTsLinkResolution</code> option
can be used to turn this behavior off, but be aware that doing so will mean your links will be resolved differently by editor tooling and TypeDoc.</li>
<li>TypeDoc will no longer automatically load plugins from <code>node_modules</code>. Specify the <code>--plugin</code> option to indicate which modules should be loaded.</li>
<li>The <code>packages</code> entry point strategy will now run TypeDoc in each provided package directory and then merge the results together.
The previous <code>packages</code> strategy has been preserved under <code>legacy-packages</code> and will be removed in 0.25. If the new strategy does not work
for your use case, please open an issue.</li>
<li>Removed <code>--logger</code> option, to disable all logging, set the <code>logLevel</code> option to <code>none</code>.</li>
<li>Dropped support for legacy <code>[[link]]</code>s, removed deprecated <code>Reflection.findReflectionByName</code>.</li>
<li>Added <code>@overload</code> to default ignored tags.</li>
</ul>
<h3>API Breaking Changes</h3>
<ul>
<li>The <code>label</code> property on <code>Reflection</code> has moved to <code>Comment</code>.</li>
<li>The default value of the <code>out</code> option has been changed from <code>""</code> to <code>"./docs"</code>, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2195">#2195</a>.</li>
<li>Renamed <code>DeclarationReflection#version</code> to <code>DeclarationReflection#projectVersion</code> to match property on <code>ProjectReflection</code>.</li>
<li>Removed unused <code>Reflection#originalName</code>.</li>
<li>Removed <code>Reflection#kindString</code>, use <code>ReflectionKind.singularString(reflection.kind)</code> or <code>ReflectionKind.pluralString(reflection.kind)</code> instead.</li>
<li>The <code>named-tuple-member</code> and <code>template-literal</code> type kind have been replaced with <code>namedTupleMember</code> and <code>templateLiteral</code>, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2100">#2100</a>.</li>
<li>Properties related to rendering are no longer stored on <code>Reflection</code>, including <code>url</code>, <code>anchor</code>, <code>hasOwnDocument</code>, and <code>cssClasses</code>.</li>
<li><code>Application.bootstrap</code> will no longer load plugins. If you want to load plugins, use <code>Application.bootstrapWithPlugins</code> instead, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/1635">#1635</a>.</li>
<li>The options passed to <code>Application.bootstrap</code> will now be applied both before <em>and</em> after reading options files, which may cause a change in configuration
if using a custom script to run TypeDoc that includes some options, but other options are set in config files.</li>
<li>Moved <code>sources</code> property previously declared on base <code>Reflection</code> class to <code>DeclarationReflection</code> and <code>SignatureReflection</code>.</li>
<li>Moved <code>relevanceBoost</code> from <code>ContainerReflection</code> to <code>DeclarationReflection</code> since setting it on the parent class has no effect.</li>
<li>Removed internal <code>ReferenceType.getSymbol</code>, reference types no longer reference the <code>ts.Symbol</code> to enable generation from serialized JSON.</li>
<li><code>OptionsReader.priority</code> has been renamed to <code>OptionsReader.order</code> to more accurately reflect how it works.</li>
<li><code>ReferenceType</code>s which point to type parameters will now always be intentionally broken since they were never linked and should not be warned about when validating exports.</li>
<li><code>ReferenceType</code>s now longer include an <code>id</code> property for their target. They now instead include a <code>target</code> property.</li>
<li>Removed <code>Renderer.addExternalSymbolResolver</code>, use <code>Converter.addExternalSymbolResolver</code> instead.</li>
<li>Removed <code>CallbackLogger</code>.</li>
<li>Removed <code>SerializeEventData</code> from serialization events.</li>
<li>A <code>PageEvent</code> is now required for <code>getRenderContext</code>. If caching the context object, <code>page</code> must be updated when <code>getRenderContext</code> is called.</li>
<li><code>PageEvent</code> no longer includes the <code>template</code> property. The <code>Theme.render</code> method is now expected to take the template to render the page with as its second argument.</li>
<li>Removed <code>secondaryNavigation</code> member on <code>DefaultThemeRenderContext</code>.</li>
<li>Renamed <code>navigation</code> to <code>sidebar</code> on <code>DefaultThemeRenderContext</code> and <code>navigation.begin</code>/<code>navigation.end</code> hooks to <code>sidebar.begin</code>/<code>sidebar.end</code>.</li>
</ul>
<h3>Features</h3>
<ul>
<li>Added <code>--useTsLinkResolution</code> option (on by default) which tells TypeDoc to use TypeScript's <code>@link</code> resolution.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md">typedoc's changelog</a>.</em></p>
<blockquote>
<h2>v0.24.1 (2023-04-09)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Improve detection for legacy JSDoc <code>@example</code> tags, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2222">#2222</a>.</li>
<li>The page footer will now appear at the bottom of the page even if the page is short, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2223">#2223</a>.</li>
</ul>
<h1>v0.24.0 (2023-04-08)</h1>
<h3>Breaking Changes</h3>
<ul>
<li><code>@link</code>, <code>@linkcode</code> and <code>@linkplain</code> tags will now be resolved with TypeScript's link resolution by default. The <code>useTsLinkResolution</code> option
can be used to turn this behavior off, but be aware that doing so will mean your links will be resolved differently by editor tooling and TypeDoc.</li>
<li>TypeDoc will no longer automatically load plugins from <code>node_modules</code>. Specify the <code>--plugin</code> option to indicate which modules should be loaded.</li>
<li>The <code>packages</code> entry point strategy will now run TypeDoc in each provided package directory and then merge the results together.
The previous <code>packages</code> strategy has been preserved under <code>legacy-packages</code> and will be removed in 0.25. If the new strategy does not work
for your use case, please open an issue.</li>
<li>Removed <code>--logger</code> option, to disable all logging, set the <code>logLevel</code> option to <code>none</code>.</li>
<li>Dropped support for legacy <code>[[link]]</code>s, removed deprecated <code>Reflection.findReflectionByName</code>.</li>
<li>Added <code>@overload</code> to default ignored tags.</li>
</ul>
<h3>API Breaking Changes</h3>
<ul>
<li>The <code>label</code> property on <code>Reflection</code> has moved to <code>Comment</code>.</li>
<li>The default value of the <code>out</code> option has been changed from <code>""</code> to <code>"./docs"</code>, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2195">#2195</a>.</li>
<li>Renamed <code>DeclarationReflection#version</code> to <code>DeclarationReflection#projectVersion</code> to match property on <code>ProjectReflection</code>.</li>
<li>Removed unused <code>Reflection#originalName</code>.</li>
<li>Removed <code>Reflection#kindString</code>, use <code>ReflectionKind.singularString(reflection.kind)</code> or <code>ReflectionKind.pluralString(reflection.kind)</code> instead.</li>
<li>The <code>named-tuple-member</code> and <code>template-literal</code> type kind have been replaced with <code>namedTupleMember</code> and <code>templateLiteral</code>, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2100">#2100</a>.</li>
<li>Properties related to rendering are no longer stored on <code>Reflection</code>, including <code>url</code>, <code>anchor</code>, <code>hasOwnDocument</code>, and <code>cssClasses</code>.</li>
<li><code>Application.bootstrap</code> will no longer load plugins. If you want to load plugins, use <code>Application.bootstrapWithPlugins</code> instead, <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/1635">#1635</a>.</li>
<li>The options passed to <code>Application.bootstrap</code> will now be applied both before <em>and</em> after reading options files, which may cause a change in configuration
if using a custom script to run TypeDoc that includes some options, but other options are set in config files.</li>
<li>Moved <code>sources</code> property previously declared on base <code>Reflection</code> class to <code>DeclarationReflection</code> and <code>SignatureReflection</code>.</li>
<li>Moved <code>relevanceBoost</code> from <code>ContainerReflection</code> to <code>DeclarationReflection</code> since setting it on the parent class has no effect.</li>
<li>Removed internal <code>ReferenceType.getSymbol</code>, reference types no longer reference the <code>ts.Symbol</code> to enable generation from serialized JSON.</li>
<li><code>OptionsReader.priority</code> has been renamed to <code>OptionsReader.order</code> to more accurately reflect how it works.</li>
<li><code>ReferenceType</code>s which point to type parameters will now always be intentionally broken since they were never linked and should not be warned about when validating exports.</li>
<li><code>ReferenceType</code>s now longer include an <code>id</code> property for their target. They now instead include a <code>target</code> property.</li>
<li>Removed <code>Renderer.addExternalSymbolResolver</code>, use <code>Converter.addExternalSymbolResolver</code> instead.</li>
<li>Removed <code>CallbackLogger</code>.</li>
<li>Removed <code>SerializeEventData</code> from serialization events.</li>
<li>A <code>PageEvent</code> is now required for <code>getRenderContext</code>. If caching the context object, <code>page</code> must be updated when <code>getRenderContext</code> is called.</li>
<li><code>PageEvent</code> no longer includes the <code>template</code> property. The <code>Theme.render</code> method is now expected to take the template to render the page with as its second argument.</li>
<li>Removed <code>secondaryNavigation</code> member on <code>DefaultThemeRenderContext</code>.</li>
<li>Renamed <code>navigation</code> to <code>sidebar</code> on <code>DefaultThemeRenderContext</code> and <code>navigation.begin</code>/<code>navigation.end</code> hooks to <code>sidebar.begin</code>/<code>sidebar.end</code>.</li>
</ul>
<h3>Features</h3>
<ul>
<li>Added <code>--useTsLinkResolution</code> option (on by default) which tells TypeDoc to use TypeScript's <code>@link</code> resolution.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/TypeStrong/typedoc/commit/16cc385ae46293198d3934bf692870fd7f4ca093"><code>16cc385</code></a> Update changelog for release</li>
<li><a href="https://github.com/TypeStrong/typedoc/commit/6b32dab03d8d74299f5a22b67285169d389425ee"><code>6b32dab</code></a> Bump version to 0.24.1</li>
<li><a href="https://github.com/TypeStrong/typedoc/commit/0e3a892db375fc7197c6e88e321fdf16fc86f7fe"><code>0e3a892</code></a> Some cleanup from 0.24.0</li>
<li><a href="https://github.com/TypeStrong/typedoc/commit/a6e654475991ac3183862cb3042633f5cd8a4014"><code>a6e6544</code></a> Reorder option declarations to match docs</li>
<li><a href="https://github.com/TypeStrong/typedoc/commit/7a696ae1eba1e403bc03c729a951f850c01e4ef4"><code>7a696ae</code></a> Update changelog for release</li>
<li><a href="https://github.com/TypeStrong/typedoc/commit/4a762ace54ed2ff609596cab9fa79156ddc11ae4"><code>4a762ac</code></a> Bump version to 0.24.0</li>
<li><a href="https://github.com/TypeStrong/typedoc/commit/29069e0a02ba3d1487e2f825de31f9e1ec4d014d"><code>29069e0</code></a> Merge pull request <a href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2210">#2210</a> from TypeStrong/beta</li>
<li><a href="https://github.com/TypeStrong/typedoc/commit/27f550f3c88a34b54917ef723450df9e55d56672"><code>27f550f</code></a> Fix broken links in example</li>
<li><a href="https://github.com/TypeStrong/typedoc/commit/0c105ec7a025044aae143f692fe6315c481badc3"><code>0c105ec</code></a> One last bugfix</li>
<li><a href="https://github.com/TypeStrong/typedoc/commit/864db5780a6afc771df87e8c52e5b2b85e580e73"><code>864db57</code></a> Add jsDocCompatibility option</li>
<li>Additional commits viewable in <a href="https://github.com/TypeStrong/TypeDoc/compare/v0.23.28...v0.24.1">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>1 parent 3117e0c commit 1955039Copy full SHA for 1955039
File tree
Expand file treeCollapse file tree
2 files changed
+8
-8
lines changedFilter options
Expand file treeCollapse file tree
2 files changed
+8
-8
lines changed+7-7Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
63 | 63 |
| |
64 | 64 |
| |
65 | 65 |
| |
66 |
| - | |
| 66 | + | |
67 | 67 |
| |
68 | 68 |
| |
69 | 69 |
| |
|
0 commit comments