diff --git a/CHANGELOG.md b/CHANGELOG.md index 381b772..5a22c39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.2.2] - 2026-07-16 + +### Fixed + +- Pin `typescript` to `~5.3.3` to keep it compatible with the bundled `@typescript-eslint/parser@5.x`. TypeScript 7.0 was being pulled in transitively on fresh installs, causing every lint run to crash with `TypeError: Failed to load parser '@typescript-eslint/parser' ... Cannot read properties of undefined (reading 'BarBarToken')`. This broke linting across all consuming projects with no code changes on their end. + ## [2.2.1] - 2025-03-13 - Switch error count check in FileLinter.js to properly check for any error reports diff --git a/package-lock.json b/package-lock.json index 5c4543e..52827af 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "springroll-automated-qa", - "version": "2.2.1", + "version": "2.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "springroll-automated-qa", - "version": "2.2.1", + "version": "2.2.2", "license": "ISC", "dependencies": { "@typescript-eslint/eslint-plugin": "^5.47.0", @@ -31,6 +31,7 @@ "music-metadata": "^7.9.1", "shell-quote": "^1.7.4", "springroll-container": "^1.1.3", + "typescript": "~5.3.3", "webpack": "^5.75.0" }, "bin": { @@ -4160,10 +4161,10 @@ "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" }, "node_modules/typescript": { - "version": "5.6.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", - "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", - "peer": true, + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" diff --git a/package.json b/package.json index 92b4157..325ed2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "springroll-automated-qa", - "version": "2.2.1", + "version": "2.2.2", "description": "An automated QA tool for SpringRoll games", "main": "src/index.js", "bin": { @@ -39,6 +39,7 @@ "music-metadata": "^7.9.1", "shell-quote": "^1.7.4", "springroll-container": "^1.1.3", + "typescript": "~5.3.3", "webpack": "^5.75.0" }, "devDependencies": {