chore(deps): update dependency typedoc to ^0.27.0 #97

Open
renovate-bot wants to merge 1 commit from renovate/typedoc-0.x into master
Member

This PR contains the following updates:

Package Type Update Change
typedoc (source) devDependencies minor ^0.26.0 -> ^0.27.0

Release Notes

TypeStrong/TypeDoc (typedoc)

v0.27.6

Compare Source

Features
  • Added ignoredHighlightLanguages option to specify languages which will be
    allowed in code blocks but not highlighted, #​2819.
Bug Fixes
  • @include and @includeCode now work in the readme file, #​2814.
  • TypeDoc will now avoid making references to references, #​2811.
  • Fixed output specific option specification, #​2818.
  • Improved type reference conversion to avoid including defaulted type arguments, #​2820.
  • Fixed parsing of declaration references which include a module and a local reference, #​2810.
  • Improved link resolution logic to prioritize type alias properties with the
    same symbol over type literal properties within function parameters.

v0.27.5

Compare Source

Bug Fixes
  • Possibly Breaking: TypeDoc will no longer render anchors within the page for
    deeply nested properties. This only affects links to properties of
    properties of types, which did not have a clickable link exposed so are
    unlikely to have been linked to. Furthermore, these links were not always
    created by TypeDoc, only being created if all parent properties contained
    comments, #​2808.
  • TypeDoc will now warn if a property which does not have a URL within the
    rendered document and the parent property/page will be linked to instead,
    #​2808. These warnings can be disabled with the validation.rewrittenLink
    option.
  • Fix restoration of groups/categories including documents, #​2801.
  • Fixed missed relative paths within markdown link references in documents.
  • Improved handling of incomplete inline code blocks within markdown.
  • Direct https:// links under the hostedBaseUrl option's URL will no
    longer be treated as external, #​2809.
Thanks!

v0.27.4

Compare Source

Features
  • API: Introduced new Converter.EVENT_CREATE_PROJECT event which fires when a project is created by the converter, #​2800.
Bug Fixes
  • Switch from gzip to deflate for compressing assets to make output consistent across different operating systems, #​2796.
  • @include and @includeCode now work for comments on the entry point for projects with a single entry point, #​2800.
  • Cascaded modifier tags will no longer be copied into type literals, #​2802.
  • @summary now works to describe functions within modules, #​2803.
  • Corrected navigation showing module link as current when not on module page, #​2805.

v0.27.3

Compare Source

Features
  • Added support for PNG favicons, #​2790.
  • Improved support for hosting TypeDoc with strict Content Security Policy rules, #​2794.
Bug Fixes
  • Add special handling for import types with type errors discarded with ts-expect-error, #​2792.
  • Fixed low contrast in default colors for properties/accessors in light mode, #​2795.
  • The highlightLanguages option now permits Shiki aliases to be specified rather than just the language ID, #​2798.
Thanks!

v0.27.2

Compare Source

Bug Fixes
  • Fix crash with TypeScript 5.5.x, #​2789.

v0.27.1

Compare Source

Bug Fixes
  • Include classes which inherit from another package in class hierarchy in packages mode, #​2467.
  • Fixed handling of @categoryDescription and @groupDescription on module pages, #​2787.
  • Fixed automatic discovery of entry points in packages mode.
  • Reverted accidental style change for hierarchy page introduced in 0.27.0
  • The hierarchy Expand/Collapse link will now only appear if the hierarchies are different.

v0.27.0

Compare Source

