Skip to content

Commit da56a1c

Browse files
authored
Merge pull request #351 from curveball/prep-0.19.9
Releasing 0.19.9
2 parents 72dab96 + 92566b7 commit da56a1c

File tree

9 files changed

+866
-941
lines changed

9 files changed

+866
-941
lines changed

.eslintrc.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
"SwitchCase": 1
2727
}],
2828
"linebreak-style": ["error", "unix"],
29+
"no-constant-condition": ["error", {
30+
"checkLoops": false
31+
}],
2932
"quotes": ["error", "single",
3033
{
3134
"allowTemplateLiterals": false,
@@ -52,7 +55,10 @@
5255
"@typescript-eslint/no-invalid-void-type": "error",
5356
"@typescript-eslint/no-namespace": "error",
5457
"@typescript-eslint/no-non-null-asserted-optional-chain": "error",
55-
"@typescript-eslint/no-unused-vars": ["error"],
58+
"@typescript-eslint/no-unused-vars": ["error", {
59+
"ignoreRestSiblings": true,
60+
"args": "none"
61+
}],
5662
"@typescript-eslint/prefer-for-of": ["error"],
5763
"@typescript-eslint/prefer-optional-chain": ["error"],
5864
"@typescript-eslint/prefer-ts-expect-error": ["error"],

.github/workflows/test.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@ name: Node.js CI
55

66
on:
77
push:
8-
branches:
9-
- master
10-
- release/**
8+
branches: [ master ]
119
pull_request:
12-
branches:
13-
- master
14-
- release/**
10+
branches: [ master ]
1511

1612
jobs:
1713
build:
@@ -20,7 +16,7 @@ jobs:
2016

2117
strategy:
2218
matrix:
23-
node-version: [14.x, 15.x]
19+
node-version: [14.x, 16.x]
2420
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2521

2622
steps:

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
0.19.9 (2021-10-18)
5+
-------------------
6+
7+
* Halloween theme. Automatically enables the last week of October.
8+
* #295: Improved validation for `identity` field on users, groups and apps.
9+
10+
411
0.19.8 (2021-09-09)
512
-------------------
613

0 commit comments

Comments
 (0)