timonel 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -12
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [0.2.
|
|
10
|
+
## [0.2.1] - 2025-09-02
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Updated examples package.json versions to 0.2.0 for consistency
|
|
15
|
+
- Fixed examples imports to use relative paths instead of 'timonel' package
|
|
16
|
+
- Updated dependencies to resolve brace-expansion security vulnerability
|
|
17
|
+
- Examples now work correctly with CLI after v0.2.0 breaking changes
|
|
18
|
+
|
|
19
|
+
### Security
|
|
20
|
+
|
|
21
|
+
- Updated dependencies to latest versions
|
|
22
|
+
- Resolved brace-expansion vulnerability in transitive dependencies
|
|
23
|
+
|
|
24
|
+
## [0.2.0] - 2025-09-02
|
|
11
25
|
|
|
12
26
|
### BREAKING CHANGES
|
|
13
27
|
|
|
@@ -36,7 +50,7 @@ const rutter = new Rutter({ meta: { name: 'my-app' } });
|
|
|
36
50
|
- Eliminated all factory references from codebase
|
|
37
51
|
- Enhanced maritime theme consistency (Timonel + Rutter)
|
|
38
52
|
|
|
39
|
-
## [0.1.7] - 2025-01
|
|
53
|
+
## [0.1.7] - 2025-09-01
|
|
40
54
|
|
|
41
55
|
### Breaking Changes
|
|
42
56
|
|
|
@@ -45,7 +59,7 @@ const rutter = new Rutter({ meta: { name: 'my-app' } });
|
|
|
45
59
|
- Renamed `ChartFactory.ts` to `Rutter.ts` for consistency
|
|
46
60
|
- Updated API: `new Rutter()` instead of `new ChartFactory()`
|
|
47
61
|
|
|
48
|
-
## [0.1.6] - 2025-01
|
|
62
|
+
## [0.1.6] - 2025-09-01
|
|
49
63
|
|
|
50
64
|
### Structure
|
|
51
65
|
|
|
@@ -53,14 +67,14 @@ const rutter = new Rutter({ meta: { name: 'my-app' } });
|
|
|
53
67
|
- Updated linting ignore patterns to use `examples/**`
|
|
54
68
|
- Added Examples section to README documenting available examples
|
|
55
69
|
|
|
56
|
-
## [0.1.5] - 2025-
|
|
70
|
+
## [0.1.5] - 2025-08-31
|
|
57
71
|
|
|
58
72
|
### Linting
|
|
59
73
|
|
|
60
74
|
- Excluded example directories from main lint script to resolve CI errors
|
|
61
75
|
- Ensure both lint and security:lint scripts ignore example imports
|
|
62
76
|
|
|
63
|
-
## [0.1.4] - 2025-
|
|
77
|
+
## [0.1.4] - 2025-08-31
|
|
64
78
|
|
|
65
79
|
### Updated
|
|
66
80
|
|
|
@@ -72,9 +86,9 @@ const rutter = new Rutter({ meta: { name: 'my-app' } });
|
|
|
72
86
|
|
|
73
87
|
- Excluded example directories from security linting to resolve CI import errors
|
|
74
88
|
|
|
75
|
-
## [0.1.3] - 2025-
|
|
89
|
+
## [0.1.3] - 2025-08-31
|
|
76
90
|
|
|
77
|
-
### Bug Fixes
|
|
91
|
+
### Bug Fixes 0.1.3
|
|
78
92
|
|
|
79
93
|
- Fixed Helm chart generation issues with numeric values in YAML
|
|
80
94
|
- Corrected environment variable handling for complex objects
|
|
@@ -95,7 +109,7 @@ const rutter = new Rutter({ meta: { name: 'my-app' } });
|
|
|
95
109
|
- Updated example READMEs with working deployment commands
|
|
96
110
|
- Added notes about numeric value handling in Helm templates
|
|
97
111
|
|
|
98
|
-
## [0.1.2] -
|
|
112
|
+
## [0.1.2] - 2025-08-30
|
|
99
113
|
|
|
100
114
|
### Added
|
|
101
115
|
|
|
@@ -103,12 +117,12 @@ const rutter = new Rutter({ meta: { name: 'my-app' } });
|
|
|
103
117
|
- Helm installation detection with clear installation instructions
|
|
104
118
|
- Automatic cleanup of temporary validation directories
|
|
105
119
|
|
|
106
|
-
###
|
|
120
|
+
### Bug Fixes 0.1.2
|
|
107
121
|
|
|
108
122
|
- Fixed example chart to use valid Helm template syntax for annotations
|
|
109
123
|
- Improved error messages with installation links for missing Helm binary
|
|
110
124
|
|
|
111
|
-
## [0.1.1] -
|
|
125
|
+
## [0.1.1] - 2025-08-30
|
|
112
126
|
|
|
113
127
|
### Resolved
|
|
114
128
|
|
|
@@ -116,7 +130,7 @@ const rutter = new Rutter({ meta: { name: 'my-app' } });
|
|
|
116
130
|
- Added explicit ts-node configuration to prevent module resolution error
|
|
117
131
|
- Added `exports` field to package.json to support subpath imports like `timonel/lib/helm`
|
|
118
132
|
|
|
119
|
-
## [0.1.0] -
|
|
133
|
+
## [0.1.0] - 2025-08-30
|
|
120
134
|
|
|
121
135
|
### Initial
|
|
122
136
|
|
|
@@ -134,7 +148,7 @@ const rutter = new Rutter({ meta: { name: 'my-app' } });
|
|
|
134
148
|
- Security-focused development with ESLint security plugin and audit pipeline
|
|
135
149
|
- GitHub Actions workflows for CI/CD with provenance-enabled publishing
|
|
136
150
|
|
|
137
|
-
### Security
|
|
151
|
+
### Security Features
|
|
138
152
|
|
|
139
153
|
- ESLint security plugin with 12+ vulnerability detection rules
|
|
140
154
|
- Automated dependency scanning via Dependabot
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "timonel",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Timonel: programmatic Helm chart generator using cdk8s (TypeScript)",
|
|
5
5
|
"bin": {
|
|
6
6
|
"timonel": "dist/cli.js",
|
|
@@ -76,30 +76,30 @@
|
|
|
76
76
|
]
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"cdk8s": "^2.
|
|
79
|
+
"cdk8s": "^2.70.11",
|
|
80
80
|
"cdk8s-plus-28": "^2.5.6",
|
|
81
|
-
"
|
|
82
|
-
"
|
|
81
|
+
"ts-node": "^10.9.2",
|
|
82
|
+
"yaml": "^2.8.1"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@commitlint/cli": "^19.
|
|
86
|
-
"@commitlint/config-conventional": "^19.
|
|
85
|
+
"@commitlint/cli": "^19.8.1",
|
|
86
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
87
87
|
"@types/node": "^24.3.0",
|
|
88
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
89
|
-
"@typescript-eslint/parser": "^7.
|
|
90
|
-
"eslint": "^8.57.
|
|
88
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
89
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
90
|
+
"eslint": "^8.57.1",
|
|
91
91
|
"eslint-config-prettier": "^10.1.8",
|
|
92
92
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
93
|
-
"eslint-plugin-import": "^2.
|
|
93
|
+
"eslint-plugin-import": "^2.32.0",
|
|
94
94
|
"eslint-plugin-security": "^3.0.1",
|
|
95
95
|
"eslint-plugin-sonarjs": "^3.0.5",
|
|
96
96
|
"eslint-plugin-unused-imports": "^4.2.0",
|
|
97
97
|
"husky": "^9.1.7",
|
|
98
|
-
"lint-staged": "^16.1.
|
|
98
|
+
"lint-staged": "^16.1.6",
|
|
99
99
|
"markdownlint": "^0.38.0",
|
|
100
100
|
"markdownlint-cli": "^0.45.0",
|
|
101
|
-
"prettier": "^3.
|
|
102
|
-
"typescript": "^5.
|
|
101
|
+
"prettier": "^3.6.2",
|
|
102
|
+
"typescript": "^5.9.2"
|
|
103
103
|
},
|
|
104
104
|
"files": [
|
|
105
105
|
"dist",
|