Skip to content

Commit

Permalink
chore: release eslint-plugin-svelte (#756)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed May 10, 2024
1 parent 6ee50c8 commit 7e4e258
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
5 changes: 0 additions & 5 deletions .changeset/chilly-bats-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/honest-crabs-retire.md

This file was deleted.

8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# eslint-plugin-svelte

## 2.39.0

### Minor Changes

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

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

## 2.38.0

### Minor Changes
Expand Down
7 changes: 5 additions & 2 deletions docs/rules/no-svelte-internal.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ pageClass: 'rule-details'
sidebarDepth: 0
title: 'svelte/no-svelte-internal'
description: 'svelte/internal will be removed in Svelte 6.'
since: 'v2.39.0'
---

# svelte/no-svelte-internal

> svelte/internal will be removed in Svelte 6.
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>

## :book: Rule Details

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.
Expand Down Expand Up @@ -49,6 +48,10 @@ Nothing.

Nothing.

## :rocket: Version

This rule was introduced in eslint-plugin-svelte v2.39.0

## :mag: Implementation

- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/src/rules/no-svelte-internal.ts)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-svelte",
"version": "2.38.0",
"version": "2.39.0",
"description": "ESLint plugin for Svelte using AST",
"repository": "git+https://github.com/sveltejs/eslint-plugin-svelte.git",
"homepage": "https://sveltejs.github.io/eslint-plugin-svelte",
Expand Down
2 changes: 1 addition & 1 deletion src/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
// This file has been automatically generated,
// in order to update its content execute "pnpm run update"
export const name = 'eslint-plugin-svelte';
export const version = '2.38.0';
export const version = '2.39.0';

0 comments on commit 7e4e258

Please sign in to comment.