Skip to content

Commit 02c27af

Browse files
authored
1.3.1 (#7)
* update deps * changelog * allow 'y' as yes values
1 parent 04b3acc commit 02c27af

File tree

4 files changed

+32
-22
lines changed

4 files changed

+32
-22
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.1] - 2022-11-28
9+
10+
### Added
11+
12+
- `y` is now a valid truthy value.
13+
14+
### Security
15+
16+
- Updated dependencies.
17+
818
## [1.3.0] - 2022-10-20
919

1020
### Removed

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.3.0",
2+
"version": "1.3.1",
33
"license": "MIT",
44
"type": "module",
55
"main": "dist",
@@ -9,14 +9,14 @@
99
"start": "node ."
1010
},
1111
"dependencies": {
12-
"axios": "^1.1.3",
12+
"axios": "^1.2.0",
1313
"dotenv": "^16.0.3",
1414
"node-cron": "^3.0.2",
1515
"winston": "^3.8.2"
1616
},
1717
"devDependencies": {
18-
"@types/node": "18",
19-
"@types/node-cron": "^3.0.4",
20-
"typescript": "^4.8.4"
18+
"@types/node": "^18.11.9",
19+
"@types/node-cron": "^3.0.6",
20+
"typescript": "^4.9.3"
2121
}
2222
}

pnpm-lock.yaml

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function getEnv<T>(
2222

2323
function parseBoolean(value: string): boolean {
2424
value = value.toLowerCase()
25-
const truthy = ['true', 'yes', '1']
25+
const truthy = ['true', 'yes', '1', 'y']
2626
return truthy.includes(value)
2727
}
2828

0 commit comments

Comments
 (0)