Skip to content

Commit e4a2611

Browse files
chore: release eslint-plugin-svelte (next) (#931)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. ⚠️⚠️⚠️⚠️⚠️⚠️ `main` is currently in **pre mode** so this branch has prereleases rather than normal releases. If you want to exit prereleases, run `changeset pre exit` on `main`. ⚠️⚠️⚠️⚠️⚠️⚠️ # Releases ## [email protected] ### Minor Changes - [#918](#918) [`5da98c9`](5da98c9) Thanks [@mikededo](https://github.com/mikededo)! - Added new `no-deprecated-raw-special-elements` rule - [#836](#836) [`3fa90aa`](3fa90aa) Thanks [@renovate](https://github.com/apps/renovate)! - feat: support for typescript-eslint v8 to `svelte/indent` rule Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 5826388 commit e4a2611

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

.changeset/pre.json

+2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"docs": "0.0.0"
77
},
88
"changesets": [
9+
"lazy-eyes-wait",
910
"olive-wolves-travel",
11+
"quiet-toys-burn",
1012
"small-days-agree",
1113
"twenty-nails-end"
1214
]

docs/rules/no-deprecated-raw-special-elements.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ pageClass: 'rule-details'
33
sidebarDepth: 0
44
title: 'svelte/no-deprecated-raw-special-elements'
55
description: 'Recommends not using raw special elements in Svelte versions previous to 5.'
6+
since: 'v3.0.0-next.1'
67
---
78

89
# svelte/no-deprecated-raw-special-elements
910

1011
> Recommends not using raw special elements in Svelte versions previous to 5.
1112
12-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
1313
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1414

1515
## :book: Rule Details
@@ -46,6 +46,10 @@ Nothing.
4646

4747
- See special elements section in [Svelte docs](https://svelte.dev/docs/svelte/svelte-window)
4848

49+
## :rocket: Version
50+
51+
This rule was introduced in eslint-plugin-svelte v3.0.0-next.1
52+
4953
## :mag: Implementation
5054

5155
- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/packages/eslint-plugin-svelte/src/rules/no-deprecated-raw-special-elements.ts)

packages/eslint-plugin-svelte/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# eslint-plugin-svelte
22

3+
## 3.0.0-next.1
4+
5+
### Minor Changes
6+
7+
- [#918](https://github.com/sveltejs/eslint-plugin-svelte/pull/918) [`5da98c9`](https://github.com/sveltejs/eslint-plugin-svelte/commit/5da98c94f452c8436f26af4172e095fd91f66e1a) Thanks [@mikededo](https://github.com/mikededo)! - Added new `no-deprecated-raw-special-elements` rule
8+
9+
- [#836](https://github.com/sveltejs/eslint-plugin-svelte/pull/836) [`3fa90aa`](https://github.com/sveltejs/eslint-plugin-svelte/commit/3fa90aa57a15ad18105b0d80b1ed975f1f782a11) Thanks [@renovate](https://github.com/apps/renovate)! - feat: support for typescript-eslint v8 to `svelte/indent` rule
10+
311
## 3.0.0-next.0
412

513
### Major Changes

packages/eslint-plugin-svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-svelte",
3-
"version": "3.0.0-next.0",
3+
"version": "3.0.0-next.1",
44
"description": "ESLint plugin for Svelte using AST",
55
"repository": "git+https://github.com/sveltejs/eslint-plugin-svelte.git",
66
"homepage": "https://sveltejs.github.io/eslint-plugin-svelte",

packages/eslint-plugin-svelte/src/meta.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// This file has been automatically generated,
33
// in order to update its content execute "pnpm run update"
44
export const name = 'eslint-plugin-svelte';
5-
export const version = '3.0.0-next.0';
5+
export const version = '3.0.0-next.1';

0 commit comments

Comments
 (0)