From e8767ba6604c17fd8c6bfeb07ffa5e03af6c7aa8 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Wed, 25 Jan 2023 20:48:50 -0800 Subject: [PATCH 1/3] Removed "Does the problem occur with the latest version of jasmine-core" from issue templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 11 ----------- .github/ISSUE_TEMPLATE/support_request.yml | 11 ----------- 2 files changed, 22 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9389177d..53b4917f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -75,17 +75,6 @@ body: label: jasmine-core version validations: required: true - - type: dropdown - id: repro-with-latest-core - attributes: - label: Does the problem occur with the latest version of jasmine-core? - options: - - "Yes" - - "No" - - I haven't tried - - I'm stuck on an older version - validations: - required: true - type: textarea id: other-versions attributes: diff --git a/.github/ISSUE_TEMPLATE/support_request.yml b/.github/ISSUE_TEMPLATE/support_request.yml index 5ade7a7d..cd9f65ff 100644 --- a/.github/ISSUE_TEMPLATE/support_request.yml +++ b/.github/ISSUE_TEMPLATE/support_request.yml @@ -50,17 +50,6 @@ body: label: jasmine-core version validations: required: true - - type: dropdown - id: repro-with-latest-core - attributes: - label: Does the problem occur with the latest version of jasmine-core? - options: - - "Yes" - - "No" - - I haven't tried - - I'm stuck on an older version - validations: - required: true - type: textarea id: other-versions attributes: From b323631611673e1ccd2f300d70de4272db2da69e Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Mon, 30 Jan 2023 17:57:47 -0800 Subject: [PATCH 2/3] Pin Grunt to <1.6.0 for compatiblity with Node 12 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3bb03006..fced8840 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "eslint": "^7.32.0", "eslint-plugin-compat": "^4.0.0", "glob": "^7.2.0", - "grunt": "^1.0.4", + "grunt": ">=1.0.4 <1.6.0", "grunt-cli": "^1.3.2", "grunt-contrib-compress": "^2.0.0", "grunt-contrib-concat": "^2.0.0", From bc3a4951607017af085925f145d665e670b4e50d Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Tue, 7 Feb 2023 18:43:45 -0800 Subject: [PATCH 3/3] Pin eslint-plugin-compat to <4.1.0 to fix import error on CI See . --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fced8840..092b3c66 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ ], "devDependencies": { "eslint": "^7.32.0", - "eslint-plugin-compat": "^4.0.0", + "eslint-plugin-compat": ">=4.0.0 <4.1.0", "glob": "^7.2.0", "grunt": ">=1.0.4 <1.6.0", "grunt-cli": "^1.3.2",