diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0d1bebe1cf..64e0684f37 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.6.0" + ".": "1.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d217a03d1..596dfcccd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [1.7.0](https://github.com/kurtosis-tech/kurtosis/compare/1.6.0...1.7.0) (2025-04-17) + + +### Features + +* add grafloki to kurtosis config ([#2707](https://github.com/kurtosis-tech/kurtosis/issues/2707)) ([b6794e1](https://github.com/kurtosis-tech/kurtosis/commit/b6794e1618091c77ec18a23079c11e1c5463f30e)) +* export service logs (Kubenertes) ([#2693](https://github.com/kurtosis-tech/kurtosis/issues/2693)) ([c00f357](https://github.com/kurtosis-tech/kurtosis/commit/c00f357b5ebb9cb9e1b52ab412e489d6260895c6)) +* grafloki start/stop ([#2696](https://github.com/kurtosis-tech/kurtosis/issues/2696)) ([53d823a](https://github.com/kurtosis-tech/kurtosis/commit/53d823a53c7941eb93fe14e1b06e958a30b539d7)) +* service update ([#2689](https://github.com/kurtosis-tech/kurtosis/issues/2689)) ([4cda391](https://github.com/kurtosis-tech/kurtosis/commit/4cda3910a8ab333ae0726631579a8a300c69cbe4)) + + +### Bug Fixes + +* **backend/kubernetes:** use default KUBECONFIG resolution ([#2672](https://github.com/kurtosis-tech/kurtosis/issues/2672)) ([379e49b](https://github.com/kurtosis-tech/kurtosis/commit/379e49b0013a769e5f5102386d6733eafb528014)) +* docker auth wasn't being used by engine and API ([#2699](https://github.com/kurtosis-tech/kurtosis/issues/2699)) ([4eea787](https://github.com/kurtosis-tech/kurtosis/commit/4eea787e2cad7e7e91811fa4e8de05b08022cc0e)) +* give grafana root access ([#2706](https://github.com/kurtosis-tech/kurtosis/issues/2706)) ([b8e2fab](https://github.com/kurtosis-tech/kurtosis/commit/b8e2fab7c3be8ea27108c20bbd29199d9d460abc)) +* remove k8s ingress on stop user services ([#2715](https://github.com/kurtosis-tech/kurtosis/issues/2715)) ([e31c0d4](https://github.com/kurtosis-tech/kurtosis/commit/e31c0d4217d883da72a38e0e43dd77ceb55d8e65)) +* return empty deployment if not found ([#2716](https://github.com/kurtosis-tech/kurtosis/issues/2716)) ([451c70e](https://github.com/kurtosis-tech/kurtosis/commit/451c70e5cea2c72edeb68ccd424433f05592474c)) + ## [1.6.0](https://github.com/kurtosis-tech/kurtosis/compare/1.5.0...1.6.0) (2025-03-18) diff --git a/api/golang/kurtosis_version/kurtosis_version.go b/api/golang/kurtosis_version/kurtosis_version.go index 9fb3731e0b..582e2b0a96 100644 --- a/api/golang/kurtosis_version/kurtosis_version.go +++ b/api/golang/kurtosis_version/kurtosis_version.go @@ -9,6 +9,6 @@ const ( // !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!! // This is necessary so that Kurt Core consumers will know if they're compatible with the currently-running // API container - KurtosisVersion = "1.6.0" + KurtosisVersion = "1.7.0" // !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!! ) diff --git a/api/rust/Cargo.toml b/api/rust/Cargo.toml index 6926389951..72f6e65dca 100644 --- a/api/rust/Cargo.toml +++ b/api/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kurtosis-sdk" -version = "1.6.0" +version = "1.7.0" license = "BUSL-1.1" description = "Rust SDK for Kurtosis" edition = "2021" diff --git a/api/typescript/package.json b/api/typescript/package.json index b9b0250ef5..17dda4cf8f 100644 --- a/api/typescript/package.json +++ b/api/typescript/package.json @@ -1,7 +1,7 @@ { "name": "kurtosis-sdk", "//": "NOTE: DO NOT UPDATE THIS VERSION MANUALLY - IT WILL BE UPDATED DURING THE RELEASE PROCESS!", - "version": "1.6.0", + "version": "1.7.0", "main": "./build/index", "description": "This repo contains a Typescript client for communicating with the Kurtosis Engine server, which is responsible for creating, managing and destroying Kurtosis Enclaves.", "types": "./build/index", diff --git a/api/typescript/src/kurtosis_version/kurtosis_version.ts b/api/typescript/src/kurtosis_version/kurtosis_version.ts index c160df09df..164d34a047 100644 --- a/api/typescript/src/kurtosis_version/kurtosis_version.ts +++ b/api/typescript/src/kurtosis_version/kurtosis_version.ts @@ -1,5 +1,5 @@ // !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!! // This is necessary so that Kurt Core consumers (e.g. modules) will know if they're compatible with the currently-running // API container -export const KURTOSIS_VERSION: string = "1.6.0" +export const KURTOSIS_VERSION: string = "1.7.0" // !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!! diff --git a/enclave-manager/web/lerna.json b/enclave-manager/web/lerna.json index a1b7880b44..70d82203dd 100644 --- a/enclave-manager/web/lerna.json +++ b/enclave-manager/web/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*"], - "version": "1.6.0", + "version": "1.7.0", "npmClient": "yarn", "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useNx": false, diff --git a/enclave-manager/web/packages/app/package.json b/enclave-manager/web/packages/app/package.json index 6c3e2d001c..adfefb63b7 100644 --- a/enclave-manager/web/packages/app/package.json +++ b/enclave-manager/web/packages/app/package.json @@ -1,6 +1,6 @@ { "name": "@kurtosis/emui-app", - "version": "1.6.0", + "version": "1.7.0", "private": true, "homepage": ".", "dependencies": { @@ -10,7 +10,7 @@ "html-react-parser": "^4.2.2", "js-cookie": "^3.0.5", "kurtosis-cloud-indexer-sdk": "^0.0.31", - "kurtosis-ui-components": "1.6.0", + "kurtosis-ui-components": "1.7.0", "react-error-boundary": "^4.0.11", "react-hook-form": "^7.47.0", "react-mentions": "^4.4.10", diff --git a/enclave-manager/web/packages/components/package.json b/enclave-manager/web/packages/components/package.json index 619ebbdb10..dab6be38af 100644 --- a/enclave-manager/web/packages/components/package.json +++ b/enclave-manager/web/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "kurtosis-ui-components", - "version": "1.6.0", + "version": "1.7.0", "private": false, "main": "build/index", "description": "This repo contains components used by Kurtosis UI applications.", diff --git a/version.txt b/version.txt index dc1e644a10..bd8bf882d0 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.6.0 +1.7.0