Breaking Changes
  • Convert to ESM to enable easier use of ESM-only dependencies.
  • Drop support for TypeScript <5.0, no longer supported by DefinitelyTyped
  • Relaxed requirements for file names and generated url fragments. This may
    result in a different file name structure, #​2714.
  • Anchors to document headings and reflections within a HTML generated pages
    have changed. They can be partially restored to the previous format by
    setting --sluggerConfiguration.lowercase false. This change was made to
    more closely match the default behavior of GitHub's markdown rendering and
    VSCode's autocomplete when creating a relative link to an external markdown
    file.
  • Removed the hideParameterTypesInTitle option, this was originally added as
    a workaround for many signatures overflowing the available horizontal space
    in rendered pages. TypeDoc now has logic to wrap types/signatures smartly,
    so this option is no longer necessary.
  • Changed the default kindSortOrder to put references last.
  • Changed the default sort order to use alphabetical-ignoring-documents
    instead of alphabetical.
  • Changed default of suppressCommentWarningsInDeclarationFiles to true
  • API: Constructor signatures now use the parent class name as their name
    (e.g. X, not new X)
  • API: @group, @category, @groupDescription and @categoryDescription
    will no longer be removed from the reflections they are present on. They are
    skipped during rendering with the notRenderedTags option.
Features
  • Add support for TypeScript 5.7
  • TypeDoc will now discover entry points from package.json exports if they
    are not provided manually, #​1937.
  • Relative links to markdown files may now include #anchor links to
    reference a heading within them.
  • Improved support for @param comments with nested object types, #​2555.
  • Improved support for @param comments which reference a type
    alias/interface. Important properties on the referenced type can now be
    highlighted with @param options.foo, which will result in the additional
    note being included under the documentation for that parameter, #​2147. Note:
    This feature is limited to references. It is not supported on other types of
    types.
  • Added a new outputs option which is an array of outputs. This can be used
    to render the documentation multiple times with different rendering options
    or output types, #​2597.
  • Added support for rendering alerts (or callouts) in markdown.
  • Add support for an @expand tag which can be placed on type aliases and
    interfaces. When a type with @expand is referenced and TypeDoc has a place
    to include additional details about the type, the properties of the type
    will be included in the page where @expand is found. Note that use of this
    tag can significantly increase the size of your generated documentation if
    it is applied to commonly used types as it will result in inlining the
    comments for those types everywhere they are referenced, #​2303.
  • Add support for an @inline tag which can be placed on type aliases and
    interfaces. When a type with @inline is referenced, TypeDoc will resolve
    the referenced type and convert the type as if it was included directly
    within the referencing type. Note that use of this tag can significantly
    increase the size of your generated documentation if it is applied to
    commonly used types as it will result in inlining the comments for those
    types everywhere they are referenced, #​2303.
  • Introduced a new @useDeclaredType tag for type aliases which can sometimes
    improve their documentation, #​2654.
  • Added a new @mergeModuleWith tag which can be used to tell TypeDoc to
    place a module/namespace's children under a different module/namespace and
    remove the real parent, #​2281.
  • Added new @include and @includeCode inline tags to include files within
    comments/documents.
  • Add notRenderedTags option. This option is similar to the excludeTags
    option, but while excludeTags will result in the tag being completely
    removed from the documentation, notRenderedTags only prevents it from
    being included when rendering.
  • Added groupReferencesByType option.
  • Added navigation.excludeReferences option
  • Added useFirstParagraphOfCommentAsSummary option to configure how TypeDoc
    handles comments for module members without the @summary tag.
  • Introduced favicon option to specify a .ico or .svg favicon to reference.
  • Sections within the page and in the "On This Page" navigation are now tied
    together and will expand/collapse together, #​2335.
  • API: Introduced a new app.outputs object for defining new output strategies.
  • API: TypeDoc's CSS is now wrapped in @layer typedoc, #​2782.
Bug Fixes
  • TypeDoc now properly flags readonly index signatures.
  • TypeDoc will now use the first signature's comment for later signatures in
    overloads if present, #​2718.
  • Fixed handling of @enum if the type was declared before the variable, #​2719.
  • Fixed empty top level modules page in packages mode, #​2753.
  • TypeDoc can now link to type alias properties, #​2524.
  • TypeDoc will now document the merged symbol type when considering globals
    declared inside declare global, #​2774
  • TypeDoc now converts declare module "foo" as a module rather than a namespace, #​2778.
  • Import types in type aliases now use module member references if present, #​2779.
  • Fixed an issue where properties were not properly marked optional in some
    cases. This primarily affected destructured parameters.
  • Added yaml to the highlight languages supported by default.
  • TypeDoc now recognizes txt as an alias of text to indicate a code block
    should not be highlighted.
  • Items which are hidden with @ignore or @hidden but still referenced by
    other types will no longer produce warnings about not being exported.
  • If a project only has one module within it, TypeDoc will now consider that
    module when resolving @link tags.
  • The arrows to indicate whether or not a section is open now work when
    JavaScript is disabled.
  • Group/category search boosts are now applied when writing the search index
    rather than when converting. This prevents issues where boosts used by just
    one package were incorrectly reported as unused when running with
    entryPointStrategy set to packages.
