Skip to content

Releases: inngest/inngest-kt

inngest-0.2.2

31 Jan 17:51
614a066
Compare
Choose a tag to compare

What's Changed

  • inngest-spring-boot-adapter@0.2.1 by @KiKoS0 in #95
  • Fix step state incorrect type when returning null from steps by @KiKoS0 in #96
  • Revert changing the image prompt fn into the null state poc by @KiKoS0 in #97
  • Release: inngest@0.2.2 by @djfarrelly in #98

Full Changelog: inngest-0.2.1...inngest-0.2.2

inngest@0.2.1

11 Nov 22:00
f27c725
Compare
Choose a tag to compare

What's Changed

Full Changelog: inngest-spring-boot-adapter-0.2.0...inngest-0.2.1

inngest@0.2.0

03 Oct 21:07
f2ad36c
Compare
Choose a tag to compare

What's Changed

Full Changelog: inngest-spring-boot-adapter-0.0.6...inngest-0.2.0

inngest-spring-boot-adapter@0.0.6

06 Sep 19:40
0c1f598
Compare
Choose a tag to compare

Minor change to lock down the introspect endpoint

  • Forbid introspect endpoint in non-dev environments (#68)

inngest@0.1.0

06 Sep 18:47
dd60046
Compare
Choose a tag to compare

Initial minor release. Includes various changes and improvements including:

  • d8a7958 Add priority configuration (#71)
  • bf3920b Implement debounce configuration (#70)
  • 6503363 Cleanup the Inngest's client send interface (#69)
  • 593f8db Forbid introspect endpoint in non-dev environments (#68)
  • ba822f3 Add throttling configuration (#66)
  • 54b58d7 Support try-catch for both invoke and run (#65)
  • a9274a6 Fix for randomly failing integration tests (#67)
  • be831e0 Add retries configuration (#64)

inngest@0.0.8

26 Jul 14:41
cee727d
Compare
Choose a tag to compare
  • Fix: Serialize trigger if filter to expression to match spec #61

inngest@0.0.7

25 Jul 20:16
6d275e9
Compare
Choose a tag to compare
  • Fix: Jackson FAIL_ON_EMPTY_BEANS error (#58)
  • Fix: Use function id for name when name is null (#58)
  • Improvement: Set default timeout to null on step.invoke to make parameter optional (#58)

inngest@0.0.6

22 Jul 19:32
Compare
Choose a tag to compare

Changes

  • Add new config method with InngestFunctionConfigBuilder class for building configuration.
class TranscodeVideo : InngestFunction() {
  override fun config(builder: InngestFunctionConfigBuilder): InngestFunctionConfigBuilder =
    builder
      .id("process-video")
      .name("Process video upload")
      .triggerEvent("media/video.uploaded")
      .batchEvents(50, Duration.ofSeconds(30))
      .concurrency(10)
}
  • Adds batchEvents configuration option to InngestFunctionConfigBuilder. Options include max batch size, timeout duration, and optional key.
  • Adds concurrency configuration option to InngestFunctionConfigBuilder. Options include limit, key and scope.