From f9f1352a2428e08df6927846b6f53040c3b0eb9b Mon Sep 17 00:00:00 2001 From: Ashish Dobani Date: Tue, 3 Sep 2024 01:32:02 +0530 Subject: [PATCH 1/2] fix: Error: spawn EINVAL (#129) Fix #128 --- src/sniffer.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sniffer.ts b/src/sniffer.ts index dc5ae6c..edabc79 100644 --- a/src/sniffer.ts +++ b/src/sniffer.ts @@ -129,6 +129,7 @@ const validate = async (document: TextDocument) => { env: process.env, encoding: 'utf8', tty: true, + shell: true, }; logger.info( `SNIFFER COMMAND: ${resourceConf.executablePathCS} ${lintArgs.join(' ')}`, From 8f937cce9ea4c0902ece4e17a8c20106d5b5a45a Mon Sep 17 00:00:00 2001 From: Samuel Hilson Date: Mon, 2 Sep 2024 15:22:08 -0500 Subject: [PATCH 2/2] chore(release): update version to 0.0.19, refresh dependencies (#132) --- .github/workflows/test.yml | 1 + CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06f6d2f..74a7635 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,6 +4,7 @@ on: pull_request: branches: - main + workflow_dispatch: jobs: test: diff --git a/CHANGELOG.md b/CHANGELOG.md index b624d32..4d85a17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # Changelog +## 0.0.19 (2024-09-02) + +* fix: Error: spawn EINVAL (#129) ([f9f1352](https://github.com/valeryan/vscode-phpsab/commit/f9f1352)), closes [#129](https://github.com/valeryan/vscode-phpsab/issues/129) [#128](https://github.com/valeryan/vscode-phpsab/issues/128) +* chore(development): add commitizen, update docs (#116) ([d0117bc](https://github.com/valeryan/vscode-phpsab/commit/d0117bc)), closes [#116](https://github.com/valeryan/vscode-phpsab/issues/116) +* chore(release): bump version to v0.0.18 (#117) ([c528257](https://github.com/valeryan/vscode-phpsab/commit/c528257)), closes [#117](https://github.com/valeryan/vscode-phpsab/issues/117) [#108](https://github.com/valeryan/vscode-phpsab/issues/108) +* fix bad github name (#112) ([2270cef](https://github.com/valeryan/vscode-phpsab/commit/2270cef)), closes [#112](https://github.com/valeryan/vscode-phpsab/issues/112) + ## 0.0.18 (2024-02-29) diff --git a/package-lock.json b/package-lock.json index 125f2dc..f04e82c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-phpsab", - "version": "0.0.18", + "version": "0.0.19", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-phpsab", - "version": "0.0.18", + "version": "0.0.19", "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", diff --git a/package.json b/package.json index d351b64..e3f6456 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-phpsab", "displayName": "PHP Sniffer & Beautifier", "description": "PHP Sniffer & Beautifier for Visual Studio Code", - "version": "0.0.18", + "version": "0.0.19", "icon": "php_logo.png", "publisher": "valeryanm", "homepage": "https://github.com/valeryan/vscode-phpsab",