Skip to content

Commit e4c358c

Browse files
committed
chore(release): v1.1.1 optimizations
1 parent f869609 commit e4c358c

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
tags:
66
- '*.*.*' # Match semantic versioning tags like 1.0.0
77

8+
permissions:
9+
id-token: write # Required for OIDC
10+
contents: read
11+
812
concurrency: ${{ github.workflow }}-${{ github.ref }}
913

1014
jobs:

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# @devscast/config
22

3-
## 1.1.0
4-
3+
## 1.1.1
4+
- fix: environment variables with typed prefixes are now correctly parsed as numbers and booleans
5+
- bump dependencies
56
- enhance: ConfigValidationError now includes detailed validation issues
67
- fix: correct typing in defineConfig function
78
- drop support of ts config files

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devscast/config",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
55
"source": "./src/index.ts",
66
"main": "./dist/index.js",
@@ -56,15 +56,15 @@
5656
"@commitlint/cli": "^20.1.0",
5757
"@commitlint/config-conventional": "^20.0.0",
5858
"@types/ini": "^4.1.1",
59-
"@types/node": "^24.10.0",
60-
"@types/yaml": "^1.9.6",
59+
"@types/node": "^24.10.1",
60+
"@types/yaml": "^1.9.7",
6161
"commitizen": "^4.3.1",
62-
"cz-conventional-changelog": "^3.0.1",
62+
"cz-conventional-changelog": "^3.3.0",
6363
"husky": "^9.1.7",
6464
"ini": "^6.0.0",
65-
"tsup": "^8.5.0",
65+
"tsup": "^8.5.1",
6666
"typescript": "^5.9.3",
67-
"vitest": "^4.0.6",
67+
"vitest": "^4.0.13",
6868
"yaml": "^2.8.1",
6969
"zod": "^4.1.12"
7070
},

0 commit comments

Comments
 (0)