Fix punycode and url.parse Deprecation Warnings (#1312)

* chore: update dependencies and add new license files for octokit packages

* chore: update license files and remove obsolete dependencies
This commit is contained in:
Chiranjib Swain
2026-02-02 22:54:18 +05:30
committed by GitHub
parent d6f8a33132
commit dcd2b9469d
94 changed files with 51337 additions and 55310 deletions

View File

@@ -2150,6 +2150,7 @@ test('processing an issue opened since 4 hours and with the option "daysBeforeIs
};
const issueDate = new Date();
issueDate.setHours(issueDate.getHours() - 4);
issueDate.setMinutes(issueDate.getMinutes() - 1); // Make it slightly older than 4 hours
const TestIssueList: Issue[] = [
generateIssue(opts, 1, 'An issue with no label', issueDate.toISOString())
];
@@ -2344,6 +2345,7 @@ test('processing a pull request opened since 4 hours and with the option "daysBe
};
const issueDate = new Date();
issueDate.setHours(issueDate.getHours() - 4);
issueDate.setMinutes(issueDate.getMinutes() - 1); // Make it slightly older than 4 hours
const TestIssueList: Issue[] = [
generateIssue(
opts,