This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-website.git
commit 6073ebd17ef233b88a0a32b800de4a40e111fe20 Author: Zoran Regvart <zregv...@apache.org> AuthorDate: Mon Jul 29 13:01:34 2019 +0200 fix: set titles for release notes This sets the titles for release notes and refines the README and the release-note archetype. Ref CAMEL-13798 --- README.md | 207 ++++++++++++++++++------------------- archetypes/release-note.md | 5 +- content/releases/release-2.18.0.md | 1 + content/releases/release-2.18.1.md | 1 + content/releases/release-2.18.2.md | 1 + content/releases/release-2.18.3.md | 1 + content/releases/release-2.18.4.md | 1 + content/releases/release-2.18.5.md | 1 + content/releases/release-2.19.0.md | 1 + content/releases/release-2.19.1.md | 1 + content/releases/release-2.19.2.md | 1 + content/releases/release-2.19.3.md | 1 + content/releases/release-2.19.4.md | 1 + content/releases/release-2.19.5.md | 1 + content/releases/release-2.20.0.md | 1 + content/releases/release-2.20.1.md | 1 + content/releases/release-2.20.2.md | 1 + content/releases/release-2.20.3.md | 1 + content/releases/release-2.20.4.md | 1 + content/releases/release-2.21.0.md | 1 + content/releases/release-2.21.1.md | 1 + content/releases/release-2.21.2.md | 1 + content/releases/release-2.21.3.md | 1 + content/releases/release-2.21.4.md | 1 + content/releases/release-2.21.5.md | 1 + content/releases/release-2.22.0.md | 1 + content/releases/release-2.22.1.md | 1 + content/releases/release-2.22.2.md | 1 + content/releases/release-2.22.3.md | 1 + content/releases/release-2.22.4.md | 1 + content/releases/release-2.22.5.md | 1 + content/releases/release-2.23.0.md | 1 + content/releases/release-2.23.1.md | 1 + content/releases/release-2.23.2.md | 1 + content/releases/release-2.23.3.md | 1 + content/releases/release-2.24.0.md | 1 + content/releases/release-2.24.1.md | 1 + 37 files changed, 136 insertions(+), 111 deletions(-) diff --git a/README.md b/README.md index 605ae99..e810b55 100644 --- a/README.md +++ b/README.md @@ -9,17 +9,17 @@ Tools used to generate the website: - [Node.js](https://nodejs.org/) a JavaScript runtime used to build the website. You will need to use Node.js version 10. - [yarn](https://yarnpkg.com/) a blazing fast dependency and package manager tool used to download and manage required libraries. - - [Gulp](http://gulpjs.com/) a task automation tool. Used to build the Camel + - (installed via yarn) [Gulp](http://gulpjs.com/) a task automation tool. Used to build the Camel Antora UI theme. - - [Hugo](https://gohugo.io) a static site generator. Simplified, it takes the - documentation from the `content` folder and applies templates from `layouts` - folder and together with any resources in `static` folder generates output in - the `public` folder. - - [Antora](https://antora.org/) a documentation site generator. It uses + - (installed via yarn) [Hugo](https://gohugo.io) a static site generator. Simplified, it takes the + documentation from the `content` directory and applies templates from `layouts` + directory and together with any resources in `static` directory generates output in + the `public` directory. + - (installed via yarn) [Antora](https://antora.org/) a documentation site generator. It uses Asciidoc documents from different sources in the [Camel](https://github.com/apache/camel) and [Camel K](https://github.com/apache/camel-k) repositories where user manual and component reference documentation resides and renders them for inclusion in this website. - - [Maven](https://maven.apache.org/) (optional) a build tool used to run the complete website generating process + - (optional) [Maven](https://maven.apache.org/) a build tool used to run the complete website generating process ## Build with Node and yarn @@ -49,38 +49,14 @@ Node on your machine. Note - If you have different Node version other than Node LTS version 10 you can use following command to make Node LTS version 10 as default Node version. - + $ nvm alias default 10 Now that you have Node 10 installed, you can proceed with checking the Yarn installation. #### Yarn -You will need Yarn installed, which is the preferred package manager for the Node ecosystem. - -You should install Yarn globally using the following command: - - $ npm install -g yarn - -`npm` is the Node package manager that comes with the default Node installation. So when you have Node installed you -should also be able to use the `npm` command. - -Note - Since Yarn Documentation is not recommending install Yarn using npm you can refer -Yarn official documentation from here to see how to install Yarn to your Operating system. https://yarnpkg.com/en/docs/install - -#### Hugo - -One last thing is to make sure that you have `Hugo` installed. - - $ which hugo - -If this command fails with an error, you do not have Hugo installed. - -If you haven't install `Hugo` you need to install Hugo in to your Operating system from link bellow. - -https://gohugo.io/getting-started/installing/ - -Now that you have the prerequisites installed, you can fetch and build the camel-website project. +Follow [the documentation on installing](https://yarnpkg.com/en/docs/install) Yarn for your Operating system. #### Clone and Initialize the project @@ -89,20 +65,22 @@ Clone the Apache Camel Website project using git: $ git clone https://github.com/apache/camel-website.git The command above clones the Apache Camel Website project. After that you can switch to the new -project folder on your filesystem. +project directory on your filesystem. ## Build the Antora Camel UI theme First step is to build the Antora ui theme used for the Apache Camel website. The theme sources are located -inside [Project root folder/antora-ui-camel](antora-ui-camel). +inside [Project root directory/antora-ui-camel](antora-ui-camel). So first switch to that directory: -In that folder execute: + $ cd antora-ui-camel + +In that directory execute: + + $ yarn install # needed only once, or if dependencies change + $ yarn build # to perform the ui theme build - $ yarn install // needed only once, or if dependencies change - $ yarn build // to perform the ui theme build - You should see the Antora theme bundle generated in in [antora-ui-camel/build/ui-bundle.zip](antora-ui-camel). - + The Camel Antora UI theme should not be a subject to change very frequently. So you might execute this once and never come back. @@ -111,89 +89,29 @@ never come back. Building the website requires the built Antora Camel UI theme bundle from above. Please check that the theme bundle exists in [antora-ui-camel/build/ui-bundle.zip](antora-ui-camel). -To build the website go to the project root folder and run: +To build the website go to the project root directory and run: - $ yarn install // needed only once, or if dependencies change - $ yarn build // to perform the build + $ yarn install # needed only once, or if dependencies change + $ yarn build # to perform the build This should fetch doc sources for [Camel](https://github.com/apache/camel) and [Camel K](https://github.com/apache/camel-k) -and generate the website with Hugo. You should see the generated website in the `public` folder. +and generate the website with Hugo. You should see the generated website in the `public` directory. ## Preview website locally You can preview the Apache Camel website on your local machine once you have the generated website available in -the `public` folder. +the `public` directory. Hugo can start a simple web server serving the generated site content so you can view it in your favorite browser. Simply call $ yarn preview - + and you will be provided with a web server running the site on [http://localhost:1313/](http://localhost:1313/) Point your favorite browser to `http://localhost:1313/` and you will see the Apache Camel website. -## Build with Maven - -The project provides a simple way to build the website sources locally using the build tool [Maven](https://maven.apache.org/). - -The Maven build automatically downloads the tool binaries such as `node` and `yarn` for you. You do not need to install -those tools on your host then. The binaries are added to the local project sources only and generate the website content. - -As the Maven build uses pinned versions of `node` and `yarn` that are tested to build the website you most likely avoid -build errors due to incompatible versions of `Node.js` tooling installed on your machine. - -### Preparing Maven - -Make sure that you have Maven installed. - - $ mvn --version - -If this command fails with an error, you do not have Maven installed. - -Please install Maven using your favorite package manager (like [Homebrew](https://brew.sh/)) or from -official [Maven binaries](https://maven.apache.org/install.html) - -### Building from scratch - -When building everything from scratch the build executes following steps: - -- Download `yarn` and `Node.js` binaries to the local project -- Load required libraries to the local project using `yarn` -- Build the Antora Camel UI theme ([antora-ui-camel](antora-ui-camel)) -- Fetch the doc sources from [Camel](https://github.com/apache/camel) - and [Camel K](https://github.com/apache/camel-k) github reporsitories -- Build the website content using Hugo - -You can do all of this with one single command: - - $ mvn package - -The whole process takes up to five minutes (time to grab some coffee!) - -When the build is finished you should see the generated website in the `public` folder. - -### Rebuild website - -When rebuilding the website you can optimize the build process as some of the steps are only required for a fresh -build from scratch. You can skip the ui theme rendering (unless you have changes in the theme itself). - - $ mvn package -Dskip.theme - -This should save you some minutes in the build process. You can find the updated website content in the `public` folder. - -### Clean build - -When rebuilding the website the process uses some cached content (e.g. the fetched doc sources for -[Camel](https://github.com/apache/camel) and [Camel K](https://github.com/apache/camel-k) or the Antora ui theme). -If you want to start from scratch for some reason you can simply add the `clean` operation to the build which removes -all generated sources in the project first. - - $ mvn clean package - -Of course this then takes some more time than an optimized rebuild (time to grab another coffee!). - ## Contribute changes The Apache Camel website is composed of different sources. So where to add and contribute changes in particular? @@ -207,7 +125,7 @@ menu items there. #### Content -The basic website content is located in [content](content). You can find several different folders representing different +The basic website content is located in [content](content). You can find several different directorys representing different areas of the website: - [docs](content/docs): Getting started, user manual, component reference @@ -216,6 +134,7 @@ areas of the website: - [community](content/community): Support, contributing, articles, etc. - [projects](content/projects): Subproject information (e.g. Camel K) - [security](content/security): Security information and advisories +- [releases](content/releases): Release notes #### Adding new security advisory content @@ -230,9 +149,20 @@ Place the signed PGP advisory in plain text as `content/security/CVE-YYYY-NNNNN. Make sure that you set the `draft: false` property to have the page published. +#### Adding new release note + +Use the `release-note` archetype to create a new markdown content file in `content/releases`: + + $ yarn run hugo new --kind release-note releases/release-x.y.z # replace x.y.z with the release version + +This will create a `content/release-x.y.z.md` file which you need to edit to and fill in the required parameters. +The content of the created markdown file is added to the _New and Noteworth_ section. + +Make sure that you set the `draft: false` property to have the page published. + #### Layout and templates -Layout related changes go into [layout](layout) folder where you will find HTML templates that define the common layout +Layout related changes go into [layout](layout) directory where you will find HTML templates that define the common layout of the different page categories including footer and header templates. ### Changes in Antora UI theme @@ -261,3 +191,64 @@ Your changes in these repositories will automatically get visible on the website [1]: antora-ui-camel/src/img/logo32-d.png "Apache Camel" + +## Build with Maven + +The project provides a simple way to build the website sources locally using the build tool [Maven](https://maven.apache.org/). + +The Maven build automatically downloads the tool binaries such as `node` and `yarn` for you. You do not need to install +those tools on your host then. The binaries are added to the local project sources only and generate the website content. + +As the Maven build uses pinned versions of `node` and `yarn` that are tested to build the website you most likely avoid +build errors due to incompatible versions of `Node.js` tooling installed on your machine. + +### Preparing Maven + +Make sure that you have Maven installed. + + $ mvn --version + +If this command fails with an error, you do not have Maven installed. + +Please install Maven using your favorite package manager (like [Homebrew](https://brew.sh/)) or from +official [Maven binaries](https://maven.apache.org/install.html) + +### Building from scratch + +When building everything from scratch the build executes following steps: + +- Download `yarn` and `Node.js` binaries to the local project +- Load required libraries to the local project using `yarn` +- Build the Antora Camel UI theme ([antora-ui-camel](antora-ui-camel)) +- Fetch the doc sources from [Camel](https://github.com/apache/camel) + and [Camel K](https://github.com/apache/camel-k) github reporsitories +- Build the website content using Hugo + +You can do all of this with one single command: + + $ mvn package + +The whole process takes up to five minutes (time to grab some coffee!) + +When the build is finished you should see the generated website in the `public` directory. + +### Rebuild website + +When rebuilding the website you can optimize the build process as some of the steps are only required for a fresh +build from scratch. You can skip the ui theme rendering (unless you have changes in the theme itself). + + $ mvn package -Dskip.theme + +This should save you some minutes in the build process. You can find the updated website content in the `public` directory. + +### Clean build + +When rebuilding the website the process uses some cached content (e.g. the fetched doc sources for +[Camel](https://github.com/apache/camel) and [Camel K](https://github.com/apache/camel-k) or the Antora ui theme). +If you want to start from scratch for some reason you can simply add the `clean` operation to the build which removes +all generated sources in the project first. + + $ mvn clean package + +Of course this then takes some more time than an optimized rebuild (time to grab another coffee!). + diff --git a/archetypes/release-note.md b/archetypes/release-note.md index af67d7b..5258428 100644 --- a/archetypes/release-note.md +++ b/archetypes/release-note.md @@ -1,10 +1,9 @@ --- -title: "Apache Camel Releases - {{ .Name | title }}" -url: /releases/{{ .Name }}.html date: {{ .Date }} draft: true type: release-note -version: "" +version: "{{ replace .File.BaseFileName "release-" "" }}" +title: "Release {{ replace .File.BaseFileName "release-" "" }}" preview: "" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.18.0.md b/content/releases/release-2.18.0.md index b03340e..edd32d2 100644 --- a/content/releases/release-2.18.0.md +++ b/content/releases/release-2.18.0.md @@ -3,6 +3,7 @@ date: 2016-10-05 draft: false type: release-note version: 2.18.0 +title: "Release 2.18.0" preview: "Major release for 2.18.x" apiBreaking: "Removed the deprecated vtdxml language. You can use the generic language (vtdxml) instead" knownIssues: "" diff --git a/content/releases/release-2.18.1.md b/content/releases/release-2.18.1.md index 48cb5bf..d3d1f9b 100644 --- a/content/releases/release-2.18.1.md +++ b/content/releases/release-2.18.1.md @@ -3,6 +3,7 @@ date: 2016-11-27 draft: false type: release-note version: 2.18.1 +title: "Release 2.18.1" preview: "Minor update of the 2.18.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.18.2.md b/content/releases/release-2.18.2.md index 596b050..9d189ad 100644 --- a/content/releases/release-2.18.2.md +++ b/content/releases/release-2.18.2.md @@ -3,6 +3,7 @@ date: 2017-01-22 draft: false type: release-note version: 2.18.2 +title: "Release 2.18.2" preview: "Minor update of the 2.18.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.18.3.md b/content/releases/release-2.18.3.md index 505e7dd..7cda7e0 100644 --- a/content/releases/release-2.18.3.md +++ b/content/releases/release-2.18.3.md @@ -3,6 +3,7 @@ date: 2017-03-08 draft: false type: release-note version: 2.18.3 +title: "Release 2.18.3" preview: "Minor update of the 2.18.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.18.4.md b/content/releases/release-2.18.4.md index 1f2f067..f2b088a 100644 --- a/content/releases/release-2.18.4.md +++ b/content/releases/release-2.18.4.md @@ -3,6 +3,7 @@ date: 2017-03-08 draft: false type: release-note version: 2.18.4 +title: "Release 2.18.4" preview: "Minor update of the 2.18.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.18.5.md b/content/releases/release-2.18.5.md index dc8203c..0a4cebd 100644 --- a/content/releases/release-2.18.5.md +++ b/content/releases/release-2.18.5.md @@ -3,6 +3,7 @@ date: 2017-09-21 draft: false type: release-note version: 2.18.5 +title: "Release 2.18.5" preview: "Minor update of the 2.18.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.19.0.md b/content/releases/release-2.19.0.md index 1deb8c8..70b89ff 100644 --- a/content/releases/release-2.19.0.md +++ b/content/releases/release-2.19.0.md @@ -3,6 +3,7 @@ date: 2017-04-30 draft: false type: release-note version: 2.19.0 +title: "Release 2.19.0" preview: "Major release for 2.19.x" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.19.1.md b/content/releases/release-2.19.1.md index 3048250..0098b87 100644 --- a/content/releases/release-2.19.1.md +++ b/content/releases/release-2.19.1.md @@ -3,6 +3,7 @@ date: 2017-06-11 draft: false type: release-note version: 2.19.1 +title: "Release 2.19.1" preview: "Minor update of the 2.19.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.19.2.md b/content/releases/release-2.19.2.md index 87fb5dd..d76010d 100644 --- a/content/releases/release-2.19.2.md +++ b/content/releases/release-2.19.2.md @@ -3,6 +3,7 @@ date: 2017-07-28 draft: false type: release-note version: 2.19.2 +title: "Release 2.19.2" preview: "Minor update of the 2.19.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.19.3.md b/content/releases/release-2.19.3.md index d86442b..901123e 100644 --- a/content/releases/release-2.19.3.md +++ b/content/releases/release-2.19.3.md @@ -3,6 +3,7 @@ date: 2017-09-10 draft: false type: release-note version: 2.19.3 +title: "Release 2.19.3" preview: "Minor update of the 2.19.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.19.4.md b/content/releases/release-2.19.4.md index 7dcc7fe..505b4fc 100644 --- a/content/releases/release-2.19.4.md +++ b/content/releases/release-2.19.4.md @@ -3,6 +3,7 @@ date: 2017-11-01 draft: false type: release-note version: 2.19.4 +title: "Release 2.19.4" preview: "Minor update of the 2.19.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.19.5.md b/content/releases/release-2.19.5.md index 27c4036..3a49fbb 100644 --- a/content/releases/release-2.19.5.md +++ b/content/releases/release-2.19.5.md @@ -3,6 +3,7 @@ date: 2018-03-24 draft: false type: release-note version: 2.19.5 +title: "Release 2.19.5" preview: "Minor update of the 2.19.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.20.0.md b/content/releases/release-2.20.0.md index a1bcf85..ef50645 100644 --- a/content/releases/release-2.20.0.md +++ b/content/releases/release-2.20.0.md @@ -3,6 +3,7 @@ date: 2017-10-07 draft: false type: release-note version: 2.20.0 +title: "Release 2.20.0" preview: "Major release for 2.20.x" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.20.1.md b/content/releases/release-2.20.1.md index e48cf24..78f25b8 100644 --- a/content/releases/release-2.20.1.md +++ b/content/releases/release-2.20.1.md @@ -3,6 +3,7 @@ date: 2017-11-10 draft: false type: release-note version: 2.20.1 +title: "Release 2.20.1" preview: "Minor update of the 2.20.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.20.2.md b/content/releases/release-2.20.2.md index 0b01d70..03aedf9 100644 --- a/content/releases/release-2.20.2.md +++ b/content/releases/release-2.20.2.md @@ -3,6 +3,7 @@ date: 2018-01-22 draft: false type: release-note version: 2.20.2 +title: "Release 2.20.2" preview: "Minor update of the 2.20.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.20.3.md b/content/releases/release-2.20.3.md index f4b5139..a84f42a 100644 --- a/content/releases/release-2.20.3.md +++ b/content/releases/release-2.20.3.md @@ -3,6 +3,7 @@ date: 2018-03-25 draft: false type: release-note version: 2.20.3 +title: "Release 2.20.3" preview: "Minor update of the 2.20.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.20.4.md b/content/releases/release-2.20.4.md index 0a6a818..a36593a 100644 --- a/content/releases/release-2.20.4.md +++ b/content/releases/release-2.20.4.md @@ -3,6 +3,7 @@ date: 2018-07-21 draft: false type: release-note version: 2.20.4 +title: "Release 2.20.4" preview: "Minor update of the 2.20.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.21.0.md b/content/releases/release-2.21.0.md index caa387c..c8df00c 100644 --- a/content/releases/release-2.21.0.md +++ b/content/releases/release-2.21.0.md @@ -3,6 +3,7 @@ date: 2018-03-11 draft: false type: release-note version: 2.21.0 +title: "Release 2.21.0" preview: "Major release for 2.21.x" apiBreaking: "All the AwsEndpoint uri options have been removed: since we are now using AWS client builders, the way we were using the endpoint cannot be used anymore, since clients are immutable now. If you still need to set an AWS endpoint on your client, you can create your client instance and put it in the Camel registry." knownIssues: "" diff --git a/content/releases/release-2.21.1.md b/content/releases/release-2.21.1.md index 3b5247e..c2f2592 100644 --- a/content/releases/release-2.21.1.md +++ b/content/releases/release-2.21.1.md @@ -3,6 +3,7 @@ date: 2018-04-29 draft: false type: release-note version: 2.21.1 +title: "Release 2.21.1" preview: "Minor update of the 2.21.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.21.2.md b/content/releases/release-2.21.2.md index fe46ef6..a2218f0 100644 --- a/content/releases/release-2.21.2.md +++ b/content/releases/release-2.21.2.md @@ -3,6 +3,7 @@ date: 2018-07-16 draft: false type: release-note version: 2.21.2 +title: "Release 2.21.2" preview: "Minor update of the 2.21.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.21.3.md b/content/releases/release-2.21.3.md index 0d62da1..3f2cc7f 100644 --- a/content/releases/release-2.21.3.md +++ b/content/releases/release-2.21.3.md @@ -3,6 +3,7 @@ date: 2018-10-21 draft: false type: release-note version: 2.21.3 +title: "Release 2.21.3" preview: "Minor update of the 2.21.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.21.4.md b/content/releases/release-2.21.4.md index bd0ca41..6a16f17 100644 --- a/content/releases/release-2.21.4.md +++ b/content/releases/release-2.21.4.md @@ -3,6 +3,7 @@ date: 2019-01-06 draft: false type: release-note version: 2.21.4 +title: "Release 2.21.4" preview: "Minor update of the 2.21.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.21.5.md b/content/releases/release-2.21.5.md index ffae915..9ec4b55 100644 --- a/content/releases/release-2.21.5.md +++ b/content/releases/release-2.21.5.md @@ -3,6 +3,7 @@ date: 2019-02-02 draft: false type: release-note version: 2.21.5 +title: "Release 2.21.5" preview: "Minor update of the 2.21.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.22.0.md b/content/releases/release-2.22.0.md index 9cf647a..d2b41a9 100644 --- a/content/releases/release-2.22.0.md +++ b/content/releases/release-2.22.0.md @@ -3,6 +3,7 @@ date: 2018-06-29 draft: false type: release-note version: 2.22.0 +title: "Release 2.22.0" preview: "Major release for 2.22.x" apiBreaking: "The RestProducerFactory has an API change where the RestConfiguration is provided as parameter as well." knownIssues: "" diff --git a/content/releases/release-2.22.1.md b/content/releases/release-2.22.1.md index 81706bb..a208188 100644 --- a/content/releases/release-2.22.1.md +++ b/content/releases/release-2.22.1.md @@ -3,6 +3,7 @@ date: 2018-09-02 draft: false type: release-note version: 2.22.1 +title: "Release 2.22.1" preview: "Minor update of the 2.22.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.22.2.md b/content/releases/release-2.22.2.md index 7a6b584..382932a 100644 --- a/content/releases/release-2.22.2.md +++ b/content/releases/release-2.22.2.md @@ -3,6 +3,7 @@ date: 2018-11-01 draft: false type: release-note version: 2.22.2 +title: "Release 2.22.2" preview: "Minor update of the 2.22.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.22.3.md b/content/releases/release-2.22.3.md index 6892c76..68f26cc 100644 --- a/content/releases/release-2.22.3.md +++ b/content/releases/release-2.22.3.md @@ -3,6 +3,7 @@ date: 2019-01-19 draft: false type: release-note version: 2.22.3 +title: "Release 2.22.3" preview: "Minor update of the 2.22.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.22.4.md b/content/releases/release-2.22.4.md index d420587..b79f06c 100644 --- a/content/releases/release-2.22.4.md +++ b/content/releases/release-2.22.4.md @@ -3,6 +3,7 @@ date: 2019-04-07 draft: false type: release-note version: 2.22.4 +title: "Release 2.22.4" preview: "Minor update of the 2.22.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.22.5.md b/content/releases/release-2.22.5.md index c606349..6630fe2 100644 --- a/content/releases/release-2.22.5.md +++ b/content/releases/release-2.22.5.md @@ -3,6 +3,7 @@ date: 2019-06-08 draft: false type: release-note version: 2.22.5 +title: "Release 2.22.5" preview: "Minor update of the 2.22.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.23.0.md b/content/releases/release-2.23.0.md index 24f776b..56c5679 100644 --- a/content/releases/release-2.23.0.md +++ b/content/releases/release-2.23.0.md @@ -3,6 +3,7 @@ date: 2018-11-24 draft: false type: release-note version: 2.23.0 +title: "Release 2.23.0" preview: "Major release for 2.23.x" apiBreaking: "The HttpBinding interface has new methods for setting fileNameExtWhiteList option. The copy, copyFrom methods on org.apache.camel.Message now also copy over reference to the exchange" diff --git a/content/releases/release-2.23.1.md b/content/releases/release-2.23.1.md index fa690aa..4de1db7 100644 --- a/content/releases/release-2.23.1.md +++ b/content/releases/release-2.23.1.md @@ -3,6 +3,7 @@ date: 2019-01-12 draft: false type: release-note version: 2.23.1 +title: "Release 2.23.1" preview: "Minor update of the 2.23.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.23.2.md b/content/releases/release-2.23.2.md index a5b0f7b..b909d89 100644 --- a/content/releases/release-2.23.2.md +++ b/content/releases/release-2.23.2.md @@ -3,6 +3,7 @@ date: 2019-04-06 draft: false type: release-note version: 2.23.2 +title: "Release 2.23.2" preview: "Minor update of the 2.23.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.23.3.md b/content/releases/release-2.23.3.md index b821ba8..adae785 100644 --- a/content/releases/release-2.23.3.md +++ b/content/releases/release-2.23.3.md @@ -3,6 +3,7 @@ date: 2019-06-09 draft: false type: release-note version: 2.23.3 +title: "Release 2.23.3" preview: "Minor update of the 2.23.x branch" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.24.0.md b/content/releases/release-2.24.0.md index d9402f2..12a098c 100644 --- a/content/releases/release-2.24.0.md +++ b/content/releases/release-2.24.0.md @@ -3,6 +3,7 @@ date: 2019-05-12 draft: false type: release-note version: 2.24.0 +title: "Release 2.24.0" preview: "Major release for 2.24.x" apiBreaking: "" knownIssues: "" diff --git a/content/releases/release-2.24.1.md b/content/releases/release-2.24.1.md index 2eee814..70d73d1 100644 --- a/content/releases/release-2.24.1.md +++ b/content/releases/release-2.24.1.md @@ -3,6 +3,7 @@ date: 2019-06-20 draft: false type: release-note version: 2.24.1 +title: "Release 2.24.1" preview: "Minor update of the 2.24.x branch" apiBreaking: "" knownIssues: ""