Skip to content

Releases: gruntwork-io/terragrunt-engine-go

v0.1.0

06 Jan 15:02
8115864

Choose a tag to compare

🛠️ Breaking Changes

The engine.proto schema has significantly changed

For example, InitResponse now uses oneof.

message InitResponse {
  // Standard output from the initialization process.
  string stdout = 1;

  // Standard error output from the initialization process.
  string stderr = 2;

  // Result code of the initialization process.
  int32 result_code = 3;
}
message InitResponse {
  oneof response {
    StdoutMessage stdout = 1;
    StderrMessage stderr = 2;
    ExitResultMessage exit_result = 3;
    LogMessage log = 4;
  }

What's Changed

Full Changelog: v0.0.16...v0.1.0

v0.0.16

15 Aug 15:01
b933a3d

Choose a tag to compare

What's Changed

Full Changelog: v0.0.15...v0.0.16

v0.0.15

23 May 15:47
e11d101

Choose a tag to compare

What's Changed

Full Changelog: v0.0.14...v0.0.15

v0.0.14

18 Apr 17:47
ac13152

Choose a tag to compare

What's Changed

  • Bump golang.org/x/net from 0.37.0 to 0.38.0 in /examples/client-server by @dependabot in #38
  • Bump golang.org/x/net from 0.37.0 to 0.38.0 by @dependabot in #39

Full Changelog: v0.0.13...v0.0.14

v0.0.13

29 Mar 13:14
e4daaa2

Choose a tag to compare

What's Changed

  • chore: updated google.golang.org/protobuf to 1.36.6 by @denis256 in #36

Full Changelog: v0.0.12...v0.0.13

v0.0.12

14 Mar 14:37
6afa6ef

Choose a tag to compare

What's Changed

  • build(deps): bump github.com/gruntwork-io/terragrunt-engine-go v0.0.11 update by @denis256 in #34
  • build(deps): bump golang.org/x/net v0.37.0 update by @denis256 in #34
  • build(deps): bump golang.org/x/sys v0.31.0 update by @denis256 in #34
  • build(deps): bump golang.org/x/text v0.23.0 update by @denis256 in #34

Full Changelog: v0.0.11...v0.0.12

v0.0.11

13 Mar 10:23
7ef00e7

Choose a tag to compare

What's Changed

Full Changelog: v0.0.10...v0.0.11

v0.0.10

12 Mar 09:36
4e732ed

Choose a tag to compare

What's Changed

  • chore: Bump google.golang.org/grpc from 1.70.0 to 1.71.0 by @dependabot in #32

Full Changelog: v0.0.9...v0.0.10

v0.0.9

07 Mar 16:00
de89770

Choose a tag to compare

What's Changed

  • Updated google.golang.org/protobuf to v1.36.5
  • Updated google.golang.org/protobuf/cmd/protoc-gen-go to v1.36.5
  • Updated google.golang.org/grpc/cmd/protoc-gen-go-grpc to v1.5.1

Full Changelog: v0.0.8...v0.0.9

v0.0.8

31 Jan 15:51
5d782f0

Choose a tag to compare

What's Changed

  • chore: Updated github.com/hashicorp/go-plugin to v1.6.3
  • chore: Updated google.golang.org/grpc to v1.70.0
  • chore: Updated google.golang.org/protobuf to v1.36.4

Full Changelog: v0.0.7...v0.0.8