For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Slack communityLog inBook a demo
  • Overview
    • Introduction
    • Quickstart
    • Capabilities
    • Customer Showcase
  • Generators
      • Quickstart
      • Configuration
      • Changelog
      • Publishing as a Go Module
      • Adding custom code
    • MCP Server
  • Deep Dives
    • Customize Method Names
    • Setup local SDK previews
    • Configure Global Headers
    • Configure Auto-Pagination
    • Configure Idempotency
    • Filter Your Endpoints (Audiences)
  • Reference
    • generators.yml
LogoLogo
Slack communityLog inBook a demo
On this page
  • July 21, 2025
  • 1.5.1
  • 1.5.0
  • July 1, 2025
  • 1.4.0
  • June 26, 2025
  • 1.3.0
  • June 3, 2025
  • 1.2.0
  • May 22, 2025
  • 1.1.0
  • May 20, 2025
  • 1.0.0
  • May 14, 2025
  • 0.38.0
  • May 13, 2025
  • 0.37.5
  • May 8, 2025
  • 0.37.4
  • May 1, 2025
  • 0.37.3
GeneratorsGo

Changelog

July 21, 2025
July 21, 2025

July 1, 2025
July 1, 2025

1.4.0

(feat): Add support for receiving raw response headers from API calls with the new WithRawResponse client field for multipart/form-data endpoints.


June 26, 2025
June 26, 2025

June 3, 2025
June 3, 2025

1.2.0

(feat): Add support for generating README.md when filesystem publishing is enabled.


May 22, 2025
May 22, 2025

May 20, 2025
May 20, 2025

May 14, 2025
May 14, 2025

0.38.0

(feat): Add support for the useReaderForBytesRequest configuration option, which generates io.Reader request parameters instead of []byte request parameters.


May 13, 2025
May 13, 2025

0.37.5

(fix): Add support for the custom introduction setting in the generated README.md.


May 8, 2025
May 8, 2025

0.37.4

(fix): Fix an issue where enum values containing double quotes were not properly escaped in generated code.


May 1, 2025
May 1, 2025

0.37.3

(fix): Install the generator-cli at build time as a fallback if runtime installation fails.

Older posts

Next
Built with

1.5.1

(fix): Enum headers are now correctly serialized in API requests. When an endpoint specifies an enum type for a header parameter, the SDK will automatically serialize the enum value to its string representation as expected by the API.

1.5.0

(internal): Update the primary client to delegate to the new raw client to reduce code duplication.

1.3.0

(feat): Add support for receiving raw response headers from API calls with the new WithRawResponse client field.

1response, err := client.WithRawResponse.GetUser(...)
2fmt.Printf("Got response headers: %v", response.Header)

(feat): Bump the minimum Go version to 1.18 because generics are now required by the SDK. Version 1.18 was originally released over three years ago, so this is well within the official Go support window found at https://go.dev/doc/devel/release#policy

1.1.0

(feat): Add support for HEAD method requests. These client methods return the raw http.Header type.

(fix): Update the file header to follow go:generate naming conventions. For details, see https://pkg.go.dev/cmd/go#hdr-Generate_Go_files_by_processing_source

1.0.0

(feat): Major version release to update the generator’s default set of configuration options. The following configuration options have been updated:

  • alwaysSendRequiredProperties is now true by default.
  • inlineFileProperties is now true by default.
  • inlinePathParameters is now true by default.
  • useReaderForBytesRequest is now true by default.
  • union is now v1 by default.