Skip to content

Commit ec69167

Browse files
Version Packages (#379)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 3d22be4 commit ec69167

14 files changed

+57
-53
lines changed

.changeset/afraid-dodos-rhyme.md

-5
This file was deleted.

.changeset/beige-dolphins-shave.md

-6
This file was deleted.

.changeset/four-cats-scream.md

-7
This file was deleted.

.changeset/plenty-cherries-move.md

-7
This file was deleted.

.changeset/rare-cycles-shave.md

-5
This file was deleted.

.changeset/real-eels-dance.md

-6
This file was deleted.

.changeset/ten-suns-hammer.md

-6
This file was deleted.

.changeset/twelve-cheetahs-occur.md

-5
This file was deleted.

packages/language-server/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @mdx-js/language-server
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- [`46bfd50`](https://github.com/mdx-js/mdx-analyzer/commit/46bfd50323f7d63037a99aea454c0cb67f1a4176) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Add customization options for markdown validation.
8+
9+
- [#384](https://github.com/mdx-js/mdx-analyzer/pull/384) [`b9a910e`](https://github.com/mdx-js/mdx-analyzer/commit/b9a910e4d9e87535e2973f2d7b5704d0489bc2e0) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Support the commands `mdx/toggleDelete`, `mdx/toggleEmphasis`, `mdx/toggleInlineCode`, and `mdx/toggleStrong`.
10+
11+
### Patch Changes
12+
13+
- [#387](https://github.com/mdx-js/mdx-analyzer/pull/387) [`4070c63`](https://github.com/mdx-js/mdx-analyzer/commit/4070c6374cb55caa64fdda697ee56b9328c6038d) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Support `tsconfig.json` option `mdx.checkMdx`
14+
15+
- [`46bfd50`](https://github.com/mdx-js/mdx-analyzer/commit/46bfd50323f7d63037a99aea454c0cb67f1a4176) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Update to Volar 2.0.0-alpha.14.
16+
17+
- [#381](https://github.com/mdx-js/mdx-analyzer/pull/381) [`ceb9a0b`](https://github.com/mdx-js/mdx-analyzer/commit/ceb9a0b587e9b0cd236a5e465c2aa1b24650a803) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Implement Volar’s document drop edits
18+
19+
- Updated dependencies [[`135f633`](https://github.com/mdx-js/mdx-analyzer/commit/135f6339d345a191e4bfbdb25450813cbf446152), [`4070c63`](https://github.com/mdx-js/mdx-analyzer/commit/4070c6374cb55caa64fdda697ee56b9328c6038d), [`46bfd50`](https://github.com/mdx-js/mdx-analyzer/commit/46bfd50323f7d63037a99aea454c0cb67f1a4176), [`b9a910e`](https://github.com/mdx-js/mdx-analyzer/commit/b9a910e4d9e87535e2973f2d7b5704d0489bc2e0), [`ceb9a0b`](https://github.com/mdx-js/mdx-analyzer/commit/ceb9a0b587e9b0cd236a5e465c2aa1b24650a803)]:
20+
- @mdx-js/language-service@0.5.0
21+
322
## 0.2.2
423

524
### Patch Changes

packages/language-server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mdx-js/language-server",
3-
"version": "0.2.2",
3+
"version": "0.3.0",
44
"type": "module",
55
"description": "A language server for MDX",
66
"repository": {
@@ -32,7 +32,7 @@
3232
"test": "npm run test-api"
3333
},
3434
"dependencies": {
35-
"@mdx-js/language-service": "0.4.0",
35+
"@mdx-js/language-service": "0.5.0",
3636
"@volar/language-server": "2.0.0-alpha.14",
3737
"load-plugin": "^5.0.0",
3838
"remark-frontmatter": "^5.0.0",

packages/language-service/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @mdx-js/language-service
22

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- [#384](https://github.com/mdx-js/mdx-analyzer/pull/384) [`b9a910e`](https://github.com/mdx-js/mdx-analyzer/commit/b9a910e4d9e87535e2973f2d7b5704d0489bc2e0) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Support the commands `mdx/toggleDelete`, `mdx/toggleEmphasis`, `mdx/toggleInlineCode`, and `mdx/toggleStrong`.
8+
9+
### Patch Changes
10+
11+
- [#383](https://github.com/mdx-js/mdx-analyzer/pull/383) [`135f633`](https://github.com/mdx-js/mdx-analyzer/commit/135f6339d345a191e4bfbdb25450813cbf446152) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Expose function `resolveRemarkPlugins`
12+
13+
- [#387](https://github.com/mdx-js/mdx-analyzer/pull/387) [`4070c63`](https://github.com/mdx-js/mdx-analyzer/commit/4070c6374cb55caa64fdda697ee56b9328c6038d) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Support `tsconfig.json` option `mdx.checkMdx`
14+
15+
- [`46bfd50`](https://github.com/mdx-js/mdx-analyzer/commit/46bfd50323f7d63037a99aea454c0cb67f1a4176) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Update to Volar 2.0.0-alpha.14.
16+
17+
- [#381](https://github.com/mdx-js/mdx-analyzer/pull/381) [`ceb9a0b`](https://github.com/mdx-js/mdx-analyzer/commit/ceb9a0b587e9b0cd236a5e465c2aa1b24650a803) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Implement Volar’s document drop edits
18+
319
## 0.4.0
420

521
### Minor Changes

packages/language-service/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mdx-js/language-service",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"type": "module",
55
"description": "MDX Volar support",
66
"repository": {

packages/vscode-mdx/CHANGELOG.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 1.7.0
4+
5+
### Minor Changes
6+
7+
- [`46bfd50`](https://github.com/mdx-js/mdx-analyzer/commit/46bfd50323f7d63037a99aea454c0cb67f1a4176) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Add customization options for markdown validation.
8+
9+
- [#384](https://github.com/mdx-js/mdx-analyzer/pull/384) [`b9a910e`](https://github.com/mdx-js/mdx-analyzer/commit/b9a910e4d9e87535e2973f2d7b5704d0489bc2e0) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Support the commands `mdx.toggleDelete`, `mdx.toggleEmphasis`, `mdx.toggleInlineCode`, and `mdx.toggleStrong`.
10+
11+
- [#381](https://github.com/mdx-js/mdx-analyzer/pull/381) [`ceb9a0b`](https://github.com/mdx-js/mdx-analyzer/commit/ceb9a0b587e9b0cd236a5e465c2aa1b24650a803) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Use the language server to provide drop edits.
12+
13+
### Patch Changes
14+
15+
- [#387](https://github.com/mdx-js/mdx-analyzer/pull/387) [`4070c63`](https://github.com/mdx-js/mdx-analyzer/commit/4070c6374cb55caa64fdda697ee56b9328c6038d) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Support `tsconfig.json` option `mdx.checkMdx`
16+
17+
- [`46bfd50`](https://github.com/mdx-js/mdx-analyzer/commit/46bfd50323f7d63037a99aea454c0cb67f1a4176) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Update to Volar 2.0.0-alpha.14.
18+
319
## 1.6.1
420

521
### Patch Changes
@@ -132,8 +148,8 @@
132148
//
133149
},
134150
"mdx": {
135-
"plugins": [["remark-frontmatter", ["toml", "yaml"]], "remark-gfm"]
136-
}
151+
"plugins": [["remark-frontmatter", ["toml", "yaml"]], "remark-gfm"],
152+
},
137153
}
138154
```
139155

packages/vscode-mdx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-mdx",
3-
"version": "1.6.1",
3+
"version": "1.7.0",
44
"displayName": "MDX",
55
"description": "Language support for MDX",
66
"categories": [

0 commit comments

Comments
 (0)