Skip to content

Commit 7e4e258

Browse files
chore: release eslint-plugin-svelte (#756)
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. # Releases ## eslint-plugin-svelte@2.39.0 ### Minor Changes - [#749](#749) [`da4d535`](da4d535) Thanks [@baseballyama](https://github.com/baseballyama)! - feat: add `svelte/no-svelte-internal` rule - [#758](#758) [`6ee50c8`](6ee50c8) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: Update svelte-eslint-parser to 0.36 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6ee50c8 commit 7e4e258

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

.changeset/chilly-bats-allow.md

-5
This file was deleted.

.changeset/honest-crabs-retire.md

-5
This file was deleted.

CHANGELOG.md

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

3+
## 2.39.0
4+
5+
### Minor Changes
6+
7+
- [#749](https://github.com/sveltejs/eslint-plugin-svelte/pull/749) [`da4d535`](https://github.com/sveltejs/eslint-plugin-svelte/commit/da4d5357344805ef4e95aac681c2c58158199b8e) Thanks [@baseballyama](https://github.com/baseballyama)! - feat: add `svelte/no-svelte-internal` rule
8+
9+
- [#758](https://github.com/sveltejs/eslint-plugin-svelte/pull/758) [`6ee50c8`](https://github.com/sveltejs/eslint-plugin-svelte/commit/6ee50c8b0d8e183cf0e3c974e3b3b131007a5a30) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: Update svelte-eslint-parser to 0.36
10+
311
## 2.38.0
412

513
### Minor Changes

docs/rules/no-svelte-internal.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ pageClass: 'rule-details'
33
sidebarDepth: 0
44
title: 'svelte/no-svelte-internal'
55
description: 'svelte/internal will be removed in Svelte 6.'
6+
since: 'v2.39.0'
67
---
78

89
# svelte/no-svelte-internal
910

1011
> svelte/internal will be removed in Svelte 6.
1112
12-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
13-
1413
## :book: Rule Details
1514

1615
This rule reports the use of the deprecated API `svelte/internal` and `svelte/internal/xxx`. `svelte/internal` is deprecated in Svelte 5. And it will be deleted in Svelte 6. These APIs can change in breaking ways at any time without notice.
@@ -49,6 +48,10 @@ Nothing.
4948

5049
Nothing.
5150

51+
## :rocket: Version
52+
53+
This rule was introduced in eslint-plugin-svelte v2.39.0
54+
5255
## :mag: Implementation
5356

5457
- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/src/rules/no-svelte-internal.ts)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-svelte",
3-
"version": "2.38.0",
3+
"version": "2.39.0",
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",

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 = '2.38.0';
5+
export const version = '2.39.0';

0 commit comments

Comments
 (0)