Kafka Streams Processor to unwrap CØSMOS blocks into CØSMOS transactions

Overview

Kafka Processor CØSMOS-Block

A Kafka Streams Processor to unwrap CØSMOS blocks into CØSMOS transactions.

version build lint test conventional commits License

Purpose

The Kafka Processor CØSMOS-Block is basically a Stream Processor which continuously reads CØSMOS blocks from an input Kafka topic, unwraps the CØSMOS transactions and sends them to an output topic.

This processor plays well with the CØSMOS Kafka Connector which provides Kafka with CØSMOS blocks ready to be processed.

Implementation

Implementation mainly relies on Kafka Streams API, library to create event-stream applications with the following features:

  • no external dependency other than Kafka itself,
  • simple and light library,
  • fault-tolerant and scalable.

Moreover, this implementation:

  • uses Kotkin as primary coding language,
  • is as much as possible, lean, i.e. tries to minimize the dependencies to 3rd party libraries and the resulting package footprint.

Build

This project targets the JVM 11+, so be sure to have it available in your environment.

This project relies on the Gradle build system.

If you are on windows then open a command line, go into the root directory and run:

.\gradlew build

If you are on linux/mac then open a terminal, go into the root directory and run:

./gradlew build

This command line produces 2 JAR files:

  • a regular JAR: kafka-processor-cosmos-block-X.Y.jar
  • a fat JAR: kafka-processor-cosmos-block-X.Y-standalone.jar

This last one is the one to use as it contains all the dependencies in it.

