From 9a9bf362bf91550c6b710a93ad5305d22fd0284c Mon Sep 17 00:00:00 2001 From: Robert Ostermann Date: Sat, 15 Jul 2023 12:26:22 -0500 Subject: [PATCH] v2.3.7 --- CHANGELOG.md | 5 +++++ package.json | 43 +++++++++++++++++++++++-------------------- 2 files changed, 28 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e39b8a2..e9ddb89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to the "sqlfluff" extension will be documented in this file. Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +## [2.3.7] - 2023-07-15 + +- Update the `sqlfluff.dialect` enum +- Update the `sqlfluff.codeActions.noqa` defaults to the sqlfluff 2.0 rule values + ## [2.3.6] - 2023-07-15 - Add the `sqlfluff.format.languages` setting to allow for users to determine which languages the formatting activates for diff --git a/package.json b/package.json index 5e390d6..61ee889 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vscode-sqlfluff", "displayName": "sqlfluff", - "version": "2.3.6", + "version": "2.3.7", "description": "A linter and auto-formatter for SQLfluff, a popular linting tool for SQL and dbt.", "publisher": "dorzey", "icon": "images/icon.png", @@ -112,7 +112,10 @@ "db2", "duckdb", "exasol", + "greenplum", "hive", + "materializ", + "e", "mysql", "oracle", "postgres", @@ -181,24 +184,24 @@ "boolean" ], "default": [ - "L015", - "L017", - "L019", - "L030", - "L032", - "L034", - "L035", - "L037", - "L038", - "L040", - "L041", - "L042", - "L043", - "L044", - "L054", - "L058", - "L063", - "L064" + "AM03", + "AM04", + "AM06", + "CP03", + "CP04", + "CP05", + "CV03", + "CV10", + "ST01", + "ST02", + "ST04", + "ST05", + "ST06", + "ST07", + "ST08", + "LT04", + "LT06", + "LT10" ], "markdownDescription": "Set the rules that will not show the `noqa` code actions. Set this to `false` to disable all `noqa` code actions." }, @@ -395,7 +398,7 @@ "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "copyfiles": "^2.4.1", - "esbuild": "^0.18.12", + "esbuild": "^0.18.13", "eslint": "^8.45.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-import": "^2.27.5",