Skip to content

minor release v0.11.0 #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@ Version 9 of Highlight.js has reached EOL and is no longer supported.
Please upgrade or ask whatever dependency you are using to upgrade.
https://github.com/highlightjs/highlight.js/issues/2877

## v0.11.0 (2021-02-23)

#### :star: Features
* [#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))
* [#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))
* [#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))
* [#164](https://github.com/intlify/eslint-plugin-vue-i18n/pull/164) Add no-deprecated-i18n-component rule ([@ota-meshi](https://github.com/ota-meshi))

#### Committers: 1
- Yosuke Ota ([@ota-meshi](https://github.com/ota-meshi))

Version 9 of Highlight.js has reached EOL and is no longer supported.
Please upgrade or ask whatever dependency you are using to upgrade.
https://github.com/highlightjs/highlight.js/issues/2877

## v0.10.0 (2021-01-04)

#### :star: Features
Expand Down
5 changes: 5 additions & 0 deletions docs/rules/no-deprecated-i18n-component.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: '@intlify/vue-i18n/no-deprecated-i18n-component'
description: disallow using deprecated `<i18n>` components (in Vue I18n 9.0.0+)
since: v0.11.0
---

# @intlify/vue-i18n/no-deprecated-i18n-component
Expand Down Expand Up @@ -59,6 +60,10 @@ This rule reports use of deprecated `<i18n>` components (in Vue I18n 9.0.0+).

- [Vue I18n > Breaking Changes - Rename to `i18n-t` from `i18n`](https://vue-i18n.intlify.dev/guide/migration/breaking.html#rename-to-i18n-tfrom-i18n)

## :rocket: Version

This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v0.11.0

## :mag: Implementation

- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-deprecated-i18n-component.ts)
Expand Down
5 changes: 5 additions & 0 deletions docs/rules/no-deprecated-i18n-place-attr.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: '@intlify/vue-i18n/no-deprecated-i18n-place-attr'
description: disallow using deprecated `place` attribute (Removed in Vue I18n 9.0.0+)
since: v0.11.0
---

# @intlify/vue-i18n/no-deprecated-i18n-place-attr
Expand Down Expand Up @@ -89,6 +90,10 @@ This rule reports use of deprecated `place` attribute (Removed in Vue I18n 9.0.0
- [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)
- [Vue I18n (v8) > Component interpolation - Places syntax usage](https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage)

## :rocket: Version

This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v0.11.0

## :mag: Implementation

- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-deprecated-i18n-place-attr.ts)
Expand Down
5 changes: 5 additions & 0 deletions docs/rules/no-deprecated-i18n-places-prop.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: '@intlify/vue-i18n/no-deprecated-i18n-places-prop'
description: disallow using deprecated `places` prop (Removed in Vue I18n 9.0.0+)
since: v0.11.0
---

# @intlify/vue-i18n/no-deprecated-i18n-places-prop
Expand Down Expand Up @@ -83,6 +84,10 @@ This rule reports use of deprecated `places` prop (Removed in Vue I18n 9.0.0+).
- [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)
- [Vue I18n (v8) > Component interpolation - Places syntax usage](https://kazupon.github.io/vue-i18n/guide/interpolation.html#places-syntax-usage)

## :rocket: Version

This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v0.11.0

## :mag: Implementation

- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-deprecated-i18n-places-prop.ts)
Expand Down
5 changes: 5 additions & 0 deletions docs/rules/no-i18n-t-path-prop.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: '@intlify/vue-i18n/no-i18n-t-path-prop'
description: disallow using `path` prop with `<i18n-t>`
since: v0.11.0
---

# @intlify/vue-i18n/no-i18n-t-path-prop
Expand Down Expand Up @@ -62,6 +63,10 @@ This rule reports use of `path` prop with `<i18n-t>` component.

- [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)

## :rocket: Version

This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v0.11.0

## :mag: Implementation

- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-i18n-t-path-prop.ts)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@intlify/eslint-plugin-vue-i18n",
"description": "ESLint plugin for Vue I18n",
"version": "0.10.0",
"version": "0.11.0",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
Expand Down