File tree Expand file tree Collapse file tree 6 files changed +36
-1
lines changed Expand file tree Collapse file tree 6 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,21 @@ Version 9 of Highlight.js has reached EOL and is no longer supported.
2
2
Please upgrade or ask whatever dependency you are using to upgrade.
3
3
https://github.com/highlightjs/highlight.js/issues/2877
4
4
5
+ ## v0.11.0 (2021-02-23)
6
+
7
+ #### :star : Features
8
+ * [ #166 ] ( https://github.com/intlify/eslint-plugin-vue-i18n/pull/166 ) Add no-deprecated-i18n-places-prop rule ([ @ota-meshi ] ( https://github.com/ota-meshi ) )
9
+ * [ #167 ] ( https://github.com/intlify/eslint-plugin-vue-i18n/pull/167 ) Add no-i18n-t-path-prop rule ([ @ota-meshi ] ( https://github.com/ota-meshi ) )
10
+ * [ #165 ] ( https://github.com/intlify/eslint-plugin-vue-i18n/pull/165 ) Add no-deprecated-i18n-place-attr rule ([ @ota-meshi ] ( https://github.com/ota-meshi ) )
11
+ * [ #164 ] ( https://github.com/intlify/eslint-plugin-vue-i18n/pull/164 ) Add no-deprecated-i18n-component rule ([ @ota-meshi ] ( https://github.com/ota-meshi ) )
12
+
13
+ #### Committers: 1
14
+ - Yosuke Ota ([ @ota-meshi ] ( https://github.com/ota-meshi ) )
15
+
16
+ Version 9 of Highlight.js has reached EOL and is no longer supported.
17
+ Please upgrade or ask whatever dependency you are using to upgrade.
18
+ https://github.com/highlightjs/highlight.js/issues/2877
19
+
5
20
## v0.10.0 (2021-01-04)
6
21
7
22
#### :star : Features
Original file line number Diff line number Diff line change 1
1
---
2
2
title : ' @intlify/vue-i18n/no-deprecated-i18n-component'
3
3
description : disallow using deprecated `<i18n>` components (in Vue I18n 9.0.0+)
4
+ since : v0.11.0
4
5
---
5
6
6
7
# @intlify/vue-i18n /no-deprecated-i18n-component
@@ -59,6 +60,10 @@ This rule reports use of deprecated `<i18n>` components (in Vue I18n 9.0.0+).
59
60
60
61
- [ Vue I18n > Breaking Changes - Rename to ` i18n-t ` from ` i18n ` ] ( https://vue-i18n.intlify.dev/guide/migration/breaking.html#rename-to-i18n-tfrom-i18n )
61
62
63
+ ## :rocket : Version
64
+
65
+ This rule was introduced in ` @intlify/eslint-plugin-vue-i18n ` v0.11.0
66
+
62
67
## :mag : Implementation
63
68
64
69
- [ Rule source] ( https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-deprecated-i18n-component.ts )
Original file line number Diff line number Diff line change 1
1
---
2
2
title : ' @intlify/vue-i18n/no-deprecated-i18n-place-attr'
3
3
description : disallow using deprecated `place` attribute (Removed in Vue I18n 9.0.0+)
4
+ since : v0.11.0
4
5
---
5
6
6
7
# @intlify/vue-i18n /no-deprecated-i18n-place-attr
@@ -89,6 +90,10 @@ This rule reports use of deprecated `place` attribute (Removed in Vue I18n 9.0.0
89
90
- [ Vue I18n > Breaking Changes - Remove place syntax with ` place ` attr and ` places ` prop] ( https://vue-i18n.intlify.dev/guide/migration/breaking.html#remove-place-syntax-with-place-attr-and-places-prop )
90
91
- [ Vue I18n (v8) > Component interpolation - Places syntax usage] ( https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage )
91
92
93
+ ## :rocket : Version
94
+
95
+ This rule was introduced in ` @intlify/eslint-plugin-vue-i18n ` v0.11.0
96
+
92
97
## :mag : Implementation
93
98
94
99
- [ Rule source] ( https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-deprecated-i18n-place-attr.ts )
Original file line number Diff line number Diff line change 1
1
---
2
2
title : ' @intlify/vue-i18n/no-deprecated-i18n-places-prop'
3
3
description : disallow using deprecated `places` prop (Removed in Vue I18n 9.0.0+)
4
+ since : v0.11.0
4
5
---
5
6
6
7
# @intlify/vue-i18n /no-deprecated-i18n-places-prop
@@ -83,6 +84,10 @@ This rule reports use of deprecated `places` prop (Removed in Vue I18n 9.0.0+).
83
84
- [ Vue I18n > Breaking Changes - Remove place syntax with ` place ` attr and ` places ` prop] ( https://vue-i18n.intlify.dev/guide/migration/breaking.html#remove-place-syntax-with-place-attr-and-places-prop )
84
85
- [ Vue I18n (v8) > Component interpolation - Places syntax usage] ( https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage )
85
86
87
+ ## :rocket : Version
88
+
89
+ This rule was introduced in ` @intlify/eslint-plugin-vue-i18n ` v0.11.0
90
+
86
91
## :mag : Implementation
87
92
88
93
- [ Rule source] ( https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-deprecated-i18n-places-prop.ts )
Original file line number Diff line number Diff line change 1
1
---
2
2
title : ' @intlify/vue-i18n/no-i18n-t-path-prop'
3
3
description : disallow using `path` prop with `<i18n-t>`
4
+ since : v0.11.0
4
5
---
5
6
6
7
# @intlify/vue-i18n /no-i18n-t-path-prop
@@ -62,6 +63,10 @@ This rule reports use of `path` prop with `<i18n-t>` component.
62
63
63
64
- [ Vue I18n > Breaking Changes - Rename to ` keypath ` prop from ` path ` prop] ( https://vue-i18n.intlify.dev/guide/migration/breaking.html#rename-to-keypath-prop-from-path-prop )
64
65
66
+ ## :rocket : Version
67
+
68
+ This rule was introduced in ` @intlify/eslint-plugin-vue-i18n ` v0.11.0
69
+
65
70
## :mag : Implementation
66
71
67
72
- [ Rule source] ( https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-i18n-t-path-prop.ts )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @intlify/eslint-plugin-vue-i18n" ,
3
3
"description" : " ESLint plugin for Vue I18n" ,
4
- "version" : " 0.10 .0" ,
4
+ "version" : " 0.11 .0" ,
5
5
"author" : {
6
6
"name" : " kazuya kawaguchi" ,
7
7
"email" : " kawakazu80@gmail.com"
You can’t perform that action at this time.
0 commit comments