Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mdx-js/eslint-mdx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0
Choose a base ref
...
head repository: mdx-js/eslint-mdx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.1
Choose a head ref
  • 4 commits
  • 8 files changed
  • 2 contributors

Commits on Jun 20, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    JounQin JounQin
    Copy the full SHA
    4283717 View commit details

Commits on Jun 28, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6b4fea7 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    JounQin JounQin
    Copy the full SHA
    01ef9c3 View commit details

Commits on Jun 29, 2022

  1. chore: release package(s)

    wooorm committed Jun 29, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    wooorm Titus
    Copy the full SHA
    6a39984 View commit details
Showing with 3,180 additions and 3,184 deletions.
  1. +20 −3 CHANGELOG.md
  2. +3 −2 lerna.json
  3. +12 −12 package.json
  4. +11 −0 packages/eslint-mdx/CHANGELOG.md
  5. +5 −3 packages/eslint-mdx/package.json
  6. +11 −0 packages/eslint-plugin-mdx/CHANGELOG.md
  7. +3 −3 packages/eslint-plugin-mdx/package.json
  8. +3,115 −3,161 yarn.lock
23 changes: 20 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,23 +3,40 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/mdx-js/eslint-mdx/compare/v2.0.0-next.6...v2.0.0) (2022-06-19)
## [2.0.1](https://github.com/mdx-js/eslint-mdx/compare/v2.0.0...v2.0.1) (2022-06-29)

**Note:** Version bump only for package @mdx-js/eslint

### Bug Fixes

* add missing unist-util-visit and vfile deps ([#405](https://github.com/mdx-js/eslint-mdx/issues/405)) ([6b4fea7](https://github.com/mdx-js/eslint-mdx/commit/6b4fea75c5b63c37b066d6fbd0a3abdf497ebc26))




# [2.0.0-next.6](https://github.com/mdx-js/eslint-mdx/compare/v2.0.0-next.5...v2.0.0-next.6) (2022-06-19)

# [2.0.0](https://github.com/mdx-js/eslint-mdx/compare/v2.0.0-next.6...v2.0.0) (2022-06-19)


**BREAKING CHANGES**

1. experimentally support remark-mdx@2
2. drop `parser` option support, please use `overrides` of ESLint config instead
3. drop Node < 12.20
4. drop ESLint < 8

### Bug Fixes

* same markdown processor cached for .md and .mdx ([#401](https://github.com/mdx-js/eslint-mdx/issues/401)) ([c1b4671](https://github.com/mdx-js/eslint-mdx/commit/c1b467120db47ee43510785ceea942566968c597))


### Misc

- fix: throw error with correct loc (#382)
- fix: upgrade micromark-util-events-to-acorn (#383)
- fix: line/column sorted error output (#390)
- fix: node ES module + worker issue on Windows (#392)
- fix: restore first level jsx AST and tokens (#394)
- fix: handle node and children recursively (#396)


# [1.17.0](https://github.com/mdx-js/eslint-mdx/compare/v1.16.0...v1.17.0) (2022-03-21)
5 changes: 3 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json.schemastore.org/lerna",
"version": "2.0.0",
"version": "2.0.1",
"npmClient": "yarn",
"useWorkspaces": true,
"changelog": {
@@ -14,7 +14,8 @@
"version": {
"allowBranch": [
"master",
"next"
"next",
"release-v*"
]
},
"publish": {
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -26,23 +26,23 @@
"typecov": "type-coverage"
},
"devDependencies": {
"@1stg/lib-config": "^6.1.3",
"@types/eslint": "^8.4.2",
"@1stg/lib-config": "^6.4.0",
"@types/eslint": "^8.4.3",
"@types/eslint-plugin-markdown": "^2.0.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/react": "^18.0.10",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/unist": "^2.0.6",
"lerna": "^4.0.0",
"lerna": "^5.1.6",
"patch-package": "^6.4.7",
"react": "^18.1.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.0",
"type-coverage": "^2.21.1",
"typescript": "^4.6.4"
"react": "^18.2.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"type-coverage": "^2.21.2",
"typescript": "^4.7.4"
},
"resolutions": {
"prettier": "^2.6.2"
"prettier": "^2.7.1"
},
"commitlint": {
"extends": [
11 changes: 11 additions & 0 deletions packages/eslint-mdx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.0.1](https://github.com/mdx-js/eslint-mdx/compare/v2.0.0...v2.0.1) (2022-06-29)


### Bug Fixes

* add missing unist-util-visit and vfile deps ([#405](https://github.com/mdx-js/eslint-mdx/issues/405)) ([6b4fea7](https://github.com/mdx-js/eslint-mdx/commit/6b4fea75c5b63c37b066d6fbd0a3abdf497ebc26))





# [2.0.0](https://github.com/mdx-js/eslint-mdx/compare/v2.0.0-next.6...v2.0.0) (2022-06-19)

**Note:** Version bump only for package eslint-mdx
8 changes: 5 additions & 3 deletions packages/eslint-mdx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-mdx",
"version": "2.0.0",
"version": "2.0.1",
"description": "ESLint Parser for MDX",
"repository": "git+https://github.com/mdx-js/eslint-mdx.git",
"homepage": "https://github.com/mdx-js/eslint-mdx/blob/master/packages/eslint-mdx",
@@ -32,11 +32,13 @@
"dependencies": {
"cosmiconfig": "^7.0.1",
"estree-util-visit": "^1.1.0",
"remark-mdx": "^2.1.1",
"remark-mdx": "^2.1.2",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"synckit": "^0.7.1",
"tslib": "^2.4.0",
"unified": "^10.1.2"
"unified": "^10.1.2",
"unist-util-visit": "^4.1.0",
"vfile": "^5.3.4"
}
}
11 changes: 11 additions & 0 deletions packages/eslint-plugin-mdx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.0.1](https://github.com/mdx-js/eslint-mdx/compare/v2.0.0...v2.0.1) (2022-06-29)


### Bug Fixes

* add missing unist-util-visit and vfile deps ([#405](https://github.com/mdx-js/eslint-mdx/issues/405)) ([6b4fea7](https://github.com/mdx-js/eslint-mdx/commit/6b4fea75c5b63c37b066d6fbd0a3abdf497ebc26))





# [2.0.0](https://github.com/mdx-js/eslint-mdx/compare/v2.0.0-next.6...v2.0.0) (2022-06-19)

**Note:** Version bump only for package eslint-plugin-mdx
6 changes: 3 additions & 3 deletions packages/eslint-plugin-mdx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-mdx",
"version": "2.0.0",
"version": "2.0.1",
"description": "ESLint Plugin for MDX",
"repository": "git+https://github.com/mdx-js/eslint-mdx.git",
"homepage": "https://github.com/mdx-js/eslint-mdx/blob/master/packages/eslint-plugin-mdx",
@@ -31,9 +31,9 @@
"eslint": ">=8.0.0"
},
"dependencies": {
"eslint-mdx": "^2.0.0",
"eslint-mdx": "^2.0.1",
"eslint-plugin-markdown": "^2.2.1",
"remark-mdx": "^2.1.1",
"remark-mdx": "^2.1.2",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"tslib": "^2.4.0",
Loading