From 73bb2a43f85d70f61d89eb804adf695386a1f263 Mon Sep 17 00:00:00 2001 From: Birk Skyum Date: Fri, 5 Aug 2022 17:06:26 +0200 Subject: [PATCH] chore(release): 14.0.0-alpha.0 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db5de4589..3cb31b080 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,35 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [14.0.0-alpha.0](https://github.com/documentationjs/documentation/compare/v13.2.5...v14.0.0-alpha.0) (2022-08-05) + + +### ⚠ BREAKING CHANGES + +* all Extensions whould contains '.' so that mean if you have just 'ts' then need to convert to '.ts' +* external parameter was removed +Migration plan propose to move all external resources to input usages +Motivation: packages has many inputs which describe in package.json +so that mean need each time to parse all package.json of exsternal resources to understand which etry point need to pick. +But it is base on guesses because entry point may could not contains a documentation and the best way to handle it manualy. +* The serve parametr was remove, you can use any other tools which could be refresh and store your html site +The private parameter has removed, use a access +* documentation.js will now require node 14 or later. + +### Bug Fixes + +* add micromark dependencies fixed [#1381](https://github.com/documentationjs/documentation/issues/1381) ([3ba8165](https://github.com/documentationjs/documentation/commit/3ba81659d7db5d9393fa083287d91db93d6aab5e)) +* add TS and TSX as default extensions fixed [#1377](https://github.com/documentationjs/documentation/issues/1377) ([f0cb1c0](https://github.com/documentationjs/documentation/commit/f0cb1c0bb1d97228c7baab453e50e5dbe283ea46)) +* external was removed as prefer of input usages ([e3c59d7](https://github.com/documentationjs/documentation/commit/e3c59d77e4e3cf6e5fabab7c0d853a06a77f6288)) +* html report, it is return html if output is not defined ([0975871](https://github.com/documentationjs/documentation/commit/0975871b34b8cc0af74e0aebb43f2727e0ab9960)) +* remove private parameter, use access (BREAKING CHANGES) ([874069c](https://github.com/documentationjs/documentation/commit/874069c0b3647dad413667f61d05f6d39992995d)) +* The server parameter deprecated and will be remove in next Major version fixed [#1413](https://github.com/documentationjs/documentation/issues/1413) ([810e08b](https://github.com/documentationjs/documentation/commit/810e08b6fdb1076a1758bff831a9f42890f0f25f)) +* use process.cwd vs `.` which can fail ([4cc70a5](https://github.com/documentationjs/documentation/commit/4cc70a5aed0c233cdcc72077733f9da8450be386)) + + +* replace module-deps-sortable on own implementation to control how parse files ([abb781a](https://github.com/documentationjs/documentation/commit/abb781a69ac69423da11346f62d7064382bb7b74)) +* Update Node minimum version to 14 ([fc0bb3c](https://github.com/documentationjs/documentation/commit/fc0bb3cd885b9577e6f1f6935e15d4ec24f89114)) + ### [13.2.5](https://github.com/documentationjs/documentation/compare/v13.2.4...v13.2.5) (2021-04-24) diff --git a/package-lock.json b/package-lock.json index 9093a7bb2..4a32b7f33 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "documentation", - "version": "13.2.5", + "version": "14.0.0-alpha.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "documentation", - "version": "13.2.5", + "version": "14.0.0-alpha.0", "license": "ISC", "dependencies": { "@babel/core": "^7.18.10", diff --git a/package.json b/package.json index 7d9d06b5b..83bedc7e4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "documentation", "description": "a documentation generator", - "version": "13.2.5", + "version": "14.0.0-alpha.0", "author": "Tom MacWright", "homepage": "https://documentation.js.org", "type": "module",