markuplint 5.0.0-rc.6 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.0.0](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.7...v5.0.0) (2026-09-11)
7
+
8
+ **Note:** Version bump only for package markuplint
9
+
10
+ # [5.0.0-rc.7](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.6...v5.0.0-rc.7) (2026-08-31)
11
+
12
+ ### Features
13
+
14
+ - **markuplint:** surface appliedOverrides in --show-config=details ([10ed615](https://github.com/markuplint/markuplint/commit/10ed6157cf99786971ae90551ea0411cecdc8433))
15
+
6
16
  # [5.0.0-rc.6](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.5...v5.0.0-rc.6) (2026-08-30)
7
17
 
8
18
  ### Bug Fixes
@@ -139,6 +139,7 @@ export async function command(files, options, apiOptions) {
139
139
  plugins: configSet.plugins,
140
140
  errors: configSet.errs,
141
141
  ruleDeprecations: configSet.ruleDeprecations,
142
+ appliedOverrides: configSet.appliedOverrides ?? [],
142
143
  };
143
144
  }
144
145
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markuplint",
3
- "version": "5.0.0-rc.6",
3
+ "version": "5.0.0",
4
4
  "description": "An HTML linter for all markup developers",
5
5
  "author": "Yusuke Hirao",
6
6
  "license": "MIT",
@@ -35,17 +35,17 @@
35
35
  "clean": "tsc --build --clean tsconfig.build.json"
36
36
  },
37
37
  "dependencies": {
38
- "@markuplint/cli-utils": "5.0.0-rc.6",
39
- "@markuplint/file-resolver": "5.0.0-rc.6",
40
- "@markuplint/html-parser": "5.0.0-rc.6",
41
- "@markuplint/html-spec": "5.0.0-rc.6",
42
- "@markuplint/i18n": "5.0.0-rc.6",
43
- "@markuplint/ml-ast": "5.0.0-rc.6",
44
- "@markuplint/ml-config": "5.0.0-rc.6",
45
- "@markuplint/ml-core": "5.0.0-rc.6",
46
- "@markuplint/ml-spec": "5.0.0-rc.6",
47
- "@markuplint/rules": "5.0.0-rc.6",
48
- "@markuplint/shared": "5.0.0-rc.6",
38
+ "@markuplint/cli-utils": "5.0.0",
39
+ "@markuplint/file-resolver": "5.0.0",
40
+ "@markuplint/html-parser": "5.0.0",
41
+ "@markuplint/html-spec": "5.0.0",
42
+ "@markuplint/i18n": "5.0.0",
43
+ "@markuplint/ml-ast": "5.0.0",
44
+ "@markuplint/ml-config": "5.0.0",
45
+ "@markuplint/ml-core": "5.0.0",
46
+ "@markuplint/ml-spec": "5.0.0",
47
+ "@markuplint/rules": "5.0.0",
48
+ "@markuplint/shared": "5.0.0",
49
49
  "@types/debug": "4.1.13",
50
50
  "chokidar": "5.0.0",
51
51
  "debug": "4.4.3",
@@ -55,5 +55,5 @@
55
55
  "strip-ansi": "7.2.0",
56
56
  "type-fest": "5.6.0"
57
57
  },
58
- "gitHead": "c02c3a0783eac6b2fb4707be2dc00b88f6219641"
58
+ "gitHead": "c99706fda4c186aeb87b521eaabc5208ac144bbd"
59
59
  }