Skip to content

Releases: bufbuild/knit-ts

v0.0.7

01 Mar 16:40
13e289e

Choose a tag to compare

v0.0.7 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v0.0.6...v0.0.7

v0.0.6

05 Feb 17:22
18be19a

Choose a tag to compare

v0.0.6 Pre-release
Pre-release

What's Changed

Full Changelog: v0.0.5...v0.0.6

v0.0.5

29 Jan 18:47
7839e02

Choose a tag to compare

v0.0.5 Pre-release
Pre-release

What's Changed

This release includes a breaking change to how oneof values are queried, instead of using a function oneof it is not part of the query and uses a special key @oneof:

// v0.0.4: 
{
  result: oneof({
    value: {},
    error: {},
  }
}
// v0.0.5:
{
  result: {
  '@oneof': {
      value: {},
      error: {},
  }
}

New Contributors

Full Changelog: v0.0.3...v0.0.4

v0.0.3

06 Oct 05:12
e3e6012

Choose a tag to compare

v0.0.3 Pre-release
Pre-release

What's Changed

Add experimental gateway support exported via a sub path export (/gateway). With this users can run the Knit gateway in JS environments like node and the browser!

NOTE: This is not well tested and users should rely on the standalone gateway

Bug fixes

Full Changelog: v0.0.2...v0.0.3

v0.0.2

08 May 17:02
540d60a

Choose a tag to compare

v0.0.2 Pre-release
Pre-release

Fixes:

  • Listen fix (#1)

Full Changelog: v0.0.1...v0.0.2

v0.0.1

04 May 16:50

Choose a tag to compare

v0.0.1 Pre-release
Pre-release

This is the initial release of the Knit TypeScript client and code generator plugin.

Knit is in alpha state: it is still undergoing initial development and is not yet stable.