Skip to content

Commit

Permalink
Fix broken links
Browse files Browse the repository at this point in the history
There were two causes of this:
1. Type replacement was done too late, the project shouldn't change after the RESOLVE_BEGIN event.
2. Types were created as children of the parent module, not children of the type alias.

Resolves TypeStrong/typedoc#2808
  • Loading branch information
Gerrit0 committed Dec 14, 2024
1 parent d72a4cb commit 743d269
Show file tree
Hide file tree
Showing 7 changed files with 348 additions and 225 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
### v1.3.1 (2024-12-14)

- Fixed broken links to type properties for types created with this plugin, TypeStrong/typedoc#2808.

### v1.3.0 (2024-11-24)

- Support TypeDoc 0.27.

### v1.2.1 (2024-08-18)

- Fix warnings about referenced but not present reflections in packages mode, #6.
- Copy comments from schema object declaration to type alias, #7.

### v1.2.0 (2024-06-22)

- Support TypeDoc 0.26.

### v1.1.2 (2024-01-06)

- Added support for the `z.input` type, #3.

### v1.1.1 (2023-12-26)

- Fixed conversion of symbols where the same name is used for a type and variable, #2.

### v1.1.0 (2023-08-25)

- Add support for TypeDoc 0.25.x

### v1.0.2

- Update peer dependency to allow TypeDoc 0.24

### v1.0.1

- Add GitHub links to NPM package
33 changes: 1 addition & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,35 +19,4 @@ See [an example](https://gerritbirkeland.com/typedoc-plugin-zod/types/Abc.html)

## Change Log

### v1.3.0 (2024-11-24)

- Support TypeDoc 0.27.

### v1.2.1 (2024-08-18)

- Fix warnings about referenced but not present reflections in packages mode, #6.
- Copy comments from schema object declaration to type alias, #7.

### v1.2.0 (2024-06-22)

- Support TypeDoc 0.26.

### v1.1.2 (2024-01-06)

- Added support for the `z.input` type, #3.

### v1.1.1 (2023-12-26)

- Fixed conversion of symbols where the same name is used for a type and variable, #2.

### v1.1.0 (2023-08-25)

- Add support for TypeDoc 0.25.x

### v1.0.2

- Update peer dependency to allow TypeDoc 0.24

### v1.0.1

- Add GitHub links to NPM package
See [CHANGELOG.md](./CHANGELOG.md)
Loading

0 comments on commit 743d269

Please sign in to comment.