Skip to content

Latest commit

History

History
35 lines (28 loc) 路 951 Bytes

CHANGELOG.md

File metadata and controls

35 lines (28 loc) 路 951 Bytes

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.8.1] - 2024-05-14

  • Feature: Support OAuth with bearer tokens.

[0.8.0-rc0] - 2024-05-13

  • Chore: Bump intermediate representation to v42

[0.7.1] - 2024-02-04

  • Chore: Bump intermediate representation to v31
  • Feature: The generated models now support boolean literals and users do not have to specify them in the builder. For example, for the following object
    Actor: 
      properties: 
        name: string
        isMale: literal<true>
    the user will not need to specify the literal properties when building the object.
    var actor = Actor.builder()
      .name("Brad Pitt")
      .build();

[0.6.1] - 2024-02-03

  • Chore: Intialize this changelog