We maintain a handy table linking to binary packages for the latest release on the connector list.
For this release you can use Maven Central Repository Search to find and download the binary packages. This search will show the packages from this release: g:org.apache.camel.kafkaconnector AND l:package AND v:{{ .Params.version }}
, or you can follow this link to the search results.
Source distribution contains all the artifacts Apache Camel project distributes in source form
{{ partial "releases/downloads.html" (dict "Category" (index (index $.Site.Data "release-categories") "camel-kafka-connector") "Pages" $.Site.Pages "Version" .Params.version) }}
Release is tagged with
camel-kafka-connector{{ .Params.version }}
in the Git, to fetch
it use:
git clone https://git-wip-us.apache.org/repos/asf/camel-kafka-connector.git cd camel-kafka-connector git checkout camel-kafka-connector-{{ .Params.version }}
Here is a list of all the issues that have been resolved for this release
{{ $headers := dict }} {{ with os.Getenv "GITHUB_TOKEN" }} {{ $headers = dict "Authorization" (printf "Bearer %s" .) }} {{ else }} {{ $headers = dict "Authorization" (printf "Basic %s" (printf "%s:%s" $.Site.Params.GitHubUsername $.Site.Params.GitHubToken | base64Encode)) }} {{ end }} {{ $issues := getJSON "https://api.github.com/repos/apache/camel-kafka-connector/issues?state=closed&labels=" (string .Params.version) $headers }}