Comments
  • build(deps): bump kotestVersion from 5.3.2 to 5.5.3

    build(deps): bump kotestVersion from 5.3.2 to 5.5.3

    Bumps kotestVersion from 5.3.2 to 5.5.3. Updates kotest-runner-junit5 from 5.3.2 to 5.5.3

    Release notes

    Sourced from kotest-runner-junit5's releases.

    5.5.3

    Updated JUnit version from 5.7.2 to 5.8.2

    Kotest now requires the runtime version of JUnit to be at least 5.8

    Note: If your build somehow manages to put both JUnit 5.7 and 5.8 onto the classpath and they load in the wrong order, you might see problems related to ClassOrderer not being found. Please make sure that only JUnit 5.8+ is loaded

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-assertions-core from 5.3.2 to 5.5.3

    Release notes

    Sourced from kotest-assertions-core's releases.

    5.5.3

    Updated JUnit version from 5.7.2 to 5.8.2

    Kotest now requires the runtime version of JUnit to be at least 5.8

    Note: If your build somehow manages to put both JUnit 5.7 and 5.8 onto the classpath and they load in the wrong order, you might see problems related to ClassOrderer not being found. Please make sure that only JUnit 5.8+ is loaded

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-property from 5.3.2 to 5.5.3

    Release notes

    Sourced from kotest-property's releases.

    5.5.3

    Updated JUnit version from 5.7.2 to 5.8.2

    Kotest now requires the runtime version of JUnit to be at least 5.8

    Note: If your build somehow manages to put both JUnit 5.7 and 5.8 onto the classpath and they load in the wrong order, you might see problems related to ClassOrderer not being found. Please make sure that only JUnit 5.8+ is loaded

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-framework-datatest from 5.3.2 to 5.5.3

    Release notes

    Sourced from kotest-framework-datatest's releases.

    5.5.3

    Updated JUnit version from 5.7.2 to 5.8.2

    Kotest now requires the runtime version of JUnit to be at least 5.8

    Note: If your build somehow manages to put both JUnit 5.7 and 5.8 onto the classpath and they load in the wrong order, you might see problems related to ClassOrderer not being found. Please make sure that only JUnit 5.8+ is loaded

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 3
  • build(deps): bump kotestVersion from 5.3.2 to 5.5.2

    build(deps): bump kotestVersion from 5.3.2 to 5.5.2

    Bumps kotestVersion from 5.3.2 to 5.5.2. Updates kotest-runner-junit5 from 5.3.2 to 5.5.2

    Release notes

    Sourced from kotest-runner-junit5's releases.

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-assertions-core from 5.3.2 to 5.5.2

    Release notes

    Sourced from kotest-assertions-core's releases.

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-property from 5.3.2 to 5.5.2

    Release notes

    Sourced from kotest-property's releases.

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-framework-datatest from 5.3.2 to 5.5.2

    Release notes

    Sourced from kotest-framework-datatest's releases.

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 3
  • build(deps): bump kotestVersion from 5.3.2 to 5.5.1

    build(deps): bump kotestVersion from 5.3.2 to 5.5.1

    Bumps kotestVersion from 5.3.2 to 5.5.1. Updates kotest-runner-junit5 from 5.3.2 to 5.5.1

    Release notes

    Sourced from kotest-runner-junit5's releases.

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-assertions-core from 5.3.2 to 5.5.1

    Release notes

    Sourced from kotest-assertions-core's releases.

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-property from 5.3.2 to 5.5.1

    Release notes

    Sourced from kotest-property's releases.

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-framework-datatest from 5.3.2 to 5.5.1

    Release notes

    Sourced from kotest-framework-datatest's releases.

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 3
  • build(deps): bump kotestVersion from 5.3.2 to 5.5.0

    build(deps): bump kotestVersion from 5.3.2 to 5.5.0

    Bumps kotestVersion from 5.3.2 to 5.5.0. Updates kotest-runner-junit5 from 5.3.2 to 5.5.0

    Commits

    Updates kotest-assertions-core from 5.3.2 to 5.5.0

    Commits

    Updates kotest-property from 5.3.2 to 5.5.0

    Commits

    Updates kotest-framework-datatest from 5.3.2 to 5.5.0

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 3
  • build(deps): bump plugin.allopen from 1.6.10 to 1.7.20

    build(deps): bump plugin.allopen from 1.6.10 to 1.7.20

    Bumps plugin.allopen from 1.6.10 to 1.7.20.

    Release notes

    Sourced from plugin.allopen's releases.

    Kotlin 1.7.20

    1.7.20

    Analysis API

    • KT-52667 FIR IDE: fun interfaces (SAM interfaces) are not properly resolved
    • KT-52136 FIR: Implicit type declaration from the other module cannot be used for overloading

    Analysis API. FE1.0

    • KT-51962 Analysis API: Finish Analysis API for FE1.0

    Analysis API. FIR

    • KT-52779 FIR IDE: Import Optimizer cannot handle generic type qualifiers
    • KT-50236 Fix OOB modification trackers for non-Kotlin code
    • KT-51240 Analysis API: KtAnalysisSession for a specific module cannot create a symbol for PSI that cannot be seen from that module.
    • KT-50868 Analysis API: decompiled type aliases are not resolved

    Compiler

    • KT-53739 Builder inference, extension hides members
    • KT-53733 Kotlin/Native: update source documentation for the new default memory manager
    • KT-53667 Compiler crashes on attempt to alloc a string on the stack in new MM
    • KT-53480 Internal error in file lowering: java.lang.ClassNotFoundException: com.android.systemui.R$string
    • KT-52843 Compose: NPE at Parameters.getParameterByDeclarationSlot if inline function with default arguments takes a lambda which captures value class represented by Long
    • KT-51868 JVM / IR: Inconsistent behaviour between lambda expression and SAM interface conversion for the same interface
    • KT-53475 Kotlin/Native for iOS: "IllegalArgumentException: Sequence has more than one element"

    New Features

    • KT-52495 Support until operator in back-ends
    • KT-52420 Implement resolve of until operator
    • KT-52419 Implement until operator in the parser
      • KT-33755 Kotlin/Native: Provide a way to customize a bundle Identifier of a generated framework
    • KT-51665 FIR: implement label resolve for "typed this" case
    • KT-52361 Report warning on potentially empty intersection types

    Performance Improvements

    • KT-47816 Disable script discovery for non-script environments
    • KT-48635 JVM IR: Double/Float values are boxed when comparing for equality in equals method of data/value classes
    • KT-23397 Optimize out field for property delegate when it's safe (JVM)

    Fixes

    • KT-53272 Backend Internal error: Exception during IR lowering / No such value argument slot: 2
    • KT-53124 Receiver type mismatch when combining extension properties, type projections, Java sources, and F-bounded type-variables
    • KT-51868 JVM / IR: Inconsistent behaviour between lambda expression and SAM interface conversion for the same interface
    • KT-36770 Prohibit unsafe calls with expected @NotNull T and given Kotlin generic parameter with nullable bound
    • KT-52974 "IllegalStateException: Symbol with IrSimpleFunctionSymbolImpl is unbound" compiling native targets of MPP project

    ... (truncated)

    Changelog

    Sourced from plugin.allopen's changelog.

    1.7.20

    Compiler

    New Features

    • KT-52495 Support until operator in back-ends
    • KT-52420 Implement resolve of until operator
    • KT-52419 Implement until operator in the parser

    Fixes

    • KT-53947 IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER
    • KT-51234 Context receivers can be duplicated in function declaration
    • KT-51576 Context receivers: "AssertionError: Callers must check that current token is IDENTIFIER followed with '@'" with at character
    • KT-49479 JVM / IR: "IllegalStateException: IrErrorType" during IR lowering with non-trivial recursion calls
    • KT-52270 NullPointerException caused by braces on if-else returning a method reference inside lambda
    • KT-47621 False negative INVISIBLE_MEMBER on call to inaccessible protected synthetic property setter
    • KT-37796 NI: "ISE: Error type encountered" when inferring type of a property that delegates to itself
    • KT-45430 PSI2IR: "org.jetbrains.kotlin.psi2ir.generators.ErrorExpressionException: null: KtCallExpression: toString()" with recursive function call in "also" block in nontrivial context
    • KT-52691 K2: Expected FirResolvedTypeRef with ConeKotlinType but was FirImplicitTypeRefImpl with intertwined functional interfaces
    • KT-52822 Fix contract for KtElement.getReference()
    • KT-50223 IndexOutOfBoundsException from ClassicTypeSystemContext$DefaultImpls.getParameter during call resolution
    • KT-51963 Change Maven version to 1.7.255
    • KT-47664 Incorrect type checking in the case of generic types
    • KT-48765 NI: Inferred type does not respect the bound of type variable
    • KT-51243 False positive error "No required context receiver" inside contextual lambda
    • KT-43541 TYPE_MISMATCH for member function which is not occur for top level function during unsafe cast
    • KT-51016 [FIR] False positive OVERLOAD_RESOLUTION_AMBIGUITY between two extensions on different supertypes
    • KT-50155 FIR: support contextual receivers
    • KT-38637 Catch NoSuchFieldException in optimized when expression over enum

    Docs & Examples

    • KT-49896 Kotlin/JS: improve -Xir-property-lazy-initialization description due to making it true by default

    IDE

    • KTIJ-22286 Kotlin JPS project created via wizard does not contain Kotlin libraries in case of not-released version
    • KTIJ-22065 IDE notification motivating Kotlin users to use EAP
    • KTIJ-22209 Configure Kotlin on 221 idea adds 1.6.10 Kotlin (despite the fact that IDE plugin is 1.7.10)
    • KTIJ-22171 Fix test BuiltInDecompilerConsistencyTest
    • KTIJ-22016 Empty .kt file and build.gradle.kts can trigger an error while searching for a facade light class

    IDE. Code Style, Formatting

    • KTIJ-21346 Incorrect formatting for functions with context receivers and visibility modifiers

    IDE. Completion

    ... (truncated)

    Commits
    • 7159702 Add changelog for 1.7.20
    • 9ca25ce Native: add more tests for Swift Set and Dictionary used in Kotlin
    • 1244679 Native: improve thread state switches for NSSet/NSDictionary adapters
    • 1abfeb9 [Gradle][MPP] MPP/AGP compatibility: Bump maxSupportedVersion to 7.3
    • b489e93 Fix lowering of receiver access in IR scripting
    • 8a8853c K1. Fix error message for BUILDER_INFERENCE_MULTI_LAMBDA_RESTRICTION
    • 608d45c Add changelog for 1.7.20-RC
    • 3a340d2 Fix kind of NoBuilderInferenceWithoutAnnotationRestriction
    • a17fc51 Fix receiver inconsistency when builder inference restriction disabled
    • f0fd2cf Put back the line with language feature to 1.7 block
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once it's up-to-date and CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 3
  • build(deps): bump kotestVersion from 5.3.2 to 5.4.2

    build(deps): bump kotestVersion from 5.3.2 to 5.4.2

    Bumps kotestVersion from 5.3.2 to 5.4.2. Updates kotest-runner-junit5 from 5.3.2 to 5.4.2

    Commits

    Updates kotest-assertions-core from 5.3.2 to 5.4.2

    Commits

    Updates kotest-property from 5.3.2 to 5.4.2

    Commits

    Updates kotest-framework-datatest from 5.3.2 to 5.4.2

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once it's up-to-date and CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 3
  • build(deps): bump kotestVersion from 5.3.2 to 5.4.1

    build(deps): bump kotestVersion from 5.3.2 to 5.4.1

    Bumps kotestVersion from 5.3.2 to 5.4.1. Updates kotest-runner-junit5 from 5.3.2 to 5.4.1

    Commits

    Updates kotest-assertions-core from 5.3.2 to 5.4.1

    Commits

    Updates kotest-property from 5.3.2 to 5.4.1

    Commits

    Updates kotest-framework-datatest from 5.3.2 to 5.4.1

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once it's up-to-date and CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 3
  • build(deps): bump kotestVersion from 5.3.2 to 5.4.0

    build(deps): bump kotestVersion from 5.3.2 to 5.4.0

    Bumps kotestVersion from 5.3.2 to 5.4.0. Updates kotest-runner-junit5 from 5.3.2 to 5.4.0

    Commits

    Updates kotest-assertions-core from 5.3.2 to 5.4.0

    Commits

    Updates kotest-property from 5.3.2 to 5.4.0

    Commits

    Updates kotest-framework-datatest from 5.3.2 to 5.4.0

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 3
  • build(deps): bump kotestVersion from 5.3.0 to 5.3.2

    build(deps): bump kotestVersion from 5.3.0 to 5.3.2

    Bumps kotestVersion from 5.3.0 to 5.3.2. Updates kotest-runner-junit5 from 5.3.0 to 5.3.2

    Commits

    Updates kotest-assertions-core from 5.3.0 to 5.3.2

    Commits

    Updates kotest-property from 5.3.0 to 5.3.2

    Commits

    Updates kotest-framework-datatest from 5.3.0 to 5.3.2

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java released 
    opened by dependabot[bot] 3
  • build(deps): bump FranzDiebold/github-env-vars-action from 2.3.1 to 2.5.0

    build(deps): bump FranzDiebold/github-env-vars-action from 2.3.1 to 2.5.0

    Bumps FranzDiebold/github-env-vars-action from 2.3.1 to 2.5.0.

    Release notes

    Sourced from FranzDiebold/github-env-vars-action's releases.

    v2.5.0

    Features

    New environment variables

    • CI_PR_SHA_SHORT
    • CI_PR_SHA

    v2.4.0

    Features

    • Updated dependencies.

    New environment variables

    • CI_PR_NUMBER
    • CI_PR_ID
    Commits
    • 61e09f0 Merge pull request #51 from FranzDiebold/feat/CI_PR_SHA
    • 7759a76 Update Readme: Add newly added environment variables.
    • 0f5d8f2 Fix CI_PR_SHA.
    • 72510ef Merge pull request #48 from iamstarkov/feat/CI_BASE_SHA
    • d144085 Prepare for release.
    • 2858253 Improve Makefile: Add help texts.
    • e59d29a Expose an actual SHA for pull requests as CI_PR_SHA(_SHORT).
    • dae1d34 Merge pull request #47 from iamstarkov/feat/CI_PR_NUMBER
    • 010b249 Update demo.
    • b21b36d Update version and dependencies.
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 3
  • build(deps): bump FranzDiebold/github-env-vars-action from 2.3.1 to 2.4.0

    build(deps): bump FranzDiebold/github-env-vars-action from 2.3.1 to 2.4.0

    Bumps FranzDiebold/github-env-vars-action from 2.3.1 to 2.4.0.

    Release notes

    Sourced from FranzDiebold/github-env-vars-action's releases.

    v2.4.0

    Features

    • Updated dependencies.

    New environment variables

    • CI_PR_NUMBER
    • CI_PR_ID
    Commits
    • dae1d34 Merge pull request #47 from iamstarkov/feat/CI_PR_NUMBER
    • 010b249 Update demo.
    • b21b36d Update version and dependencies.
    • 16fae30 add printing CI_PR_NUMBER and CI_PR_ID into the demo workflow
    • ad0bd50 Expose pull request id as CI_PR_NUMBER and CI_PR_ID
    • 3ca94d3 Merge pull request #46 from FranzDiebold/chore/add-funding
    • c6a8cb2 Add GitHub sponsors funding.
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 3
  • build(deps): bump cycjimmy/semantic-release-action from 2 to 3

    build(deps): bump cycjimmy/semantic-release-action from 2 to 3

    Bumps cycjimmy/semantic-release-action from 2 to 3.

    Release notes

    Sourced from cycjimmy/semantic-release-action's releases.

    v3.0.0

    3.0.0 (2022-03-03)

    Features

    • switch operating environment to node16 (b5f16ae), closes #92 #96

    BREAKING CHANGES

    • switch operating environment to node16

    v2.7.0

    2.7.0 (2021-12-12)

    Features

    v2.6.0

    2.6.0 (2021-10-15)

    Features

    • add output for last release version (f8175c6)

    v2.5.4

    2.5.4 (2021-04-30)

    Bug Fixes

    • use error loglevel for installing dependencies (ed6729b), closes #57

    v2.5.3

    ... (truncated)

    Changelog

    Sourced from cycjimmy/semantic-release-action's changelog.

    3.1.2 (2022-10-19)

    Bug Fixes

    • actions: update @​actions/core to cope with new output (3e7aded)

    3.1.1 (2022-08-30)

    Bug Fixes

    • set last_release_version output even if no release has been published (b1467cd)

    3.1.0 (2022-08-05)

    Features

    • handle versioned extends inputs correctly (4a51b9f)

    3.0.0 (2022-03-03)

    Features

    • switch operating environment to node16 (b5f16ae), closes #92 #96

    BREAKING CHANGES

    • switch operating environment to node16

    2.7.0 (2021-12-12)

    Features

    2.6.0 (2021-10-15)

    Features

    • add output for last release version (f8175c6)

    2.5.4 (2021-04-30)

    ... (truncated)

    Commits
    • 8f6ceb9 chore(release): 3.2.0 [skip ci]
    • a297eb1 Merge pull request #135 from dkhunt27/cycjimmy
    • 385af4f feat: added gitHead and gitTag outputs
    • 17e74ff Merge pull request #2 from cycjimmy/main
    • bdd914f docs(README): update broken links
    • be27b56 chore(release): 3.1.2 [skip ci]
    • 37e7c02 Merge pull request #129 from OlivierCuyp/main
    • 3e7aded fix(actions): update @​actions/core to cope with new output
    • 8139709 Merge pull request #126 from cycjimmy/dependabot/npm_and_yarn/actions/core-1....
    • 269aa6b Merge pull request #124 from nickmccurdy/rename-to-main
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 1
  • build(deps): bump hadolint/hadolint-action from 2.1.0 to 3.0.0

    build(deps): bump hadolint/hadolint-action from 2.1.0 to 3.0.0

    Bumps hadolint/hadolint-action from 2.1.0 to 3.0.0.

    Release notes

    Sourced from hadolint/hadolint-action's releases.

    v3.0.0

    What's Changed

    New Contributors

    Full Changelog: https://github.com/hadolint/hadolint-action/compare/v2.1.0...v3.0.0

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 1
  • build(deps): bump kotestVersion from 5.3.2 to 5.5.4

    build(deps): bump kotestVersion from 5.3.2 to 5.5.4

    Bumps kotestVersion from 5.3.2 to 5.5.4. Updates kotest-runner-junit5 from 5.3.2 to 5.5.4

    Release notes

    Sourced from kotest-runner-junit5's releases.

    v5.5.4

    Fixes issue 3277.

    gradle test --tests "A*" --tests "B*"

    All tests from A* and B* were skipped instead of being ran.

    This was a regression from 5.4.x, where this used to work. This was because kotest 5.5.3 were using the wrong combinators for combining the inclusion filters.

    Contributors:

    5.5.3

    Updated JUnit version from 5.7.2 to 5.8.2

    Kotest now requires the runtime version of JUnit to be at least 5.8

    Note: If your build somehow manages to put both JUnit 5.7 and 5.8 onto the classpath and they load in the wrong order, you might see problems related to ClassOrderer not being found. Please make sure that only JUnit 5.8+ is loaded

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-assertions-core from 5.3.2 to 5.5.4

    Release notes

    Sourced from kotest-assertions-core's releases.

    v5.5.4

    Fixes issue 3277.

    gradle test --tests "A*" --tests "B*"

    All tests from A* and B* were skipped instead of being ran.

    This was a regression from 5.4.x, where this used to work. This was because kotest 5.5.3 were using the wrong combinators for combining the inclusion filters.

    Contributors:

    5.5.3

    Updated JUnit version from 5.7.2 to 5.8.2

    Kotest now requires the runtime version of JUnit to be at least 5.8

    Note: If your build somehow manages to put both JUnit 5.7 and 5.8 onto the classpath and they load in the wrong order, you might see problems related to ClassOrderer not being found. Please make sure that only JUnit 5.8+ is loaded

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-property from 5.3.2 to 5.5.4

    Release notes

    Sourced from kotest-property's releases.

    v5.5.4

    Fixes issue 3277.

    gradle test --tests "A*" --tests "B*"

    All tests from A* and B* were skipped instead of being ran.

    This was a regression from 5.4.x, where this used to work. This was because kotest 5.5.3 were using the wrong combinators for combining the inclusion filters.

    Contributors:

    5.5.3

    Updated JUnit version from 5.7.2 to 5.8.2

    Kotest now requires the runtime version of JUnit to be at least 5.8

    Note: If your build somehow manages to put both JUnit 5.7 and 5.8 onto the classpath and they load in the wrong order, you might see problems related to ClassOrderer not being found. Please make sure that only JUnit 5.8+ is loaded

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Updates kotest-framework-datatest from 5.3.2 to 5.5.4

    Release notes

    Sourced from kotest-framework-datatest's releases.

    v5.5.4

    Fixes issue 3277.

    gradle test --tests "A*" --tests "B*"

    All tests from A* and B* were skipped instead of being ran.

    This was a regression from 5.4.x, where this used to work. This was because kotest 5.5.3 were using the wrong combinators for combining the inclusion filters.

    Contributors:

    5.5.3

    Updated JUnit version from 5.7.2 to 5.8.2

    Kotest now requires the runtime version of JUnit to be at least 5.8

    Note: If your build somehow manages to put both JUnit 5.7 and 5.8 onto the classpath and they load in the wrong order, you might see problems related to ClassOrderer not being found. Please make sure that only JUnit 5.8+ is loaded

    v5.5.2

    Gradle test filter fixes, by @​myuwono kotest/kotest#3257 Tag inheritance configuration is now available on AbstractProjectConfig

    5.5.1

    Fixed an issue where tests where being skipped when filtered out by the full spec name

    v5.5.0

    No release notes provided.

    5.4.2

    No release notes provided.

    v5.4.1

    No release notes provided.

    v5.4.0

    No release notes provided.

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot will merge this PR once CI passes on it, as requested by @bot-anik.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 2
  • build(deps): bump org.jlleitschuh.gradle.ktlint from 10.3.0 to 11.0.0

    build(deps): bump org.jlleitschuh.gradle.ktlint from 10.3.0 to 11.0.0

    Bumps org.jlleitschuh.gradle.ktlint from 10.3.0 to 11.0.0.

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 1
  • build(deps): bump wagoid/commitlint-github-action from 4 to 5

    build(deps): bump wagoid/commitlint-github-action from 4 to 5

    Bumps wagoid/commitlint-github-action from 4 to 5.

    Changelog

    Sourced from wagoid/commitlint-github-action's changelog.

    4.1.15 (2022-06-16)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 1
