File tree Expand file tree Collapse file tree 4 files changed +52
-2
lines changed
layouts/partials/releases Expand file tree Collapse file tree 4 files changed +52
-2
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,8 @@ content:
82
82
83
83
- url : https://github.com/apache/camel-karaf.git
84
84
branches :
85
+ - main
86
+ - camel-karaf-4.8.x
85
87
- camel-karaf-3.22.x
86
88
start_path : docs
87
89
Original file line number Diff line number Diff line change
1
+ ---
2
+ url : " /releases/karaf-4.8.1/"
3
+ date : 2024-07-19
4
+ type : release-note
5
+ version : " 4.8.1"
6
+ title : " Camel Karaf release 4.8.1"
7
+ preview : " "
8
+ changelog : " "
9
+ category : " camel-karaf"
10
+ milestone : 2
11
+ jdk : [17]
12
+ ---
Original file line number Diff line number Diff line change @@ -102,10 +102,21 @@ camel-kafka-connector:
102
102
- name : ' Binaries'
103
103
title : ' Connectors download list'
104
104
link : ' /camel-kafka-connector/next/reference/index.html'
105
+ camel-karaf :
106
+ id : ' camel-karaf'
107
+ name : ' Apache Karaf'
108
+ order : 6
109
+ kinds :
110
+ - name : ' latest'
111
+ filter : ' latest'
112
+ downloads :
113
+ - name : ' Sources'
114
+ path_format : ' camel/camel-karaf/{version}/camel-karaf-{version}-source-release.zip'
115
+ filename_format : ' camel-karaf-{version}-source-release.zip'
105
116
camel-quarkus :
106
117
id : ' camel-quarkus'
107
118
name : ' Apache Camel Quarkus'
108
- order : 6
119
+ order : 7
109
120
kinds :
110
121
- name : ' latest'
111
122
filter : ' latest'
@@ -122,7 +133,7 @@ camel-quarkus:
122
133
camel-upgrade-recipes :
123
134
id : ' camel-upgrade-recipes'
124
135
name : ' Apache Camel Upgrade Recipes'
125
- order : 7
136
+ order : 8
126
137
kinds :
127
138
- name : ' latest'
128
139
filter : ' latest'
Original file line number Diff line number Diff line change
1
+ {{ partial "releases/downloads.html" (dict "Category" (index (index $.Site.Data "release-categories") "camel-karaf") "Pages" $.Site.Pages "Version" .Params.version) }}
2
+
3
+ < h2 id ="git "> < a class ="anchor " href ="#git "> </ a > Git tag checkout</ h2 >
4
+ < p >
5
+ Release is tagged with < code > camel-karaf-{{ .Params.version }}</ code > in the Git, to fetch it use:
6
+ </ p >
7
+ < pre >
8
+ git clone https://github.com/apache/camel-karaf.git
9
+ cd camel-karaf
10
+ git checkout camel-karaf-{{ .Params.version }}</ pre >
11
+
12
+ < h2 id ="resolved "> < a class ="anchor " href ="#resolved "> </ a > Resolved issues</ h2 >
13
+ < p > Here is a list of all the issues that have been resolved for this release</ p >
14
+ {{ $headers := dict }}
15
+ {{ with os.Getenv "GITHUB_TOKEN" }}
16
+ {{ $headers = dict "Authorization" (printf "Bearer %s" .) }}
17
+ {{ else }}
18
+ {{ $headers = dict "Authorization" (printf "Basic %s" (printf "%s:%s" $.Site.Params.GitHubUsername $.Site.Params.GitHubToken | base64Encode)) }}
19
+ {{ end }}
20
+ {{ $issues := getJSON "https://api.github.com/repos/apache/camel-karaf/issues?state=closed&milestone=" (string .Params.milestone ) $headers }}
21
+ < dl >
22
+ {{ range $issues }}
23
+ < dt > < a href ="{{ .html_url }} "> #{{ .number }}</ a > </ dt > < dd > {{ .title }}</ dd >
24
+ {{ end }}
25
+ </ dl >
You can’t perform that action at this time.
0 commit comments