Skip to content

Commit dd311fb

Browse files
Version Packages
1 parent 9b3b9ce commit dd311fb

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

packages/language-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mdx-js/language-service",
3-
"version": "0.6.2",
3+
"version": "0.7.0",
44
"type": "module",
55
"description": "MDX support for Volar",
66
"repository": {

packages/typescript-plugin/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- [#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
8+
9+
- [#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
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)! - Use jiti to load ESM synchronously
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+
19+
- 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)]:
20+
- @mdx-js/language-service@0.7.0
21+
322
## 0.0.8
423

524
### Patch Changes

packages/typescript-plugin/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/typescript-plugin",
3-
"version": "0.0.8",
3+
"version": "0.1.0",
44
"type": "module",
55
"description": "A TypeScript plugin to support language features in MDX files",
66
"repository": {
@@ -34,7 +34,7 @@
3434
"test": "npm pack && npm run test-api"
3535
},
3636
"dependencies": {
37-
"@mdx-js/language-service": "0.6.2",
37+
"@mdx-js/language-service": "0.7.0",
3838
"@volar/typescript": "~2.4.0",
3939
"jiti": "^2.0.0",
4040
"remark-frontmatter": "^5.0.0",

packages/vscode-mdx/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.8.14
4+
5+
### Patch Changes
6+
7+
- [#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
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)! - Add support for `recma-export-filepath`, `rehype-mdx-title`, and `remark-mdx-frontmatter`
10+
311
## 1.8.13
412

513
### Patch Changes

packages/vscode-mdx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-mdx",
3-
"version": "1.8.13",
3+
"version": "1.8.14",
44
"displayName": "MDX",
55
"description": "Language support for MDX",
66
"categories": [

0 commit comments

Comments
 (0)