Skip to content

Commit f20fb8e

Browse files
Version Packages (#498)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c5425c7 commit f20fb8e

File tree

15 files changed

+66
-50
lines changed

15 files changed

+66
-50
lines changed

.changeset/eighty-cats-glow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/legal-crews-visit.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/lucky-chicken-ring.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/olive-tips-appear.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/petite-keys-count.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/sad-melons-play.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/social-items-cut.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/language-server/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @mdx-js/language-server
22

3+
## 0.6.0
4+
5+
### Minor Changes
6+
7+
- [#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
8+
9+
- [#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
10+
11+
### Patch Changes
12+
13+
- [#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
14+
15+
- [#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`
16+
17+
- 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)]:
18+
- @mdx-js/language-service@0.7.0
19+
320
## 0.5.2
421

522
### Patch Changes

packages/language-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mdx-js/language-server",
3-
"version": "0.5.2",
3+
"version": "0.6.0",
44
"type": "module",
55
"description": "A language server for MDX",
66
"repository": {
@@ -31,7 +31,7 @@
3131
"test": "npm run test-api"
3232
},
3333
"dependencies": {
34-
"@mdx-js/language-service": "0.6.2",
34+
"@mdx-js/language-service": "0.7.0",
3535
"@volar/language-server": "~2.4.0",
3636
"jiti": "^2.0.0",
3737
"remark-frontmatter": "^5.0.0",

packages/language-service/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @mdx-js/language-service
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- [#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
8+
9+
- [#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`
10+
11+
- [#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
12+
13+
### Patch Changes
14+
15+
- [#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
16+
17+
- [#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`
18+
319
## 0.6.2
420

521
### Patch Changes

0 commit comments

Comments
 (0)