Releases(v1.1.0)
Owner
OKP4 – Open Knowledge Protocol For
OKP4 – Open Knowledge Protocol For
Kafka bindings for Kotlin `suspend`, and Kafka streaming operators for KotlinX Flow.

Module kotlin-kafka Rationale Goals Example This project is still under development, andd started as a playground where I was playing around with Kafk

Simon Vergauwen 34 Dec 30, 2022
kafka test with embedded kafka

kafka-test Requirements running Kafka on localhost:9092 How to use cat sampleuser.json | http POST localhost:9000/produce or use runConfiguration ./.r

null 0 Dec 9, 2021
Kafka-hot-and-cold-retries - Demo project for elaborating how hot and cold retries can be applied in Kafka

Apache Kafka® - Hot and Cold Retries A demo project for elaborating how hot and

Berat CANKAR 11 Jun 10, 2022
Screencast using Minecraft blocks using Minestom

BlockScreen ??️ Usage Note: This can only be used locally, servers generally don't have capturable screens First, download the latest jar, then to sta

emortal 3 May 4, 2022
Meetups microservice, applying tactical DDD building blocks and in a real example.

Meetups microservice: Applying tactical DDD Description This project is a practical example to understand the tactical patterns/building-blocks that d

Albert Llousas Ortiz 6 Aug 2, 2022
Kafka Connect JSLT Single Message Transform

