diff --git a/.changeset/eighty-cats-glow.md b/.changeset/eighty-cats-glow.md deleted file mode 100644 index f767ce95..00000000 --- a/.changeset/eighty-cats-glow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@mdx-js/typescript-plugin': minor ---- - -Make the plugin synchronous diff --git a/.changeset/legal-crews-visit.md b/.changeset/legal-crews-visit.md deleted file mode 100644 index a7c459ae..00000000 --- a/.changeset/legal-crews-visit.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@mdx-js/typescript-plugin': minor -'@mdx-js/language-service': minor -'@mdx-js/language-server': minor ---- - -Remove support for Node.js 18 diff --git a/.changeset/lucky-chicken-ring.md b/.changeset/lucky-chicken-ring.md deleted file mode 100644 index a10afe7f..00000000 --- a/.changeset/lucky-chicken-ring.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@mdx-js/language-service': minor ---- - -Replace `resolveRemarkPlugins` with `remarkPlugins` diff --git a/.changeset/olive-tips-appear.md b/.changeset/olive-tips-appear.md deleted file mode 100644 index d33fdfbe..00000000 --- a/.changeset/olive-tips-appear.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@mdx-js/language-service': patch -'@mdx-js/language-server': patch -'@mdx-js/typescript-plugin': patch -'vscode-mdx': patch ---- - -Enhance support for auto-imports diff --git a/.changeset/petite-keys-count.md b/.changeset/petite-keys-count.md deleted file mode 100644 index d7e6e05e..00000000 --- a/.changeset/petite-keys-count.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@mdx-js/typescript-plugin': minor -'@mdx-js/language-server': minor ---- - -Use jiti to load ESM synchronously diff --git a/.changeset/sad-melons-play.md b/.changeset/sad-melons-play.md deleted file mode 100644 index 09ba72ae..00000000 --- a/.changeset/sad-melons-play.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@mdx-js/typescript-plugin': patch -'@mdx-js/language-service': patch -'@mdx-js/language-server': patch -'vscode-mdx': patch ---- - -Add support for `recma-export-filepath`, `rehype-mdx-title`, and `remark-mdx-frontmatter` diff --git a/.changeset/social-items-cut.md b/.changeset/social-items-cut.md deleted file mode 100644 index 4b78839b..00000000 --- a/.changeset/social-items-cut.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@mdx-js/language-service': minor ---- - -Make resolveRemarkPlugins synchronous diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index 55646876..dc8291d1 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,22 @@ # @mdx-js/language-server +## 0.6.0 + +### Minor Changes + +- [#499](https://github.com/mdx-js/mdx-analyzer/pull/499) [`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Remove support for Node.js 18 + +- [#500](https://github.com/mdx-js/mdx-analyzer/pull/500) [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Use jiti to load ESM synchronously + +### Patch Changes + +- [#491](https://github.com/mdx-js/mdx-analyzer/pull/491) [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Enhance support for auto-imports + +- [#501](https://github.com/mdx-js/mdx-analyzer/pull/501) [`9b3b9ce`](https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Add support for `recma-export-filepath`, `rehype-mdx-title`, and `remark-mdx-frontmatter` + +- Updated dependencies [[`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b), [`9b3b9ce`](https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80), [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e), [`9b3b9ce`](https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80), [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6)]: + - @mdx-js/language-service@0.7.0 + ## 0.5.2 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 0bc525bb..1eca1470 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@mdx-js/language-server", - "version": "0.5.2", + "version": "0.6.0", "type": "module", "description": "A language server for MDX", "repository": { @@ -31,7 +31,7 @@ "test": "npm run test-api" }, "dependencies": { - "@mdx-js/language-service": "0.6.2", + "@mdx-js/language-service": "0.7.0", "@volar/language-server": "~2.4.0", "jiti": "^2.0.0", "remark-frontmatter": "^5.0.0", diff --git a/packages/language-service/CHANGELOG.md b/packages/language-service/CHANGELOG.md index f7e08758..42007063 100644 --- a/packages/language-service/CHANGELOG.md +++ b/packages/language-service/CHANGELOG.md @@ -1,5 +1,21 @@ # @mdx-js/language-service +## 0.7.0 + +### Minor Changes + +- [#499](https://github.com/mdx-js/mdx-analyzer/pull/499) [`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Remove support for Node.js 18 + +- [#501](https://github.com/mdx-js/mdx-analyzer/pull/501) [`9b3b9ce`](https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Replace `resolveRemarkPlugins` with `remarkPlugins` + +- [#500](https://github.com/mdx-js/mdx-analyzer/pull/500) [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Make resolveRemarkPlugins synchronous + +### Patch Changes + +- [#491](https://github.com/mdx-js/mdx-analyzer/pull/491) [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Enhance support for auto-imports + +- [#501](https://github.com/mdx-js/mdx-analyzer/pull/501) [`9b3b9ce`](https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Add support for `recma-export-filepath`, `rehype-mdx-title`, and `remark-mdx-frontmatter` + ## 0.6.2 ### Patch Changes diff --git a/packages/language-service/package.json b/packages/language-service/package.json index 9b08121b..a96a0ec7 100644 --- a/packages/language-service/package.json +++ b/packages/language-service/package.json @@ -1,6 +1,6 @@ { "name": "@mdx-js/language-service", - "version": "0.6.2", + "version": "0.7.0", "type": "module", "description": "MDX support for Volar", "repository": { diff --git a/packages/typescript-plugin/CHANGELOG.md b/packages/typescript-plugin/CHANGELOG.md index 1a8c21e5..324e8a60 100644 --- a/packages/typescript-plugin/CHANGELOG.md +++ b/packages/typescript-plugin/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 0.1.0 + +### Minor Changes + +- [#500](https://github.com/mdx-js/mdx-analyzer/pull/500) [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Make the plugin synchronous + +- [#499](https://github.com/mdx-js/mdx-analyzer/pull/499) [`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Remove support for Node.js 18 + +- [#500](https://github.com/mdx-js/mdx-analyzer/pull/500) [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Use jiti to load ESM synchronously + +### Patch Changes + +- [#491](https://github.com/mdx-js/mdx-analyzer/pull/491) [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Enhance support for auto-imports + +- [#501](https://github.com/mdx-js/mdx-analyzer/pull/501) [`9b3b9ce`](https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Add support for `recma-export-filepath`, `rehype-mdx-title`, and `remark-mdx-frontmatter` + +- Updated dependencies [[`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b), [`9b3b9ce`](https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80), [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e), [`9b3b9ce`](https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80), [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6)]: + - @mdx-js/language-service@0.7.0 + ## 0.0.8 ### Patch Changes diff --git a/packages/typescript-plugin/package.json b/packages/typescript-plugin/package.json index 723cd591..ecf6d3e5 100644 --- a/packages/typescript-plugin/package.json +++ b/packages/typescript-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@mdx-js/typescript-plugin", - "version": "0.0.8", + "version": "0.1.0", "type": "module", "description": "A TypeScript plugin to support language features in MDX files", "repository": { @@ -34,7 +34,7 @@ "test": "npm pack && npm run test-api" }, "dependencies": { - "@mdx-js/language-service": "0.6.2", + "@mdx-js/language-service": "0.7.0", "@volar/typescript": "~2.4.0", "jiti": "^2.0.0", "remark-frontmatter": "^5.0.0", diff --git a/packages/vscode-mdx/CHANGELOG.md b/packages/vscode-mdx/CHANGELOG.md index be270b56..c15ab67c 100644 --- a/packages/vscode-mdx/CHANGELOG.md +++ b/packages/vscode-mdx/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.8.14 + +### Patch Changes + +- [#491](https://github.com/mdx-js/mdx-analyzer/pull/491) [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Enhance support for auto-imports + +- [#501](https://github.com/mdx-js/mdx-analyzer/pull/501) [`9b3b9ce`](https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Add support for `recma-export-filepath`, `rehype-mdx-title`, and `remark-mdx-frontmatter` + ## 1.8.13 ### Patch Changes diff --git a/packages/vscode-mdx/package.json b/packages/vscode-mdx/package.json index edc2ba87..b290e71b 100644 --- a/packages/vscode-mdx/package.json +++ b/packages/vscode-mdx/package.json @@ -1,6 +1,6 @@ { "name": "vscode-mdx", - "version": "1.8.13", + "version": "1.8.14", "displayName": "MDX", "description": "Language support for MDX", "categories": [