Skip to content

Commit 91fd5a9

Browse files
authored
Merge pull request #185 from sqlfluff/update-manifest
Update package manifest to new publisher
2 parents 3e7b8d3 + 1f9a12e commit 91fd5a9

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the "sqlfluff" extension will be documented in this file.
44

5+
## [4.0.0] - 2026-01-13
6+
7+
- Changed extension publisher from `dorzey` to `sqlfluff`. [Issue](https://github.com/sqlfluff/vscode-sqlfluff/issues/185)
8+
59
## [3.7.0] - 2025-12-28
610

711
- Fix bug with code actions. [Issue](https://github.com/sqlfluff/vscode-sqlfluff/issues/184)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Hosted VS Code, dbt-core, SqlFluff, and Airflow, find out more at [Datacoves.com
99

1010
# vscode-sqlfluff
1111

12-
![.github/workflows/ci.yml](https://github.com/dorzey/vscode-sqlfluff/workflows/.github/workflows/ci.yml/badge.svg)
12+
![.github/workflows/ci.yml](https://github.com/sqlfluff/vscode-sqlfluff/workflows/.github/workflows/ci.yml/badge.svg)
1313

1414
A linter and auto-formatter for [SQLFluff](https://github.com/sqlfluff/sqlfluff), a popular linting tool for SQL and dbt.
1515

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "vscode-sqlfluff",
33
"displayName": "sqlfluff",
4-
"version": "3.7.0",
4+
"version": "4.0.0",
55
"description": "A linter and auto-formatter for SQLfluff, a popular linting tool for SQL and dbt.",
6-
"publisher": "dorzey",
6+
"publisher": "sqlfluff",
77
"icon": "images/icon.png",
88
"engines": {
99
"vscode": "^1.63.0"

test/suite/helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const SLEEP_TIME = 2000;
55

66
export const activate = async (documentUri: vscode.Uri): Promise<vscode.TextDocument | undefined> => {
77
// The extensionId is `publisher.name` from package.json
8-
const extension = vscode.extensions.getExtension("dorzey.vscode-sqlfluff");
8+
const extension = vscode.extensions.getExtension("sqlfluff.vscode-sqlfluff");
99
assert.notStrictEqual(extension, undefined);
1010
await extension?.activate();
1111
try {

0 commit comments

Comments
 (0)