Thanks!

v0.26.11

Compare Source

Features
  • If hostedBaseUrl is set to the root page on a website, TypeDoc will now include WebSite structured data, #​2760.
Bug Fixes
  • Fix support for ESM config files with Node 23, #​2752.
  • Fix type errors when using "module": "ESNext" and importing TypeDoc, #​2747.
  • Inherited comments on overloaded methods now consider the overload position when inheriting a comment, #​2755.

v0.26.10

Compare Source

Bug Fixes
  • Fixed missing space on page headers, #​2748.

v0.26.9

Compare Source

Features
  • Added headings option to control optional headings, #​2729.
  • Updated Chinese translations, #​2739.
  • Added a folder icon to page navigation elements which are not links, #​2741.
Bug Fixes
  • externalSymbolLinkMappings now uses the TypeScript reported link target if available, #​2725.
  • TypeDoc will no longer omit the modules page if a project contains only modules/documents, #​2730.
  • Fixed missing breadcrumbs on project page, #​2728.
  • TypeDoc will no longer render an empty readme page if no readme was found.
Thanks!

v0.26.8

Compare Source

Features
  • Updated Chinese translations, #​2706.
  • Exported constants no longer render the type and default value if they are the same, #​2717.
  • The HTML output now wraps tag blocks with <div> tags and includes the tag name in a class name, #​2723.
Bug Fixes
  • Correctly handle external link resolver link text when referencing an external symbol, #​2700.
  • Big integer literals are now supported as default values, #​2721.
  • Corrected handling of @link tags present in comments at the start of source files.
  • The index will now display when a module only contains documents, #​2722.
  • ReflectionSymbolId.pos no longer references the position before any doc comments for a symbol.
    This could cause typedoc-plugin-dt-links to produce links which didn't go to the expected location in a file.
