From 19c21a3d21050938611000d304f162b16b221d95 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 27 Nov 2024 12:33:42 +0000 Subject: [PATCH] Version Packages --- .changeset/big-teachers-shave.md | 7 ------- .changeset/chatty-cheetahs-love.md | 5 ----- .changeset/eight-meals-camp.md | 6 ------ .changeset/small-lizards-float.md | 5 ----- packages/docusaurus-plugin-typedoc/package.json | 2 +- packages/typedoc-github-wiki-theme/package.json | 2 +- packages/typedoc-gitlab-wiki-theme/package.json | 2 +- packages/typedoc-plugin-frontmatter/package.json | 2 +- packages/typedoc-plugin-markdown/CHANGELOG.md | 15 +++++++++++++++ packages/typedoc-plugin-markdown/package.json | 2 +- packages/typedoc-plugin-remark/package.json | 2 +- packages/typedoc-vitepress-theme/package.json | 2 +- 12 files changed, 22 insertions(+), 30 deletions(-) delete mode 100644 .changeset/big-teachers-shave.md delete mode 100644 .changeset/chatty-cheetahs-love.md delete mode 100644 .changeset/eight-meals-camp.md delete mode 100644 .changeset/small-lizards-float.md diff --git a/.changeset/big-teachers-shave.md b/.changeset/big-teachers-shave.md deleted file mode 100644 index 5c4bdbc74..000000000 --- a/.changeset/big-teachers-shave.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'typedoc-plugin-markdown': minor ---- - -- Implemented typedoc 0.27 compatibility support. -- Exposed "typeDeclarationVisibility" option to provide a "compact" output structure (#703). -- Exposed "pageTitleTemplates" option that accepts a string with placeholder or function arguments to control page titles (#715). diff --git a/.changeset/chatty-cheetahs-love.md b/.changeset/chatty-cheetahs-love.md deleted file mode 100644 index 02fa590cd..000000000 --- a/.changeset/chatty-cheetahs-love.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': minor ---- - -- Exposed formatting with prettier options "formatWithPrettier" and "prettierConfigFile" that enables additional formatting of output if Prettier is installed on a project. diff --git a/.changeset/eight-meals-camp.md b/.changeset/eight-meals-camp.md deleted file mode 100644 index 75ad11cc7..000000000 --- a/.changeset/eight-meals-camp.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'typedoc-plugin-markdown': patch ---- - -- Improved structure of curried and overloaded signatures (#714) (#718) -- The "hideGroupHeadings" option respects group order (#716) diff --git a/.changeset/small-lizards-float.md b/.changeset/small-lizards-float.md deleted file mode 100644 index 488dc51cc..000000000 --- a/.changeset/small-lizards-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': patch ---- - -- Handle Optional types correctly (#719). diff --git a/packages/docusaurus-plugin-typedoc/package.json b/packages/docusaurus-plugin-typedoc/package.json index 42bf06ba3..7cae26f00 100644 --- a/packages/docusaurus-plugin-typedoc/package.json +++ b/packages/docusaurus-plugin-typedoc/package.json @@ -20,7 +20,7 @@ }, "homepage": "http://typedoc-plugin-markdown.org/plugins/docusaurus", "peerDependencies": { - "typedoc-plugin-markdown": ">=4.0.0" + "typedoc-plugin-markdown": ">=4.3.0" }, "scripts": { "lint": "eslint ./src", diff --git a/packages/typedoc-github-wiki-theme/package.json b/packages/typedoc-github-wiki-theme/package.json index 03951af53..2b07e3671 100644 --- a/packages/typedoc-github-wiki-theme/package.json +++ b/packages/typedoc-github-wiki-theme/package.json @@ -31,7 +31,7 @@ "author": "Thomas Grey", "license": "MIT", "peerDependencies": { - "typedoc-plugin-markdown": ">=4.1.0" + "typedoc-plugin-markdown": ">=4.3.0" }, "keywords": [ "typedoc", diff --git a/packages/typedoc-gitlab-wiki-theme/package.json b/packages/typedoc-gitlab-wiki-theme/package.json index e97c124d3..5dac4a5ad 100644 --- a/packages/typedoc-gitlab-wiki-theme/package.json +++ b/packages/typedoc-gitlab-wiki-theme/package.json @@ -31,7 +31,7 @@ "author": "Thomas Grey", "license": "MIT", "peerDependencies": { - "typedoc-plugin-markdown": ">=4.1.0" + "typedoc-plugin-markdown": ">=4.3.0" }, "keywords": [ "typedoc", diff --git a/packages/typedoc-plugin-frontmatter/package.json b/packages/typedoc-plugin-frontmatter/package.json index 5e28fce62..e105e690e 100644 --- a/packages/typedoc-plugin-frontmatter/package.json +++ b/packages/typedoc-plugin-frontmatter/package.json @@ -34,7 +34,7 @@ "yaml": "^2.3.4" }, "peerDependencies": { - "typedoc-plugin-markdown": ">=4.1.0" + "typedoc-plugin-markdown": ">=4.3.0" }, "keywords": [ "frontmatter", diff --git a/packages/typedoc-plugin-markdown/CHANGELOG.md b/packages/typedoc-plugin-markdown/CHANGELOG.md index e086dae8f..1b034b857 100644 --- a/packages/typedoc-plugin-markdown/CHANGELOG.md +++ b/packages/typedoc-plugin-markdown/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 4.3.0 + +### Minor Changes + +- Implemented typedoc 0.27 compatibility support. +- Exposed "typeDeclarationVisibility" option to provide a "compact" output structure ([#703](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/703)). +- Exposed "pageTitleTemplates" option that accepts a string with placeholder or function arguments to control page titles ([#715](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/715)). +- Exposed formatting with prettier options "formatWithPrettier" and "prettierConfigFile" that enables additional formatting of output if Prettier is installed on a project. + +### Patch Changes + +- Improved structure of curried and overloaded signatures ([#714](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/714)) ([#718](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/718)) +- The "hideGroupHeadings" option respects group order ([#716](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/716)) +- Handle Optional types correctly ([#719](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/719)). + ## 4.3 Pre-release (2024-11-26) This release introduces support for TypeDoc 0.27 and some additional UX features and improvements in addition to some bug fixes. diff --git a/packages/typedoc-plugin-markdown/package.json b/packages/typedoc-plugin-markdown/package.json index 6d5e6025a..c4af45bcf 100644 --- a/packages/typedoc-plugin-markdown/package.json +++ b/packages/typedoc-plugin-markdown/package.json @@ -1,6 +1,6 @@ { "name": "typedoc-plugin-markdown", - "version": "4.2.10", + "version": "4.3.0", "description": "A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.", "exports": { ".": "./dist/index.js" diff --git a/packages/typedoc-plugin-remark/package.json b/packages/typedoc-plugin-remark/package.json index 58544fee1..cddcac2bd 100644 --- a/packages/typedoc-plugin-remark/package.json +++ b/packages/typedoc-plugin-remark/package.json @@ -35,7 +35,7 @@ "to-vfile": "^8.0.0" }, "peerDependencies": { - "typedoc-plugin-markdown": ">=4.1.0" + "typedoc-plugin-markdown": ">=4.3.0" }, "keywords": [ "typedoc", diff --git a/packages/typedoc-vitepress-theme/package.json b/packages/typedoc-vitepress-theme/package.json index 30b264805..d33e44a5d 100644 --- a/packages/typedoc-vitepress-theme/package.json +++ b/packages/typedoc-vitepress-theme/package.json @@ -30,7 +30,7 @@ "test:update": "npm run build && npm test -- -u" }, "peerDependencies": { - "typedoc-plugin-markdown": ">=4.1.0" + "typedoc-plugin-markdown": ">=4.3.0" }, "license": "MIT", "keywords": [