Skip to content

Commit

Permalink
Merge branch 'tedi/symlink' into tedi/cleanrm
Browse files Browse the repository at this point in the history
  • Loading branch information
tedim52 committed Oct 6, 2023
2 parents c21e68d + 61df87d commit 615fc1c
Show file tree
Hide file tree
Showing 195 changed files with 21,002 additions and 25,942 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

## [0.84.2](https://github.com/kurtosis-tech/kurtosis/compare/0.84.1...0.84.2) (2023-10-05)


### Features

* Edit Enclave ([#1478](https://github.com/kurtosis-tech/kurtosis/issues/1478)) ([d11736a](https://github.com/kurtosis-tech/kurtosis/commit/d11736a8a28bbda44b7499bd9977b4f00b1bea74))
* Get Starlark Run APIC endpoint ([#1455](https://github.com/kurtosis-tech/kurtosis/issues/1455)) ([503cb8d](https://github.com/kurtosis-tech/kurtosis/commit/503cb8d5ad781b51e96524d8fa7068478370e5dd))

## [0.84.1](https://github.com/kurtosis-tech/kurtosis/compare/0.84.0...0.84.1) (2023-10-04)


### Bug Fixes

* autoscroll ([#1471](https://github.com/kurtosis-tech/kurtosis/issues/1471)) ([9948fad](https://github.com/kurtosis-tech/kurtosis/commit/9948fad01bd884cf75fbc832dd41516bc50cd6a6))
* bug where we passed cloud user id for cloud instance id ([#1465](https://github.com/kurtosis-tech/kurtosis/issues/1465)) ([65b749c](https://github.com/kurtosis-tech/kurtosis/commit/65b749cd2e8c612a6ecabbe72eb1c29e9c53ced3))

## [0.84.0](https://github.com/kurtosis-tech/kurtosis/compare/0.83.16...0.84.0) (2023-10-03)


### ⚠ BREAKING CHANGES

* block 'local absolute locators', users should replace' local absolute locators' with 'relative locators' ([#1446](https://github.com/kurtosis-tech/kurtosis/issues/1446))
* move run metrics to the APIC & refactor SDK ([#1456](https://github.com/kurtosis-tech/kurtosis/issues/1456))

### Features

* block 'local absolute locators', users should replace' local absolute locators' with 'relative locators' ([#1446](https://github.com/kurtosis-tech/kurtosis/issues/1446)) ([27ded02](https://github.com/kurtosis-tech/kurtosis/commit/27ded02f79b71998f378ea3728ae8c93358738c7))


### Bug Fixes

* add navigation to kurtosis enclave manager ([#1458](https://github.com/kurtosis-tech/kurtosis/issues/1458)) ([f27a00a](https://github.com/kurtosis-tech/kurtosis/commit/f27a00aced78d48c04961c7238907e9c8a3f0261))


### Code Refactoring

* move run metrics to the APIC & refactor SDK ([#1456](https://github.com/kurtosis-tech/kurtosis/issues/1456)) ([2a6c908](https://github.com/kurtosis-tech/kurtosis/commit/2a6c9080f470385f6d0f4ee5c54ab73a25d97c5f))

## [0.83.16](https://github.com/kurtosis-tech/kurtosis/compare/0.83.15...0.83.16) (2023-10-02)


Expand Down
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Business Source License 1.1
Parameters

Licensor: Kurtosis Technologies, Inc.
Licensed Work: Kurtosis 0.83.16
Licensed Work: Kurtosis 0.84.2
The Licensed Work is (c) 2023 Kurtosis Technologies, Inc.
Additional Use Grant: You may make use of the Licensed Work, provided that
you may not use the Licensed Work for an Environment Orchestration Service.
Expand All @@ -12,7 +12,7 @@ you may not use the Licensed Work for an Environment Orchestration Service.
allows third parties (other than your employees and
contractors) to create distributed system environments.

Change Date: 2027-10-02
Change Date: 2027-10-05

Change License: AGPLv3 (GNU Affero General Public License Version 3)

Expand Down
1,436 changes: 846 additions & 590 deletions api/golang/core/kurtosis_core_rpc_api_bindings/api_container_service.pb.go

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions api/golang/core/lib/binding_constructors/binding_constructors.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ func NewRunStarlarkScriptArgs(
dryRun bool,
parallelism int32,
experimentalFeatures []kurtosis_core_rpc_api_bindings.KurtosisFeatureFlag,
cloudInstanceId string,
cloudUserId string,
) *kurtosis_core_rpc_api_bindings.RunStarlarkScriptArgs {
cloudInstanceIdCopy := new(string)
*cloudInstanceIdCopy = cloudInstanceId
cloudUserIdCopy := new(string)
*cloudUserIdCopy = cloudUserId
parallelismCopy := new(int32)
*parallelismCopy = parallelism
return &kurtosis_core_rpc_api_bindings.RunStarlarkScriptArgs{
Expand All @@ -49,6 +55,8 @@ func NewRunStarlarkScriptArgs(
Parallelism: parallelismCopy,
MainFunctionName: mainFunctionName,
ExperimentalFeatures: experimentalFeatures,
CloudInstanceId: cloudInstanceIdCopy,
CloudUserId: cloudUserIdCopy,
}
}

Expand All @@ -60,9 +68,15 @@ func NewRunStarlarkPackageArgs(
dryRun bool,
parallelism int32,
experimentalFeatures []kurtosis_core_rpc_api_bindings.KurtosisFeatureFlag,
cloudInstanceId string,
cloudUserId string,
) *kurtosis_core_rpc_api_bindings.RunStarlarkPackageArgs {
parallelismCopy := new(int32)
*parallelismCopy = parallelism
cloudInstanceIdCopy := new(string)
*cloudInstanceIdCopy = cloudInstanceId
cloudUserIdCopy := new(string)
*cloudUserIdCopy = cloudUserId
clonePackage := false
return &kurtosis_core_rpc_api_bindings.RunStarlarkPackageArgs{
PackageId: packageId,
Expand All @@ -74,6 +88,8 @@ func NewRunStarlarkPackageArgs(
RelativePathToMainFile: relativePathToMainFile,
MainFunctionName: mainFunctionName,
ExperimentalFeatures: experimentalFeatures,
CloudInstanceId: cloudInstanceIdCopy,
CloudUserId: cloudUserIdCopy,
}
}

Expand All @@ -85,9 +101,15 @@ func NewRunStarlarkRemotePackageArgs(
dryRun bool,
parallelism int32,
experimentalFeatures []kurtosis_core_rpc_api_bindings.KurtosisFeatureFlag,
cloudInstanceId string,
cloudUserId string,
) *kurtosis_core_rpc_api_bindings.RunStarlarkPackageArgs {
parallelismCopy := new(int32)
*parallelismCopy = parallelism
cloudInstanceIdCopy := new(string)
*cloudInstanceIdCopy = cloudInstanceId
cloudUserIdCopy := new(string)
*cloudUserIdCopy = cloudUserId
clonePackage := true
return &kurtosis_core_rpc_api_bindings.RunStarlarkPackageArgs{
PackageId: packageId,
Expand All @@ -99,6 +121,8 @@ func NewRunStarlarkRemotePackageArgs(
RelativePathToMainFile: relativePathToMainFile,
MainFunctionName: mainFunctionName,
ExperimentalFeatures: experimentalFeatures,
CloudInstanceId: cloudInstanceIdCopy,
CloudUserId: cloudUserIdCopy,
}
}

Expand Down
Loading

0 comments on commit 615fc1c

Please sign in to comment.