Skip to content

Commit 04433a6

Browse files
chore: release @intlify/eslint-plugin-vue-i18n (next) (#584)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 13d8975 commit 04433a6

File tree

7 files changed

+21
-3
lines changed

7 files changed

+21
-3
lines changed

Diff for: .changeset/pre.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
"initialVersions": {
55
"@intlify/eslint-plugin-vue-i18n": "3.2.0"
66
},
7-
"changesets": []
7+
"changesets": [
8+
"afraid-queens-shave",
9+
"new-ligers-tan",
10+
"old-islands-admire"
11+
]
812
}

Diff for: CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @intlify/eslint-plugin-vue-i18n
22

3+
## 4.0.0-next.0
4+
5+
### Major Changes
6+
7+
- [#556](https://github.com/intlify/eslint-plugin-vue-i18n/pull/556) [`ccc4737`](https://github.com/intlify/eslint-plugin-vue-i18n/commit/ccc4737e798758179a51dc152ac6e8dada89c33c) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency @intlify/core-base to v10
8+
9+
- [#557](https://github.com/intlify/eslint-plugin-vue-i18n/pull/557) [`baaa5fe`](https://github.com/intlify/eslint-plugin-vue-i18n/commit/baaa5feb9c7dfcb86c46e63e77d2f7d9cb535738) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency @intlify/message-compiler to v10
10+
11+
- [#585](https://github.com/intlify/eslint-plugin-vue-i18n/pull/585) [`13d8975`](https://github.com/intlify/eslint-plugin-vue-i18n/commit/13d8975a78bbc9c07c0c11476b9e0afefd8862e5) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat!: update config
12+
313
## 3.2.0
414

515
### Minor Changes

Diff for: docs/rules/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
| [@intlify/vue-i18n/<wbr>no-deprecated-i18n-places-prop](./no-deprecated-i18n-places-prop.html) | disallow using deprecated `places` prop (Removed in Vue I18n 9.0.0+) | :star: |
1414
| [@intlify/vue-i18n/<wbr>no-deprecated-modulo-syntax](./no-deprecated-modulo-syntax.html) | enforce modulo interpolation to be named interpolation | :star::black_nib: |
1515
| [@intlify/vue-i18n/<wbr>no-deprecated-tc](./no-deprecated-tc.html) | disallow using deprecated `tc` or `$tc` (Deprecated in Vue I18n 10.0.0, removed fully in Vue I18n 11.0.0) | :star: |
16-
| [@intlify/vue-i18n/<wbr>no-deprecated-v-t](./no-deprecated-v-t.html) | disallow using deprecated `v-t` custom directive (Deprecated in Vue I18n 11.0.0, removed fully in Vue I18n 12.0.0) | |
16+
| [@intlify/vue-i18n/<wbr>no-deprecated-v-t](./no-deprecated-v-t.html) | disallow using deprecated `v-t` custom directive (Deprecated in Vue I18n 11.0.0, removed fully in Vue I18n 12.0.0) | :star: |
1717
| [@intlify/vue-i18n/<wbr>no-html-messages](./no-html-messages.html) | disallow use HTML localization messages | :star: |
1818
| [@intlify/vue-i18n/<wbr>no-i18n-t-path-prop](./no-i18n-t-path-prop.html) | disallow using `path` prop with `<i18n-t>` | :star::black_nib: |
1919
| [@intlify/vue-i18n/<wbr>no-missing-keys](./no-missing-keys.html) | disallow missing locale message key at localization methods | :star: |

Diff for: docs/rules/no-deprecated-v-t.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ since: v3.2.0
88

99
> disallow using deprecated `v-t` custom directive (Deprecated in Vue I18n 11.0.0, removed fully in Vue I18n 12.0.0)
1010
11+
- :star: The `"extends": "plugin:@intlify/vue-i18n/recommended"` or `*.configs["flat/recommended"]` property in a configuration file enables this rule.
12+
1113
If you are migrating from Vue I18n v10 to v11, `v-t` custom direcitve should be replaced with `t` or `$t`.
1214

1315
## :book: Rule Details

Diff for: lib/configs/flat/recommended.ts

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export = [
2424
'@intlify/vue-i18n/no-deprecated-i18n-places-prop': 'warn',
2525
'@intlify/vue-i18n/no-deprecated-modulo-syntax': 'warn',
2626
'@intlify/vue-i18n/no-deprecated-tc': 'warn',
27+
'@intlify/vue-i18n/no-deprecated-v-t': 'warn',
2728
'@intlify/vue-i18n/no-html-messages': 'warn',
2829
'@intlify/vue-i18n/no-i18n-t-path-prop': 'warn',
2930
'@intlify/vue-i18n/no-missing-keys': 'warn',

Diff for: lib/configs/recommended.ts

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export = {
1818
'@intlify/vue-i18n/no-deprecated-i18n-places-prop': 'warn',
1919
'@intlify/vue-i18n/no-deprecated-modulo-syntax': 'warn',
2020
'@intlify/vue-i18n/no-deprecated-tc': 'warn',
21+
'@intlify/vue-i18n/no-deprecated-v-t': 'warn',
2122
'@intlify/vue-i18n/no-html-messages': 'warn',
2223
'@intlify/vue-i18n/no-i18n-t-path-prop': 'warn',
2324
'@intlify/vue-i18n/no-missing-keys': 'warn',

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@intlify/eslint-plugin-vue-i18n",
33
"description": "ESLint plugin for Vue I18n",
4-
"version": "3.2.0",
4+
"version": "4.0.0-next.0",
55
"license": "MIT",
66
"homepage": "https://github.com/intlify/eslint-plugin-vue-i18n#readme",
77
"keywords": [

0 commit comments

Comments
 (0)