Skip to content

Releases: inngest/inngest-kt

[email protected]

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

[email protected]

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

[email protected]

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)

[email protected]

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)

[email protected]

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

[email protected]

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)

[email protected]

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.