From 256c0b445e739c346464eab2c39dc960760ef69b Mon Sep 17 00:00:00 2001 From: "Alexey Mulyukin (alexprey)" Date: Tue, 14 Dec 2021 19:01:47 +0300 Subject: [PATCH] update changelog & readme before publish --- CHANGELOG.md | 13 +++++++++++++ README.md | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5693735..34afb38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to the "svelte-intellisense" extension will be documented in Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +## [4.2.0] 14.12.2021 + +- 🔒 **[Fixed]** Upgrade all dependecies to latest version to solve known vulnarability issues. +- ✔ **[Added]** Add support ES6 default value assignment for method parameter [Issue #75](https://github.com/alexprey/sveltedoc-parser/issues/75). Thanks for @ekhaled. +- ✔ **[Added]** Add support of method parsing when it assigned to identifier [Issue #78](https://github.com/alexprey/sveltedoc-parser/issues/78). Thanks for @ekhaled. +- ✔ **[Added]** Extend typings to support `self` and `trusted` event modifiers [Issue #80]. +- ✔ **[Added]** Introduce `JSDocTypeFunction` to support functions types in variable definitions and provide details about function parameters and methods. +- ✔ **[Added]** Extend `JSDocType` to support new `JSDocTypeFunction` +- ✔ **[Added]** Improve type infering from assigned value. Currently support simple infering: `array`, `object`, `function`. +- 🛠 **[Fixed]** Fix the [Issue #67](https://github.com/alexprey/sveltedoc-parser/issues/67), [Issue #69](https://github.com/alexprey/sveltedoc-parser/issues/69): specifier comments are not parsed properly; Thanks to @ekhaled +- 🛠 **[Fixed]** Fix the [Issue #72](https://github.com/alexprey/sveltedoc-parser/issues/72): Module context scripts look for the wrong attribute +- 🛠 **[Fixed]** Fix the [Issue #83](https://github.com/alexprey/sveltedoc-parser/issues/83): Default value and keywords of exported aliases not merged. + ## [4.1.0] 19.02.2021 - 🎉 **[Misc]** Update the ReadMe by [@soft-decay](https://github.com/soft-decay). diff --git a/README.md b/README.md index 73c9cbd..32717a0 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,19 @@ Generate a JSON documentation for a Svelte file. ## Changelog +### [4.2.0] 14.12.2021 + +- 🔒 **[Fixed]** Upgrade all dependecies to latest version to solve known vulnarability issues. +- ✔ **[Added]** Add support ES6 default value assignment for method parameter [Issue #75](https://github.com/alexprey/sveltedoc-parser/issues/75). Thanks for @ekhaled. +- ✔ **[Added]** Add support of method parsing when it assigned to identifier [Issue #78](https://github.com/alexprey/sveltedoc-parser/issues/78). Thanks for @ekhaled. +- ✔ **[Added]** Extend typings to support `self` and `trusted` event modifiers [Issue #80]. +- ✔ **[Added]** Introduce `JSDocTypeFunction` to support functions types in variable definitions and provide details about function parameters and methods. +- ✔ **[Added]** Extend `JSDocType` to support new `JSDocTypeFunction` +- ✔ **[Added]** Improve type infering from assigned value. Currently support simple infering: `array`, `object`, `function`. +- 🛠 **[Fixed]** Fix the [Issue #67](https://github.com/alexprey/sveltedoc-parser/issues/67), [Issue #69](https://github.com/alexprey/sveltedoc-parser/issues/69): specifier comments are not parsed properly; Thanks to @ekhaled +- 🛠 **[Fixed]** Fix the [Issue #72](https://github.com/alexprey/sveltedoc-parser/issues/72): Module context scripts look for the wrong attribute +- 🛠 **[Fixed]** Fix the [Issue #83](https://github.com/alexprey/sveltedoc-parser/issues/83): Default value and keywords of exported aliases not merged. + ### [4.1.0] 19.02.2021 - 🎉 **[Misc]** Update the ReadMe by [@soft-decay](https://github.com/soft-decay).