This is an implementation of the Kafka Connect SMT interface to offer transformation capabilities using the Schibsted JSLT library.

willhaben 2 May 25, 2022
This repository contains event driven redis app uses redis streams

Spring Boot Redis Streams This repository contains event driven redis app uses redis streams Run redis in docker docker run --rm --name redis -itp6379

Maksim Kostromin 1 Dec 1, 2021
KSP annotation processor for Toothpick

toothpick-ksp KSP annotation processor for Toothpick. All credits go to olivierperez/ksp for the initial work on a KSP processor. Bear in mind this is

null 0 Oct 19, 2021
Event State Processor Generator plugin is compatible with IntelliJ and Android Studio.

Event State Processor Generator plugin is compatible with IntelliJ and Android Studio. It provides source code generation for the EventStateProcessor Library to increase code productivity in Flutter apps development.

Extreme Vietnam Public 2 Dec 7, 2021
Kotlin Symbol Processor library to create Mutable and Immutable variants of objects.

implier Kotlin Symbol Processor plugin to create Mutable and Immutable variants of objects. Examples @ImmutableImpl @MutableImpl public interface Samp

Vadim Yaroschuk 14 Nov 8, 2022
glide's ksp compiler ,use kotlin symbol processor

glide-ksp glide's ksp compiler ,use kotlin symbol processor requirements library version kotlin >= 1.6.10 ksp 1.6.10-1.0.2 usage add jitpack repositor

