timonel 3.1.0 → 3.2.0-beta.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 CHANGED
@@ -1,3 +1,9 @@
1
+ # [3.2.0-beta.1](https://github.com/KenkoGeek/timonel/compare/v3.1.0...v3.2.0-beta.1) (2026-01-10)
2
+
3
+ ### Features
4
+
5
+ - **core:** policy engine plugin and documentation improvement ([#250](https://github.com/KenkoGeek/timonel/issues/250)) ([400478e](https://github.com/KenkoGeek/timonel/commit/400478e32a30f6f00864832347deb176cb81c94b))
6
+
1
7
  # [3.1.0](https://github.com/KenkoGeek/timonel/compare/v3.0.0...v3.1.0) (2026-01-10)
2
8
 
3
9
  ### Features
package/README.md CHANGED
@@ -735,7 +735,7 @@ The Policy Engine supports a rich ecosystem of plugins for various use cases:
735
735
  "types": "dist/index.d.ts",
736
736
  "keywords": ["timonel", "policy", "security", "kubernetes"],
737
737
  "peerDependencies": {
738
- "timonel": "^3.0.0"
738
+ "timonel": "^3.1.0"
739
739
  }
740
740
  }
741
741
 
@@ -787,13 +787,13 @@ policyEngine.invalidateCache({ all: true });
787
787
  Policy engine configuration options
788
788
  - **[Policy Examples](https://github.com/KenkoGeek/timonel/wiki/Policy-Examples)** - Example plugins
789
789
  and usage patterns
790
- - **[Examples](https://github.com/KenkoGeek/timonel/wiki/Examples)** - Real-world usage examples (Outdated)
790
+ - **[Examples](https://github.com/KenkoGeek/timonel/wiki/Examples)** - Real-world usage examples
791
791
  - **[Best Practices](https://github.com/KenkoGeek/timonel/wiki/Best-Practices)** - Recommended
792
792
  patterns and practices
793
793
  - **[Contributing](https://github.com/KenkoGeek/timonel/wiki/Contributing)** - Development setup
794
794
  and guidelines
795
795
  - **[Timonel Examples Repository](https://github.com/KenkoGeek/timonel-examples)** - Curated
796
- collection of ready-to-run Timonel sample projects
796
+ collection of ready-to-run Timonel sample projects (Outdated)
797
797
 
798
798
  ## 🔧 Troubleshooting
799
799
 
@@ -814,7 +814,7 @@ If you get `Error: Cannot find module 'cdk8s'` when running `tl umbrella synth`:
814
814
  "cdk8s": "^2.70.28",
815
815
  "cdk8s-plus-33": "^2.4.6",
816
816
  "constructs": "^10.4.3",
817
- "timonel": "^3.0.0-beta.1"
817
+ "timonel": "^3.1.0"
818
818
  },
819
819
  "devDependencies": {
820
820
  "@types/node": "^24.5.2",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "timonel",
3
3
  "type": "module",
4
- "version": "3.1.0",
4
+ "version": "3.2.0-beta.1",
5
5
  "description": "Timonel: programmatic Helm chart generator using cdk8s (TypeScript)",
6
6
  "bin": {
7
7
  "timonel": "dist/cli.js",