- update dependencies to latest stable versions

```
    "@octokit/rest": "^19.0.1",
    "moment": "^2.29.4",
```
```
    "@types/jest": "^28.1.4",
    "@types/node": "^18.0.3",
    "@typescript-eslint/parser": "^5.30.5",
    "eslint": "^8.19.0",
    "jest": "^28.1.2",
    "jest-circus": "^28.1.2",
    "typescript": "^4.7.4"
```
This commit is contained in:
Mike Penz
2022-07-08 10:43:24 +02:00
parent 89475f1193
commit 4360ffd09f
5 changed files with 2031 additions and 1949 deletions
Generated Vendored
+913 -51
View File
File diff suppressed because one or more lines are too long
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
+1138 -1918
View File
File diff suppressed because it is too large Load Diff
+9 -9
View File
@@ -35,26 +35,26 @@
"@actions/core": "^1.9.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@octokit/rest": "^18.12.0",
"@octokit/rest": "^19.0.1",
"@types/semver": "^7.3.10",
"moment": "^2.29.3",
"moment": "^2.29.4",
"semver": "^7.3.7",
"tunnel": "^0.0.6",
"webpack": "^5.73.0"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.28.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@typescript-eslint/parser": "^5.30.5",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.17.0",
"eslint": "^8.19.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"jest-circus": "^28.1.1",
"jest": "^28.1.2",
"jest-circus": "^28.1.2",
"js-yaml": "^4.1.0",
"prettier": "2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3"
"typescript": "^4.7.4"
}
}
+1 -1
View File
@@ -21,7 +21,7 @@ export interface Category {
labels: string[] // labels to associate PRs to this category
exclude_labels?: string[] // if an exclude label is detected, the PR will be excluded from this category
exhaustive?: boolean // requires all labels to be present in the PR
empty_content ?: string // if the category has no matching PRs, this content will be used. If not set, the category will be skipped in the changelog.
empty_content?: string // if the category has no matching PRs, this content will be used. If not set, the category will be skipped in the changelog.
}
export interface Sort {