Skip to content

Commit

Permalink
chore(release): v0.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 25, 2025
1 parent 1745e9e commit 1cd0943
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
2 changes: 2 additions & 0 deletions mavogelcdkvscodeserver/LinuxArchitectureType.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ package mavogelcdkvscodeserver
type LinuxArchitectureType string

const (
// ARM architecture.
LinuxArchitectureType_ARM LinuxArchitectureType = "ARM"
// AMD64 architecture.
LinuxArchitectureType_AMD64 LinuxArchitectureType = "AMD64"
)

3 changes: 3 additions & 0 deletions mavogelcdkvscodeserver/LinuxFlavorType.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ package mavogelcdkvscodeserver
type LinuxFlavorType string

const (
// Ubuntu 22.
LinuxFlavorType_UBUNTU_22 LinuxFlavorType = "UBUNTU_22"
// Ubuntu 24.
LinuxFlavorType_UBUNTU_24 LinuxFlavorType = "UBUNTU_24"
// Amazon Linux 2023.
LinuxFlavorType_AMAZON_LINUX_2023 LinuxFlavorType = "AMAZON_LINUX_2023"
)

3 changes: 3 additions & 0 deletions mavogelcdkvscodeserver/VSCodeServer.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ import (
"github.com/MV-Consulting/cdk-vscode-server/mavogelcdkvscodeserver/internal"
)

// VSCodeServer - spin it up in under 10 minutes.
type VSCodeServer interface {
constructs.Construct
// The name of the domain the server is reachable.
DomainName() *string
// The tree node.
Node() constructs.Node
// The password to login to the server.
Password() *string
// Returns a string representation of this construct.
ToString() *string
Expand Down
1 change: 1 addition & 0 deletions mavogelcdkvscodeserver/VSCodeServerProps.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"github.com/aws/aws-cdk-go/awscdk/v2/awsiam"
)

// Properties for the VSCodeServer construct.
type VSCodeServerProps struct {
// Additional instance role policies.
// Default: - [].
Expand Down
4 changes: 2 additions & 2 deletions mavogelcdkvscodeserver/jsii/jsii.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
cdknag "github.com/cdklabs/cdk-nag-go/cdknag/v2/jsii"
)

//go:embed mavogel-cdk-vscode-server-0.0.16.tgz
//go:embed mavogel-cdk-vscode-server-0.0.17.tgz
var tarball []byte

// Initialize loads the necessary packages in the @jsii/kernel to support the enclosing module.
Expand All @@ -26,5 +26,5 @@ func Initialize() {
constructs.Initialize()

// Load this library into the kernel
_jsii_.Load("@mavogel/cdk-vscode-server", "0.0.16", tarball)
_jsii_.Load("@mavogel/cdk-vscode-server", "0.0.17", tarball)
}
2 changes: 1 addition & 1 deletion mavogelcdkvscodeserver/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.16
0.0.17

0 comments on commit 1cd0943

Please sign in to comment.