Thanks!

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [typedoc](https://typedoc.org) ([source](https://github.com/TypeStrong/TypeDoc)) | devDependencies | minor | [`^0.26.0` -> `^0.27.0`](https://renovatebot.com/diffs/npm/typedoc/0.26.7/0.27.6) | --- ### Release Notes <details> <summary>TypeStrong/TypeDoc (typedoc)</summary> ### [`v0.27.6`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0276-2024-12-26) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.27.5...v0.27.6) ##### Features - Added `ignoredHighlightLanguages` option to specify languages which will be allowed in code blocks but not highlighted, [#&#8203;2819](https://github.com/TypeStrong/TypeDoc/issues/2819). ##### Bug Fixes - `@include` and `@includeCode` now work in the readme file, [#&#8203;2814](https://github.com/TypeStrong/TypeDoc/issues/2814). - TypeDoc will now avoid making references to references, [#&#8203;2811](https://github.com/TypeStrong/TypeDoc/issues/2811). - Fixed output specific option specification, [#&#8203;2818](https://github.com/TypeStrong/TypeDoc/issues/2818). - Improved type reference conversion to avoid including defaulted type arguments, [#&#8203;2820](https://github.com/TypeStrong/TypeDoc/issues/2820). - Fixed parsing of declaration references which include a module and a local reference, [#&#8203;2810](https://github.com/TypeStrong/TypeDoc/issues/2810). - Improved link resolution logic to prioritize type alias properties with the same symbol over type literal properties within function parameters. ### [`v0.27.5`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0275-2024-12-14) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.27.4...v0.27.5) ##### Bug Fixes - Possibly Breaking: TypeDoc will no longer render anchors within the page for deeply nested properties. This only affects links to properties of properties of types, which did not have a clickable link exposed so are unlikely to have been linked to. Furthermore, these links were not always created by TypeDoc, only being created if all parent properties contained comments, [#&#8203;2808](https://github.com/TypeStrong/TypeDoc/issues/2808). - TypeDoc will now warn if a property which does not have a URL within the rendered document and the parent property/page will be linked to instead, [#&#8203;2808](https://github.com/TypeStrong/TypeDoc/issues/2808). These warnings can be disabled with the `validation.rewrittenLink` option. - Fix restoration of groups/categories including documents, [#&#8203;2801](https://github.com/TypeStrong/TypeDoc/issues/2801). - Fixed missed relative paths within markdown link references in documents. - Improved handling of incomplete inline code blocks within markdown. - Direct `https://` links under the `hostedBaseUrl` option's URL will no longer be treated as external, [#&#8203;2809](https://github.com/TypeStrong/TypeDoc/issues/2809). ##### Thanks! - [@&#8203;SacDeNoeuds](https://github.com/SacDeNoeuds) ### [`v0.27.4`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0274-2024-12-09) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.27.3...v0.27.4) ##### Features - API: Introduced new `Converter.EVENT_CREATE_PROJECT` event which fires when a project is created by the converter, [#&#8203;2800](https://github.com/TypeStrong/TypeDoc/issues/2800). ##### Bug Fixes - Switch from gzip to deflate for compressing assets to make output consistent across different operating systems, [#&#8203;2796](https://github.com/TypeStrong/TypeDoc/issues/2796). - `@include` and `@includeCode` now work for comments on the entry point for projects with a single entry point, [#&#8203;2800](https://github.com/TypeStrong/TypeDoc/issues/2800). - Cascaded modifier tags will no longer be copied into type literals, [#&#8203;2802](https://github.com/TypeStrong/TypeDoc/issues/2802). - `@summary` now works to describe functions within modules, [#&#8203;2803](https://github.com/TypeStrong/TypeDoc/issues/2803). - Corrected navigation showing module link as current when not on module page, [#&#8203;2805](https://github.com/TypeStrong/TypeDoc/issues/2805). ### [`v0.27.3`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0273-2024-12-04) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.27.2...v0.27.3) ##### Features - Added support for PNG favicons, [#&#8203;2790](https://github.com/TypeStrong/TypeDoc/issues/2790). - Improved support for hosting TypeDoc with strict Content Security Policy rules, [#&#8203;2794](https://github.com/TypeStrong/TypeDoc/issues/2794). ##### Bug Fixes - Add special handling for import types with type errors discarded with ts-expect-error, [#&#8203;2792](https://github.com/TypeStrong/TypeDoc/issues/2792). - Fixed low contrast in default colors for properties/accessors in light mode, [#&#8203;2795](https://github.com/TypeStrong/TypeDoc/issues/2795). - The `highlightLanguages` option now permits Shiki aliases to be specified rather than just the language ID, [#&#8203;2798](https://github.com/TypeStrong/TypeDoc/issues/2798). ##### Thanks! - [@&#8203;mikalai-snap](https://github.com/mikalai-snap) - [@&#8203;mistic100](https://github.com/mistic100) ### [`v0.27.2`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0272-2024-11-29) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.27.1...v0.27.2) ##### Bug Fixes - Fix crash with TypeScript 5.5.x, [#&#8203;2789](https://github.com/TypeStrong/TypeDoc/issues/2789). ### [`v0.27.1`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0271-2024-11-28) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.27.0...v0.27.1) ##### Bug Fixes - Include classes which inherit from another package in class hierarchy in packages mode, [#&#8203;2467](https://github.com/TypeStrong/TypeDoc/issues/2467). - Fixed handling of `@categoryDescription` and `@groupDescription` on module pages, [#&#8203;2787](https://github.com/TypeStrong/TypeDoc/issues/2787). - Fixed automatic discovery of entry points in packages mode. - Reverted accidental style change for hierarchy page introduced in 0.27.0 - The hierarchy Expand/Collapse link will now only appear if the hierarchies are different. ### [`v0.27.0`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0270-2024-11-27) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.26.11...v0.27.0) ##### Breaking Changes - Convert to ESM to enable easier use of ESM-only dependencies. - Drop support for TypeScript <5.0, no longer supported by DefinitelyTyped - Relaxed requirements for file names and generated url fragments. This may result in a different file name structure, [#&#8203;2714](https://github.com/TypeStrong/TypeDoc/issues/2714). - Anchors to document headings and reflections within a HTML generated pages have changed. They can be partially restored to the previous format by setting `--sluggerConfiguration.lowercase false`. This change was made to more closely match the default behavior of GitHub's markdown rendering and VSCode's autocomplete when creating a relative link to an external markdown file. - Removed the `hideParameterTypesInTitle` option, this was originally added as a workaround for many signatures overflowing the available horizontal space in rendered pages. TypeDoc now has logic to wrap types/signatures smartly, so this option is no longer necessary. - Changed the default `kindSortOrder` to put references last. - Changed the default `sort` order to use `alphabetical-ignoring-documents` instead of `alphabetical`. - Changed default of `suppressCommentWarningsInDeclarationFiles` to `true` - API: Constructor signatures now use the parent class name as their name (e.g. `X`, not `new X`) - API: `@group`, `@category`, `@groupDescription` and `@categoryDescription` will no longer be removed from the reflections they are present on. They are skipped during rendering with the `notRenderedTags` option. ##### Features - Add support for TypeScript 5.7 - TypeDoc will now discover entry points from `package.json` exports if they are not provided manually, [#&#8203;1937](https://github.com/TypeStrong/TypeDoc/issues/1937). - Relative links to markdown files may now include `#anchor` links to reference a heading within them. - Improved support for `@param` comments with nested object types, [#&#8203;2555](https://github.com/TypeStrong/TypeDoc/issues/2555). - Improved support for `@param` comments which reference a type alias/interface. Important properties on the referenced type can now be highlighted with `@param options.foo`, which will result in the additional note being included under the documentation for that parameter, [#&#8203;2147](https://github.com/TypeStrong/TypeDoc/issues/2147). Note: This feature is limited to references. It is not supported on other types of types. - Added a new `outputs` option which is an array of outputs. This can be used to render the documentation multiple times with different rendering options or output types, [#&#8203;2597](https://github.com/TypeStrong/TypeDoc/issues/2597). - Added support for rendering alerts (or callouts) in markdown. - Add support for an `@expand` tag which can be placed on type aliases and interfaces. When a type with `@expand` is referenced and TypeDoc has a place to include additional details about the type, the properties of the type will be included in the page where `@expand` is found. Note that use of this tag can *significantly* increase the size of your generated documentation if it is applied to commonly used types as it will result in inlining the comments for those types everywhere they are referenced, [#&#8203;2303](https://github.com/TypeStrong/TypeDoc/issues/2303). - Add support for an `@inline` tag which can be placed on type aliases and interfaces. When a type with `@inline` is referenced, TypeDoc will resolve the referenced type and convert the type as if it was included directly within the referencing type. Note that use of this tag can *significantly* increase the size of your generated documentation if it is applied to commonly used types as it will result in inlining the comments for those types everywhere they are referenced, [#&#8203;2303](https://github.com/TypeStrong/TypeDoc/issues/2303). - Introduced a new `@useDeclaredType` tag for type aliases which can sometimes improve their documentation, [#&#8203;2654](https://github.com/TypeStrong/TypeDoc/issues/2654). - Added a new `@mergeModuleWith` tag which can be used to tell TypeDoc to place a module/namespace's children under a different module/namespace and remove the real parent, [#&#8203;2281](https://github.com/TypeStrong/TypeDoc/issues/2281). - Added new `@include` and `@includeCode` inline tags to include files within comments/documents. - Add `notRenderedTags` option. This option is similar to the `excludeTags` option, but while `excludeTags` will result in the tag being completely removed from the documentation, `notRenderedTags` only prevents it from being included when rendering. - Added `groupReferencesByType` option. - Added `navigation.excludeReferences` option - Added `useFirstParagraphOfCommentAsSummary` option to configure how TypeDoc handles comments for module members without the `@summary` tag. - Introduced `favicon` option to specify a `.ico` or `.svg` favicon to reference. - Sections within the page and in the "On This Page" navigation are now tied together and will expand/collapse together, [#&#8203;2335](https://github.com/TypeStrong/TypeDoc/issues/2335). - API: Introduced a new `app.outputs` object for defining new output strategies. - API: TypeDoc's CSS is now wrapped in `@layer typedoc`, [#&#8203;2782](https://github.com/TypeStrong/TypeDoc/issues/2782). ##### Bug Fixes - TypeDoc now properly flags `readonly` index signatures. - TypeDoc will now use the first signature's comment for later signatures in overloads if present, [#&#8203;2718](https://github.com/TypeStrong/TypeDoc/issues/2718). - Fixed handling of `@enum` if the type was declared before the variable, [#&#8203;2719](https://github.com/TypeStrong/TypeDoc/issues/2719). - Fixed empty top level modules page in packages mode, [#&#8203;2753](https://github.com/TypeStrong/TypeDoc/issues/2753). - TypeDoc can now link to type alias properties, [#&#8203;2524](https://github.com/TypeStrong/TypeDoc/issues/2524). - TypeDoc will now document the merged symbol type when considering globals declared inside `declare global`, [#&#8203;2774](https://github.com/TypeStrong/TypeDoc/issues/2774) - TypeDoc now converts `declare module "foo"` as a module rather than a namespace, [#&#8203;2778](https://github.com/TypeStrong/TypeDoc/issues/2778). - Import types in type aliases now use module member references if present, [#&#8203;2779](https://github.com/TypeStrong/TypeDoc/issues/2779). - Fixed an issue where properties were not properly marked optional in some cases. This primarily affected destructured parameters. - Added `yaml` to the highlight languages supported by default. - TypeDoc now recognizes `txt` as an alias of `text` to indicate a code block should not be highlighted. - Items which are hidden with `@ignore` or `@hidden` but still referenced by other types will no longer produce warnings about not being exported. - If a project only has one module within it, TypeDoc will now consider that module when resolving `@link` tags. - The arrows to indicate whether or not a section is open now work when JavaScript is disabled. - Group/category search boosts are now applied when writing the search index rather than when converting. This prevents issues where boosts used by just one package were incorrectly reported as unused when running with entryPointStrategy set to packages. ##### Thanks! - [@&#8203;Huxpro](https://github.com/Huxpro) - [@&#8203;mrfigg](https://github.com/mrfigg) - [@&#8203;tgreyuk](https://github.com/tgreyuk) - [@&#8203;XeroAlpha](https://github.com/XeroAlpha) ### [`v0.26.11`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v02611-2024-11-01) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.26.10...v0.26.11) ##### Features - If `hostedBaseUrl` is set to the root page on a website, TypeDoc will now include `WebSite` structured data, [#&#8203;2760](https://github.com/TypeStrong/TypeDoc/issues/2760). ##### Bug Fixes - Fix support for ESM config files with Node 23, [#&#8203;2752](https://github.com/TypeStrong/TypeDoc/issues/2752). - Fix type errors when using `"module": "ESNext"` and importing TypeDoc, [#&#8203;2747](https://github.com/TypeStrong/TypeDoc/issues/2747). - Inherited comments on overloaded methods now consider the overload position when inheriting a comment, [#&#8203;2755](https://github.com/TypeStrong/TypeDoc/issues/2755). ### [`v0.26.10`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v02610-2024-10-16) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.26.9...v0.26.10) ##### Bug Fixes - Fixed missing space on page headers, [#&#8203;2748](https://github.com/TypeStrong/TypeDoc/issues/2748). ### [`v0.26.9`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0269-2024-10-11) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.26.8...v0.26.9) ##### Features - Added `headings` option to control optional headings, [#&#8203;2729](https://github.com/TypeStrong/TypeDoc/issues/2729). - Updated Chinese translations, [#&#8203;2739](https://github.com/TypeStrong/TypeDoc/issues/2739). - Added a folder icon to page navigation elements which are not links, [#&#8203;2741](https://github.com/TypeStrong/TypeDoc/issues/2741). ##### Bug Fixes - `externalSymbolLinkMappings` now uses the TypeScript reported link target if available, [#&#8203;2725](https://github.com/TypeStrong/TypeDoc/issues/2725). - TypeDoc will no longer omit the modules page if a project contains only modules/documents, [#&#8203;2730](https://github.com/TypeStrong/TypeDoc/issues/2730). - Fixed missing breadcrumbs on project page, [#&#8203;2728](https://github.com/TypeStrong/TypeDoc/issues/2728). - TypeDoc will no longer render an empty readme page if no readme was found. ##### Thanks! - [@&#8203;lriggle-strib](https://github.com/lriggle-strib) - [@&#8203;mrfigg](https://github.com/mrfigg) - [@&#8203;XeroAlpha](https://github.com/XeroAlpha) ### [`v0.26.8`](https://github.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0268-2024-10-04) [Compare Source](https://github.com/TypeStrong/TypeDoc/compare/v0.26.7...v0.26.8) ##### Features - Updated Chinese translations, [#&#8203;2706](https://github.com/TypeStrong/TypeDoc/issues/2706). - Exported constants no longer render the type and default value if they are the same, [#&#8203;2717](https://github.com/TypeStrong/TypeDoc/issues/2717). - The HTML output now wraps tag blocks with `<div>` tags and includes the tag name in a class name, [#&#8203;2723](https://github.com/TypeStrong/TypeDoc/issues/2723). ##### Bug Fixes - Correctly handle external link resolver link text when referencing an external symbol, [#&#8203;2700](https://github.com/TypeStrong/TypeDoc/issues/2700). - Big integer literals are now supported as default values, [#&#8203;2721](https://github.com/TypeStrong/TypeDoc/issues/2721). - Corrected handling of `@link` tags present in comments at the start of source files. - The index will now display when a module only contains documents, [#&#8203;2722](https://github.com/TypeStrong/TypeDoc/issues/2722). - `ReflectionSymbolId.pos` no longer references the position *before* any doc comments for a symbol. This could cause typedoc-plugin-dt-links to produce links which didn't go to the expected location in a file. ##### Thanks! - [@&#8203;Corso02](https://github.com/Corso02) - [@&#8203;lriggle-strib](https://github.com/lriggle-strib) - [@&#8203;XeroAlpha](https://github.com/XeroAlpha) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS1ib3QiXX0=-->
renovate-bot added the
renovate-bot
label 2024-12-23 18:18:03 +05:30
renovate-bot added 1 commit 2024-12-23 18:18:03 +05:30
chore(deps): update dependency typedoc to ^0.27.0
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ae636cf4e5
Author
Member

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
Unknown Syntax Error: Unsupported option name ("--ignore-platform").

$ yarn install [--json] [--immutable] [--immutable-cache] [--refresh-lockfile] [--check-cache] [--check-resolutions] [--inline-builds] [--mode #0]

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: yarn.lock ``` Unknown Syntax Error: Unsupported option name ("--ignore-platform"). $ yarn install [--json] [--immutable] [--immutable-cache] [--refresh-lockfile] [--check-cache] [--check-resolutions] [--inline-builds] [--mode #0] ```
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/typedoc-0.x:renovate/typedoc-0.x
git checkout renovate/typedoc-0.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git checkout master
git merge --no-ff renovate/typedoc-0.x
git checkout renovate/typedoc-0.x
git rebase master
git checkout master
git merge --ff-only renovate/typedoc-0.x
git checkout renovate/typedoc-0.x
git rebase master
git checkout master
git merge --no-ff renovate/typedoc-0.x
git checkout master
git merge --squash renovate/typedoc-0.x
git checkout master
git merge --ff-only renovate/typedoc-0.x
git checkout master
git merge renovate/typedoc-0.x
git push origin master
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: mCaptcha/pow_sha256-polyfill#97
No description provided.