Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency typedoc to ~0.20.0 #21

Merged
merged 1 commit into from
Jan 4, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 28, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
typedoc (source) ~0.19.2 -> ~0.20.0 age adoption passing confidence

Release Notes

TypeStrong/TypeDoc

v0.20.10

Compare Source

Bug Fixes
  • Errors due to bad options in tsconfig file were dropped (f76b521), closes #​1444
Changes
  • Updated warning about unsupported highlight language to point users to typedoc --help

v0.20.9

Compare Source

Bug Fixes

v0.20.8

Compare Source

Bug Fixes
  • CLI should not exit cleanly on unexpected error (2907328)

v0.20.7

Compare Source

Bug Fixes

v0.20.6

Compare Source

Bug Fixes
Features

v0.20.5

Compare Source

Bug Fixes
  • Functions might not have a parent in global files (d739298), closes #​1436

v0.20.4

Compare Source

Bug Fixes
  • --excludeNotDocumented didn't remove reflections (5ebbd0f), closes #​1435

v0.20.3

Compare Source

Features

v0.20.2

Compare Source

Bug Fixes
  • ArgumentsReader should warn if missing a value (02b915d), closes #​1429
  • Literal boolean converter in TS 3 (ed67eda), closes #​1432
  • Map bash, sh, shell to shellscript when highlighting (6eb6c28), closes #​1432
  • Negative literal types were converted incorrectly (c14b5b5), closes #​1427
  • TS 3 converters for null, this types (20febfd)
Features
  • Better detection for declaration files defining a module (38d8edf), closes #​1430

v0.20.1

Compare Source

Bug Fixes

v0.20.0

Compare Source

Migration from previous versions

Version 0.20 completely reworks how documentation is generated by TypeDoc. In previous versions, there was --mode file and --mode modules, which documented files according to their content on the filesystem. This worked reasonably well before ES modules were commonly used, but was insufficient for the modern ecosystem. In 0.20, TypeDoc documents your project according to what you export.

With this in mind, there are several breaking changes that will likely effect you:
1. TypeScript compiler options must be specified in a tsconfig.json file, they may not be passed directly to TypeDoc.
1. Removed options - mode, excludeNotExported, includeDeclarations, ignoreCompilerErrors (#​1403), entryPoint
1. inputFiles has been renamed to entryPoints to better reflect its usage
1. Existing third party themes may be broken due to changes to the type structure
1. The behavior of exclude has changed, it is now only used to filter entry points if a directory is provided as the entry point.
1. TypeDoc now uses Shiki instead of Highlight.js for syntax highlighting. Shiki is faster, about 10% of the size of Highlight.js, and makes it possible for future work to allow users to choose a light or dark theme. However, it does not support all of the same languages as Highlight.js. If you run typedoc --help, it will print a list of all supported highlighting languages.

The command line for most projects now should be fairly simple:

npx typedoc src/index.ts

If you have more than one entry point, TypeDoc will create a module for each entry point. The module name will be derived from the entry file name. If the derived name is not the desired name, you can use a module comment with the @module tag to change it:

/**
  * @​packageDocumentation
  * @​module myLibrary
  */
Bug Fixes
  • A few of the issues with the type converter (6ff7fcd)
  • Accessor with a set signature was converted incorrectly (1200212)
  • Array types were converted incorrectly (c892c00)
  • Categorization was broken with a single entry point (7f6e924)
  • Change target back to ES2018 (671e6d3)
  • ConstructorType node support (7ba17f6)
  • Correct handling of arrays in generic constraints (d575dc0), closes #​1408
  • Declaration merged namespaces sometimes produced multiple reflections (5de3bf5)
  • Fix bug in ReferenceType equality check (3f63956), closes #​1383
  • Hidden module-namespaces (88fa674), closes #​1396
  • isExternal flag wasn't set properly (0060eb7)
  • JSON schema had incorrect value types (26a9c0d), closes #​1389
  • Lint (d75c67c)
  • Missing comments on variable functions (e15bcd6), closes #​1421
  • Normalize unions (9f8375d), closes #​571
  • Reintroduce support for index signatures (20a7d5f)
  • Resolve type parameters in concrete subclasses (85cd06d)
  • Somehow didn't save a file (33c2bc6)
  • docs: A typo in description of DefaultTheme.getMapping (#​1416) (a4c3d9e)
  • perf: Only create extra programs when dealing with solution style tsconfigs (6525a7b)
  • Missing default exports (017fad1)
  • Reference types should always be given resolved symbols (1d6120f)
  • Rendering works again (17bf655)
  • Some issues with inheritence (033b1ae)
  • Support for specify a directory as an entry point (ac4c688)
  • Type converters threw on older TS versions (1161cb2)
  • TypeDoc should warn users about missing entry points (8c51af8)
  • We pick up all properties now (4845209)
Features
  • Add logLevel option (80c4524)
  • Automatically generate schema for typedoc.json (cd84548)
  • Colors in console output (49189de)
  • Initial attempt at support for project references (e1106dd), closes #​1414
  • Mostly working library mode (bcbd401)
  • new option "markedOptions" (#​1412) (2bf6e49)
  • Options may specify a validation function (#​1398) (884332b)
  • Partial support for global files (9cb5b9c)
  • Support for [@module](https://togithub.com/module) tag (15cb73c)
  • Support for mapped types (1036069)
  • Support for the remaining literal types (695f5c7)
  • Support for TS 4.1 mapped types + string literal types (a32c976), closes #​1397
  • Switch back to search.js (f0af1f1), closes #​1339
API Breaking changes
  • Application.generateDocs, Application.generateJson now return a promise
  • Converter.EVENT_FILE_BEGIN has been removed - it no longer makes sense since re-exports are fully supported
  • "string-literal" type removed, there is now a single "literal" type that includes string literals, number literals, bigint literals, and null
  • context.fileNames has been removed
  • isExported / isConstructorProperty ReflectionFlags remvoed
  • Converter.EVENT_FUNCTION_IMPLEMENTATION removed - it was inappropriately used to perform some data extraction, which was unreliable since not all function declarations include an implementation
  • Converter.EVENT_BEGIN listeners may not access context.program. If they need access to a TS program, they should instead use context.programs and find the one they are interested in.
Thanks!

Thank you to everyone who helped test the 0.20 beta, and the following code contributors:


Renovate configuration

📅 Schedule: 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 WhiteSource Renovate. View repository job log here.

@amacar amacar merged commit 93799c8 into develop Jan 4, 2021
@amacar amacar deleted the renovate/typedoc-0.x branch January 4, 2021 08:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants