Skip to content

Commit

Permalink
chore: release main (#23)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Dec 17, 2024
1 parent 65b35d1 commit 7ae8e6b
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{}
{"packages/cli":"0.2.0","packages/core":"0.2.0"}
24 changes: 24 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

## 0.2.0 (2024-12-17)


### Features

* implement crds ([#17](https://github.com/konfjs/k8skonf/issues/17)) ([b861774](https://github.com/konfjs/k8skonf/commit/b861774f52537953195f2cee4cf5ce6ac960e711))
* implement kubernetes core API resources ([#8](https://github.com/konfjs/k8skonf/issues/8)) ([b8bb0fb](https://github.com/konfjs/k8skonf/commit/b8bb0fb135edddd04da116032848762d90efc8b2))


### Bug Fixes

* make metadata.name required field ([#16](https://github.com/konfjs/k8skonf/issues/16)) ([98b8fb5](https://github.com/konfjs/k8skonf/commit/98b8fb52d0aba0ccc6a9765119e3c1209461a802))
* remove all the Status classes ([#26](https://github.com/konfjs/k8skonf/issues/26)) ([65b35d1](https://github.com/konfjs/k8skonf/commit/65b35d154bafa0ccc5186acdec61253293c380b2))
* replace Quantity/IntOrString types with regular number | string ([#11](https://github.com/konfjs/k8skonf/issues/11)) ([d276b76](https://github.com/konfjs/k8skonf/commit/d276b763366a20e7e8ee19ae756a81d2d140be48))
* revert [#16](https://github.com/konfjs/k8skonf/issues/16) ([#18](https://github.com/konfjs/k8skonf/issues/18)) ([a39c36a](https://github.com/konfjs/k8skonf/commit/a39c36a686cb4623fc5ef80266a29f19cf7719f5))
* use ^ range for direct dependencies ([#13](https://github.com/konfjs/k8skonf/issues/13)) ([dc56430](https://github.com/konfjs/k8skonf/commit/dc56430e90386a86cd9ef2c40f85003e0b303851))
* use k8s api version as suffix ([#10](https://github.com/konfjs/k8skonf/issues/10)) ([497b345](https://github.com/konfjs/k8skonf/commit/497b345279f9e7404bb4020d0108c0dca33dfabe))


### Chores

* version 0.1.1 ([90ed89d](https://github.com/konfjs/k8skonf/commit/90ed89d64295a892b13fa9d41f892554fb92bc73))
15 changes: 12 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@k8skonf/cli",
"version": "0.1.1",
"version": "0.2.0",
"author": {
"name": "konfjs",
"url": "https://github.com/konfjs"
Expand All @@ -15,7 +15,14 @@
"bugs": {
"url": "https://github.com/konfjs/k8skonf/issues"
},
"keywords": ["konfjs", "k8skonf", "kubernetes", "cdk8s", "cdk", "helm"],
"keywords": [
"konfjs",
"k8skonf",
"kubernetes",
"cdk8s",
"cdk",
"helm"
],
"publishConfig": {
"access": "public",
"exports": {
Expand All @@ -42,7 +49,9 @@
"build": "rm -rf dist && tsc && pnpm run add_shebang && chmod +x dist/index.js",
"prepack": "pnpm run build"
},
"files": ["dist"],
"files": [
"dist"
],
"devDependencies": {
"@k8skonf/core": "workspace:*",
"@openapitools/openapi-generator-cli": "2.15.3",
Expand Down
28 changes: 28 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

## 0.2.0 (2024-12-17)


### Features

* implement helm chart support ([#19](https://github.com/konfjs/k8skonf/issues/19)) ([682e55f](https://github.com/konfjs/k8skonf/commit/682e55f07f93eb64bdf3b8e001eddb77d274cae9))
* implement kubernetes core API resources ([#8](https://github.com/konfjs/k8skonf/issues/8)) ([b8bb0fb](https://github.com/konfjs/k8skonf/commit/b8bb0fb135edddd04da116032848762d90efc8b2))


### Bug Fixes

* **core:** export models ([#9](https://github.com/konfjs/k8skonf/issues/9)) ([8d6cc01](https://github.com/konfjs/k8skonf/commit/8d6cc0193fd7c889ca4d521b45dadb3b2ac2d4fe))
* make metadata.name required field ([#16](https://github.com/konfjs/k8skonf/issues/16)) ([98b8fb5](https://github.com/konfjs/k8skonf/commit/98b8fb52d0aba0ccc6a9765119e3c1209461a802))
* remove all the Status classes ([#26](https://github.com/konfjs/k8skonf/issues/26)) ([65b35d1](https://github.com/konfjs/k8skonf/commit/65b35d154bafa0ccc5186acdec61253293c380b2))
* replace Quantity/IntOrString types with regular number | string ([#11](https://github.com/konfjs/k8skonf/issues/11)) ([d276b76](https://github.com/konfjs/k8skonf/commit/d276b763366a20e7e8ee19ae756a81d2d140be48))
* revert [#16](https://github.com/konfjs/k8skonf/issues/16) ([#18](https://github.com/konfjs/k8skonf/issues/18)) ([a39c36a](https://github.com/konfjs/k8skonf/commit/a39c36a686cb4623fc5ef80266a29f19cf7719f5))
* use ^ range for direct dependencies ([#13](https://github.com/konfjs/k8skonf/issues/13)) ([dc56430](https://github.com/konfjs/k8skonf/commit/dc56430e90386a86cd9ef2c40f85003e0b303851))
* use k8s api version as suffix ([#10](https://github.com/konfjs/k8skonf/issues/10)) ([497b345](https://github.com/konfjs/k8skonf/commit/497b345279f9e7404bb4020d0108c0dca33dfabe))


### Chores

* add openapi-generator-cli ([#6](https://github.com/konfjs/k8skonf/issues/6)) ([67d7bef](https://github.com/konfjs/k8skonf/commit/67d7befce483122b5e927bf9f4d0b2ec909dadce))
* bump version to 0.1.0 ([b1a0e6a](https://github.com/konfjs/k8skonf/commit/b1a0e6a8ae110fee2b704a2cca9683cdf4a89eb4))
* set up repository ([#1](https://github.com/konfjs/k8skonf/issues/1)) ([3079e34](https://github.com/konfjs/k8skonf/commit/3079e3409aa74040b9887e42919461cb77dd9288))
* version 0.1.1 ([90ed89d](https://github.com/konfjs/k8skonf/commit/90ed89d64295a892b13fa9d41f892554fb92bc73))
15 changes: 12 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@k8skonf/core",
"version": "0.1.1",
"version": "0.2.0",
"author": {
"name": "konfjs",
"url": "https://github.com/konfjs"
Expand All @@ -15,7 +15,14 @@
"bugs": {
"url": "https://github.com/konfjs/k8skonf/issues"
},
"keywords": ["konfjs", "k8skonf", "kubernetes", "cdk8s", "cdk", "helm"],
"keywords": [
"konfjs",
"k8skonf",
"kubernetes",
"cdk8s",
"cdk",
"helm"
],
"publishConfig": {
"access": "public",
"exports": {
Expand Down Expand Up @@ -45,7 +52,9 @@
"build": "rm -rf dist && tsc",
"prepack": "pnpm run build"
},
"files": ["dist"],
"files": [
"dist"
],
"devDependencies": {
"typescript": "5.7.2"
},
Expand Down

0 comments on commit 7ae8e6b

Please sign in to comment.