Skip to content

Commit 2556928

Browse files
authored
Merge pull request #7 from onkernel/release-please--branches--main--changes--next
release: 0.4.0
2 parents 5fe05fe + 541f4de commit 2556928

File tree

5 files changed

+14
-35
lines changed

5 files changed

+14
-35
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.3.0"
2+
".": "0.4.0"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 19
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fhypeman-5e2239ba23ac3dbbc95b8993a491e99e9fd23fed2e6ea9cecb81b83bf34a00ff.yml
3-
openapi_spec_hash: 4708504f9119289926b3341d083a1814
4-
config_hash: 45d3d945ce8eea7a52c8ead4c03fcf3c
1+
configured_endpoints: 18
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fhypeman-5058541cc0e298a6fc3e9cda1af0e32586d1f39c5666946e15f546c1aedc18ea.yml
3+
openapi_spec_hash: 7f572ac0c7f9dc4f5fc7d9883a53d6c7
4+
config_hash: 35db4c99791f175865381f13a8ad6075

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.4.0 (2025-11-26)
4+
5+
Full Changelog: [v0.3.0...v0.4.0](https://github.com/onkernel/hypeman-cli/compare/v0.3.0...v0.4.0)
6+
7+
### Features
8+
9+
* Remove exec from openapi spec ([6bde031](https://github.com/onkernel/hypeman-cli/commit/6bde031264de6cd6b17afe32f73a70bf14c2f36d))
10+
311
## 0.3.0 (2025-11-26)
412

513
Full Changelog: [v0.2.0...v0.3.0](https://github.com/onkernel/hypeman-cli/compare/v0.2.0...v0.3.0)

pkg/cmd/instance.go

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -81,18 +81,6 @@ var instancesDelete = cli.Command{
8181
HideHelpCommand: true,
8282
}
8383

84-
var instancesExecuteCommand = cli.Command{
85-
Name: "execute-command",
86-
Usage: "Upgrades to WebSocket for bidirectional streaming for shell access.",
87-
Flags: []cli.Flag{
88-
&cli.StringFlag{
89-
Name: "id",
90-
},
91-
},
92-
Action: handleInstancesExecuteCommand,
93-
HideHelpCommand: true,
94-
}
95-
9684
var instancesPutInStandby = cli.Command{
9785
Name: "put-in-standby",
9886
Usage: "Put instance in standby (pause, snapshot, delete VMM)",
@@ -238,23 +226,6 @@ func handleInstancesDelete(ctx context.Context, cmd *cli.Command) error {
238226
)
239227
}
240228

241-
func handleInstancesExecuteCommand(ctx context.Context, cmd *cli.Command) error {
242-
client := hypeman.NewClient(getDefaultRequestOptions(cmd)...)
243-
unusedArgs := cmd.Args().Slice()
244-
if !cmd.IsSet("id") && len(unusedArgs) > 0 {
245-
cmd.Set("id", unusedArgs[0])
246-
unusedArgs = unusedArgs[1:]
247-
}
248-
if len(unusedArgs) > 0 {
249-
return fmt.Errorf("Unexpected extra arguments: %v", unusedArgs)
250-
}
251-
return client.Instances.ExecuteCommand(
252-
ctx,
253-
cmd.Value("id").(string),
254-
option.WithMiddleware(debugMiddleware(cmd.Bool("debug"))),
255-
)
256-
}
257-
258229
func handleInstancesPutInStandby(ctx context.Context, cmd *cli.Command) error {
259230
client := hypeman.NewClient(getDefaultRequestOptions(cmd)...)
260231
unusedArgs := cmd.Args().Slice()

pkg/cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
package cmd
44

5-
const Version = "0.3.0" // x-release-please-version
5+
const Version = "0.4.0" // x-release-please-version

0 commit comments

Comments
 (0)