Mistletoe 24 Oct 17, 2022
An annotation processor library that automatically creates Hilt's `@Binds` functions and modules.

HiltBinder An annotation processor library that automatically creates Hilt's @Binds functions and modules. If you think this library is useful, please

SangMin Park 5 Sep 19, 2022
🎲 Kotlin Symbol Processor to auto-generate extensive sealed classes and interfaces for Android and Kotlin.

SealedX ?? Kotlin Symbol Processor to auto-generate extensive sealed classes and interfaces for Android and Kotlin. Why SealedX? SealedX generates ext

Jaewoong Eum 236 Nov 30, 2022
A Kotlin Symbol Processor to list sealed object instances.

Sealed Object Instances A Kotlin Symbol Processor to list sealed object instances. Usage Let's say you have a similar structure of sealed classes (or

Simon Marquis 17 Nov 17, 2022
Plugin and Desktop app for parsing layout xml into Composable code

composed-xml Inspired by - Recompose composed-xml is a tool for parsing Android layouts into Jetpack Compose code. It can work as both Desktop app or

Bacho Kurtanidze 9 Dec 26, 2022
A clean-aesthetically pleasing Measuring Application, which uses relevant sensors-converts raw sensor data into human readable formatted outputs-and displays accurate measurements.

Measure App A clean-aesthetically pleasing Measuring Application, which uses relevant sensors-converts raw sensor data into human readable formatted o

ACM Student Chapter, PESU ECC 1 Oct 15, 2021
A study into creating a fully automatic FRC robot

AutoFRC This is a study into creating a fully automatic FRC robot. This process relies on several key algorithms: pose estiation: using the WpiLib Dif

null 1 Jun 29, 2022
Plugin to integrate EventStoreDB into Ktor-Server!

Ktor Plugin EventStoreDB EventStoreDB is an open-source database technology that stores your critical data in streams of immutable events. It was buil

null 7 Sep 1, 2022
A deep learning based mobile application for the multi-class classification of pneumonia into three categories via Chest X-rays

PneumoniaClassifier A deep learning based mobile application for the multi-class classification of pneumonia into three categories via Chest X-rays. W

Timilehin Aregbesola 2 Dec 15, 2021