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.
22Please upgrade or ask whatever dependency you are using to upgrade.
33https://github.com/highlightjs/highlight.js/issues/2877
44
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+
520## v0.10.0 (2021-01-04)
621
722#### :star : Features
Original file line number Diff line number Diff line change 11---
22title : ' @intlify/vue-i18n/no-deprecated-i18n-component'
33description : disallow using deprecated `<i18n>` components (in Vue I18n 9.0.0+)
4+ since : v0.11.0
45---
56
67# @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+).
5960
6061- [ Vue I18n > Breaking Changes - Rename to ` i18n-t ` from ` i18n ` ] ( https://vue-i18n.intlify.dev/guide/migration/breaking.html#rename-to-i18n-tfrom-i18n )
6162
63+ ## :rocket : Version
64+
65+ This rule was introduced in ` @intlify/eslint-plugin-vue-i18n ` v0.11.0
66+
6267## :mag : Implementation
6368
6469- [ 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 11---
22title : ' @intlify/vue-i18n/no-deprecated-i18n-place-attr'
33description : disallow using deprecated `place` attribute (Removed in Vue I18n 9.0.0+)
4+ since : v0.11.0
45---
56
67# @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
8990- [ 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 )
9091- [ Vue I18n (v8) > Component interpolation - Places syntax usage] ( https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage )
9192
93+ ## :rocket : Version
94+
95+ This rule was introduced in ` @intlify/eslint-plugin-vue-i18n ` v0.11.0
96+
9297## :mag : Implementation
9398
9499- [ 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 11---
22title : ' @intlify/vue-i18n/no-deprecated-i18n-places-prop'
33description : disallow using deprecated `places` prop (Removed in Vue I18n 9.0.0+)
4+ since : v0.11.0
45---
56
67# @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+).
8384- [ 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 )
8485- [ Vue I18n (v8) > Component interpolation - Places syntax usage] ( https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage )
8586
87+ ## :rocket : Version
88+
89+ This rule was introduced in ` @intlify/eslint-plugin-vue-i18n ` v0.11.0
90+
8691## :mag : Implementation
8792
8893- [ 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 11---
22title : ' @intlify/vue-i18n/no-i18n-t-path-prop'
33description : disallow using `path` prop with `<i18n-t>`
4+ since : v0.11.0
45---
56
67# @intlify/vue-i18n /no-i18n-t-path-prop
@@ -62,6 +63,10 @@ This rule reports use of `path` prop with `<i18n-t>` component.
6263
6364- [ 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 )
6465
66+ ## :rocket : Version
67+
68+ This rule was introduced in ` @intlify/eslint-plugin-vue-i18n ` v0.11.0
69+
6570## :mag : Implementation
6671
6772- [ 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 11{
22 "name" : " @intlify/eslint-plugin-vue-i18n" ,
33 "description" : " ESLint plugin for Vue I18n" ,
4- "version" : " 0.10 .0" ,
4+ "version" : " 0.11 .0" ,
55 "author" : {
66 "name" : " kazuya kawaguchi" ,
77 "email" : " kawakazu80@gmail.com"
You can’t perform that action at this time.
0 commit comments