This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new e83f75f  Removed 2.19.x release notes since already ported to website 
repo
e83f75f is described below

commit e83f75f5445b7d7c102a792b06c1317713c5ab3e
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Fri Jul 19 14:36:55 2019 +0200

    Removed 2.19.x release notes since already ported to website repo
---
 .../en/release-notes/camel-2190-release.adoc       | 317 ---------------------
 .../en/release-notes/camel-2191-release.adoc       |  40 ---
 .../en/release-notes/camel-2192-release.adoc       |  39 ---
 .../en/release-notes/camel-2193-release.adoc       |  39 ---
 .../en/release-notes/camel-2194-release.adoc       |  39 ---
 .../en/release-notes/camel-2195-release.adoc       |  39 ---
 6 files changed, 513 deletions(-)

diff --git a/docs/user-manual/en/release-notes/camel-2190-release.adoc 
b/docs/user-manual/en/release-notes/camel-2190-release.adoc
deleted file mode 100644
index 6b765ef8..0000000
--- a/docs/user-manual/en/release-notes/camel-2190-release.adoc
+++ /dev/null
@@ -1,317 +0,0 @@
-[[Camel2.19.0Release-Camel2.19.0Release]]
-== Camel 2.19.0 Release
-
-### New and Noteworthy
-
-Welcome to the 2.19.0 release which resolved over 670 issues including
-new features, improvements and bug fixes.
-
-* Introduced
-https://github.com/apache/camel/blob/master/connectors/camel-connector/src/main/docs/connector-component.adoc#connector-component[Camel
-Connector]'s which is a simplified version of a Camel component that has
-been pre-configured for a specific use-case.
-* Upgraded to Spring Boot 1.5.x.
-* The link:camel-maven-plugin.adoc[Camel Maven Plugin] now provides the
-`camel:validate` goal to parse your Java and XML source code for any
-Camel routes and report invalid Camel endpoint uri and simple expression
-errors. You can run this at code time (not runtime). 
-* Camel `Main` and link:spring-boot.html[Spring Boot]
-and link:camel-maven-plugin.adoc[Camel Maven Plugin] can now auto
-terminate the JVM after Camel has been running for maximum duration of
-seconds, processed messages or been idle for a period.
-* Camel source code can build with Java 9 in preparation for official
-support for Java 9 in a future release
-* All the Camel Spring Boot starter components now has more of the
-components default values included in their metadata which allows
-tooling to display such information
-* Deprecated more components and camel-core APIs that will be dropped in
-Camel 3.0 or sometime in the future
-* Introduced `ReloadStrategy` as SPI which allows custom providers to
-implement logic for triggering live reloads of Camel routes.
-* The  link:camel-maven-plugin.adoc[Camel Maven Plugin] now allows to
-live reload route changes from XML files when running Camel. This can
-also be enabled from the `Main` class.
-* Introduced a new `camel-catalog-rest` artifact which is a tiny
-standalone REST API of the CamelCatalog using JAX-RS and Swagger
-Annotations.
-* Added `camel-catalog-rest-app` as a standalone application which used
-Apache CXF with Jetty to host the Catalog REST API with embedded Swagger
-UI
-* Returning `null` from <<bean-component,Bean>> should work similar to
-how `setBody` and `transform` works when they set a `null` body.
-* The Camel Spring Boot starter components now have their auto
-configuration depends
-on `org.apache.camel.springboot.CamelAutoConfiguration` which makes it
-easier writing unit tests where you can
-exclude `org.apache.camel.springboot.CamelAutoConfiguration` to turn off
-Camel Spring Boot auto configuration completely.
-* Camel now supports OWASP dependency check maven plugin
-* link:nats.html[NATS] component now supports TLS and explicit flushing
-(with timeout) of the connection
-*
-https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=42568233[Metrics]
 component
-now supports Gauge type
-* link:file2.html[File consumer] now supports idempotent-changed and
-idempotent-rename read lock strategies for clustering. 
-* Camel Catalog now supports custom runtime providers that only includes
-the supported Camel components, languages and data formats running in
-that container. For example for Karaf or Spring Boot in the
-camel-catalog-provider-karaf and camel-catalog-provider-springboot.
-*
-The 
https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=13979[bean]
-component will when calling a method that returned an instance of
-`Callable` now call that callable to obtain the chained result. This
-allows to call Groovy functions/closures etc.
-* Failover <<loadBalance-eip,Load Balancer>> with
-inheritErrorHandler=false, now allows
-Camel's link:error-handler.html[Error Handler] to react after the load
-balancer is exhausted.
-* link:salesforce.html[Salesforce] component now supports limits, recent
-items, approvals and composite API
-* Dumping Camel routes as XML now includes custom namespaces which are
-at xpath expressions etc. Likewise updating Camel routes from XML can
-now include namespaces which will be associated on xpath expressions.
-* Added `RouteIdFactory` which can auto assign route ids based on the
-consumer endpoints to use more sensitible names, instead of route1,
-route2, etc.
-* Add `skip` function to <<simple-language,Simple>> language
-* Upgraded to Jetty 9.3 (Jetty 9.2 still supported for Karaf 4.0.x
-users)
-* `RouteBuilder` auto-configuration can now be disabled
-from link:cdi.html[Camel CDI] configuration
-* Camel contexts automatic start can now be disabled
-from link:cdi.html[Camel CDI] configuration
-* link:cdi.html[Camel CDI] now provides support
-for `TransactionErrorHandler` and `TransactionPolicy` via JTA
-* Asynchronous support for link:cxfrs.html[CXF JAX-RS] producers has
-been added
-* The link:jsonpath.html[JSonPath] language now supports Map and List
-types and POJOs as well. For POJOs you need to have Jackson on the
-classpath. 
-* link:../data-format.adoc[Data Format] which marshal to JSon or XML now
-set the content-type header to application/json or application/xml
-appropriately. +
-* The link:kafka.html[Kafka] component can now store offset state
-offline (stateRepository) to preserve this information and be able to
-resume from previous offset.
-* The link:kafka.html[Kafka] component has been improved to be easier to
-configure and use. Notice there is a backwards incompatible change so
-users need to migrate.
-* A topic based idempotent repository that
-is link:kafka.html[Kafka] based for
-the link:idempotent-consumer.html[Idempotent Consumer] EIP
-* The link:kafka.html[Kafka] component will automatic type convert the
-message body to the type specified by the configured serializer (is
-string by default) when sending to kafka. You can also now configure key
-and partitionKey in the endpoint uri, instead of having to specify as
-headers.
-* The link:kafka.html[Kafka] consumer will now auto commit on stop to
-ensure the broker has the latest offset commit. The
-option `autoCommitOnStop` can be configured to be sync,async or none.
-* Added easy predicate parser to link:jsonpath.html[JSonPath] to more
-easily define simple predicates without using the more complex jsonpath
-notation with all the symbols to just say price < 50
-* The link:box.html[Box] component has been migrated to use the Box v2
-Java API as the old v1 API is going to be shutdown from summer 2017
-* Examples overview now generate from the source code to ensure its up
-to date
-at 
https://github.com/apache/camel/tree/master/examples#examples[https://github.com/apache/camel/tree/master/examples#examples]
-* Added declarative
-https://github.com/apache/camel/blob/master/camel-core/src/main/docs/transformer.adoc[Transformer]
-and
-https://github.com/apache/camel/blob/master/camel-core/src/main/docs/validator.adoc[Validator]
-which performs transformation/validation according to the data type
-information declared on a route by
-https://github.com/apache/camel/blob/master/camel-core/src/main/java/org/apache/camel/model/InputTypeDefinition.java[inputType]
-and/or
-https://github.com/apache/camel/blob/master/camel-core/src/main/java/org/apache/camel/model/OutputTypeDefinition.java[outputType].
-There're a few examples demonstrates this feature:
-https://github.com/apache/camel/tree/master/examples/camel-example-transformer-blueprint[camel-example-transformer-blueprint],
 
https://github.com/apache/camel/tree/master/examples/camel-example-transformer-cdi[camel-example-transformer-cdi],
 
https://github.com/apache/camel/tree/master/examples/camel-example-transformer-demo[camel-example-transformer-demo],
-and 
https://github.com/apache/camel/tree/master/examples/camel-example-validator-spring-boot[camel-example-validator-spring-boot]
-* Added query support for <<jpa-component,JPA>> Producer
-
-Fixed these issues
-
-* Fixed starting Camel on Oracle JDK 1.8.0_19 or lower, which would
-throw an UnsupportedOperationException
-* Fixed running `mvn camel:run` when using OSGi Blueprint
-* Fixed link:hystrix-eip.html[Hystrix EIP] to also execute fallback if
-execution was rejected or short-circuited or other reasons from
-Hystrix. 
-* Fixed link:hystrix-eip.html[Hystrix EIP] race condition when timeout
-was hit and fallback is executed could let to Camel Exchange having
-wrong caused exception.
-* Fixed adding new routes to running CamelContext and if the new routes
-would fail to startup, then before these routes would "hang around". Now
-only succesful started routes are added.
-* Adding or removing routes that starts
-from link:undertow.html[Undertow] no longer restart the entire HTTP
-server
-* <<vm-component,VM>> endpoint should prepare exchange with the
-CamelContext from the consumer and not from cached endpoint which can be
-different
-* Fixed a bug when using link:rest-dsl.html[Rest DSL]
-with link:servlet.html[SERVLET] could cause a java.io.IOException:
-Stream closed exception when using <<bean-component,Bean>> in the route. 
-* Fixed an issue when using `pipeline` in Java DSL not setting up the
-EIP correctly which could lead to runtime route not as intended.
-* Fixed link:dropbox.html[Dropbox] to
-use link:stream-caching.adoc[Stream caching] to avoid reading entire
-file into memory so Camel can process big files
-* Fixed `toD` issue with splitting uris when RAW values had + sign
-* Fixed adviceWith may behave differently when using multiple advices in
-the same order and you would advice on the same nodes.
-* Fixed link:camel-zipkin.html[camel-zipkin] to be able to startup and
-work with Camel XML 
-* Fixed link:ftp2.html[FTP2] readLock=changed not working (when
-fastFileExists=false) if no sub folder was specified as starting
-directory.
-* Fixed <<simple-language,Simple>> language when using indexing with a
-nested function
-* Fixed issue with `@Consume` not having `CamelContext` injected and its
-lifecycle managed by `CamelContext`
-* Fixed Netty double buffer release leak in link:netty4.html[Netty4]
-and link:netty4-http.html[Netty4 HTTP]
-
-### New Components
-
-* camel-azure - to integrate with Microsoft Azure Cloud services
-* camel-bonita - allow you to communicate with a remote Bonita engine.
-* camel-couchbase - The couchbase component allows you to treat
-CouchBase instances as a producer or consumer of messages.
-* camel-digitalocean - The digitalocean component allows you to interact
-with the Digitalocean cloud
-* camel-drill - The drill component gives you the ability to querying to
-Apache Drill Cluster
-* camel-elasticsearch5 - to communicate with Elasticsearch Server using
-5.x APIs
-* camel-google-pubsub - allow you communicate with Google Cloud Pub/Sub
-* camel-grpc - The gRPC component is using for calling remote procedures
-via HTTP/2
-* camel-milo - An OPC UA client and server component based on Eclipse
-Milo
-* camel-mongodb3 - Evolution of the component based on v3 driver.
-Camel-Mongodb still exists allowing compatibility with the v2 driver.
-* camel-olingo4 - Communicates with OData 4.0 services using Apache
-Olingo OData API.
-* camel-openstack - allow you to communicate with an Openstack
-infrastructure
-*
-https://github.com/apache/camel/blob/master/components/camel-opentracing/src/main/docs/opentracing.adoc[camel-opentracing]
-- Distributed tracing using OpenTracing
-* camel-pubnub - To send and receive messages to PubNub data stream
-network for connected devices.
-* camel-rest-swagger - for accessing REST resources using
-http://swagger.io/[Swagger] specification as configuration
-* camel-tika - integrates with Apache Tika to extract content and
-metadata from thousands of file types
-* camel-sjms2 - JMS 2.0 api compatible component of
-the link:sjms.html[SJMS] component.
-* camel-spring-cloud - integrates with Spring Cloud
-* camel-spring-cloud-netflix - integrates with Spring Cloud Netflix
-* camel-zendesk - interacts
-with https://www.zendesk.com/[Zendesk] server with
-using https://developer.zendesk.com/rest_api/docs/api-clients/java[Zendesk
-Java Client]
-
-### New Examples
-
-* camel-example-reload - To demonstrate the live reload routes from XML
-files when running Camel.
-* camel-example-rest-swagger - Demonstrates the usage of REST Swagger
-component as a generic Swagger client
-* camel-example-opentracing - An example showing how to trace incoming
-and outgoing messages from Camel with OpenTracing
-
-### API breaking
-
-* The groovy DSL from camel-groovy has been moved into its own
-camel-groovy-dsl module. The camel-groovy now only contains the Camel
-Groovy link:language.html[Language]
-* Camel-spring-LDAP now uses java.util.function.BiFunction<L, Q, S>
-instead
-of org.apache.camel.component.springldap.LdapOperationsFunction<Q, S>
-* The deprecated APIs from camel-spring-boot has been removed as part of
-upgrading and supporting Spring Boot 1.5.x
-* The `getComponentDocumentation` method on `CamelContext` is deprecated
-and returns null. The embedded HTML documentation in all the Camel
-components has been removed as they are not in use/maintained, and the
-JSon schema is the actual information. Use the camel-catalog for
-component documentation where you can get all the documentation in both
-ascii doc and html format.
-* camel-mongodb-gridf schema has been renamed
-from *gridfs* to *mongodb-gridfs* to avoid confusion.
-* The commands-core has the Catalog commands removed
-* The org.apache.camel.spring.boot.FatJarRouter has been removed, just
-use regular `RouteBuilder` classes in Spring Boot applications.
-* The link:kafka.html[Kafka] endpoint option
-`seekToBeginning=true` should be migrated to `seekTo=beginning`
-* The Kafka endpoint option bridgeEndpoint has moved from endpoint to
-the KafkaConfiguration class so all options are together.
-* The link:kafka.html[Kafka] component has been improved to be easier to
-configure and use. Notice there is a backwards incompatible change so
-users need to migrate. The kafka uri is changed from kafka:brokers to
-kafka:topic. So you need to specify the topic name in the context-path
-and the brokers as parameters, eg before
-`kafka:myserver?topic=sometopic` is
-now `kafka:sometopic?brokers=myserver`
-* The link:infinispan.html[Infinispan] uri syntax has changed from
-infinispan:hostName?options to infinispan:cacheName?options
-
-### Known Issues
-
-### Important changes to consider when upgrading
-
-* camel-spring-dm has been disabled from the karaf features file so
-users cannot install it out of the box as it does not work properly.
-camel-spring-dm has been deprecated for a long time and users are
-encouraged to use osgi blueprint instead. The JAR is still shipped and
-can be installed manually but then you are on your own. The JAR will be
-removed completed in a future release.
-* Groovy DSL and Scala DSL is deprecated and planned to be moved to
-https://camel-extra.github.io/[Camel Extra] and not distributed out of
-the box in the future.
-* Camel now uses Karaf 4.x API and therefore not possible to run on
-older Karaf versions.
-* `camel-blueprint` changed startup behavior to start on
-Blueprint.CREATED event which would be more `correct` way of startup
-instead of Blueprint.REGISTERED as before.
-* camel-spring-boot now don't include prototype scoped beans when auto
-scanning for RouteBuilder instances, which is how camel-spring works.
-You can turn this back using the includeNonSingletons option.
-* camel-spring-javaconfig removed from Karaf features as it was not
-really supported in OSGi/Karaf.
-* camel spring-boot shell commands have been removed as spring-boot
-shell has been deprecated in spring-boot.
-* camel-mongodb-gridf schema has been renamed from *gridfs* to
-*mongodb-gridfs* to avoid confusion.
-* camel-box has been migrated to use box v2 api so there may be some
-migration needed as the old camel-box component was using box v1 api
-* The JSon schema from camel-catalog have changed to use boolean,
-integer and numeric values when applicable instead of using string
-values for everything. 
-* The camel-catalog Karaf commands has been removed
-
-### Getting the Binaries using Maven 
-
-To use this release in your maven project, the proper dependency
-configuration that you should use in your
-http://maven.apache.org/guides/introduction/introduction-to-the-pom.html[Maven
-POM] is:
-
-[source,java]
--------------------------------------
-<dependency>
-  <groupId>org.apache.camel</groupId>
-  <artifactId>camel-core</artifactId>
-  <version>2.19.0</version>
-</dependency>
--------------------------------------
-
-### Changelog
-
-For a more detailed view of new features and bug fixes, see the:
-
-http://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&versionId=12337871&styleName=Html[Release
-notes for 2.19.0]
-
diff --git a/docs/user-manual/en/release-notes/camel-2191-release.adoc 
b/docs/user-manual/en/release-notes/camel-2191-release.adoc
deleted file mode 100644
index 67face1..0000000
--- a/docs/user-manual/en/release-notes/camel-2191-release.adoc
+++ /dev/null
@@ -1,40 +0,0 @@
-[[Camel2.19.1Release-Camel2.19.1Release]]
-== Camel 2.19.1 Release
- 
-### New and Noteworthy
-
-Welcome to the 2.19.1 release which is mainly a maintenance release and
-resolved over 57 issues.
-
-
-### Known Issues
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Important changes to consider when upgrading
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Getting the Binaries using Maven 2
-
-To use this release in your maven project, the proper dependency
-configuration that you should use in your
-http://maven.apache.org/guides/introduction/introduction-to-the-pom.html[Maven
-POM] is:
-
-[source,java]
--------------------------------------
-<dependency>
-  <groupId>org.apache.camel</groupId>
-  <artifactId>camel-core</artifactId>
-  <version>2.19.1</version>
-</dependency>
--------------------------------------
-
-### Changelog
-
-For a more detailed view of new features and bug fixes, see the:
-
-https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12340460&projectId=12311211[Release
-notes for 2.19.1]
-
diff --git a/docs/user-manual/en/release-notes/camel-2192-release.adoc 
b/docs/user-manual/en/release-notes/camel-2192-release.adoc
deleted file mode 100644
index 7a110b7..0000000
--- a/docs/user-manual/en/release-notes/camel-2192-release.adoc
+++ /dev/null
@@ -1,39 +0,0 @@
-[[Camel2.19.2Release-Camel2.19.2Release]]
-== Camel 2.19.2 Release
- 
-### New and Noteworthy
-
-Welcome to the 2.19.2 release which is mainly a maintenance release and
-resolved 41 issues.
-
-### Known Issues
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Important changes to consider when upgrading
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Getting the Binaries using Maven 2
-
-To use this release in your maven project, the proper dependency
-configuration that you should use in your
-http://maven.apache.org/guides/introduction/introduction-to-the-pom.html[Maven
-POM] is:
-
-[source,java]
--------------------------------------
-<dependency>
-  <groupId>org.apache.camel</groupId>
-  <artifactId>camel-core</artifactId>
-  <version>2.19.2</version>
-</dependency>
--------------------------------------
-
-### Changelog
-
-For a more detailed view of new features and bug fixes, see the:
-
-https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12340945&projectId=12311211[Release
-notes for 2.19.2]
-
diff --git a/docs/user-manual/en/release-notes/camel-2193-release.adoc 
b/docs/user-manual/en/release-notes/camel-2193-release.adoc
deleted file mode 100644
index a6366d9..0000000
--- a/docs/user-manual/en/release-notes/camel-2193-release.adoc
+++ /dev/null
@@ -1,39 +0,0 @@
-[[Camel2.19.3Release-Camel2.19.3Release]]
-== Camel 2.19.3 Release
- 
-### New and Noteworthy
-
-Welcome to the 2.19.3 release which is a maintenance release and
-resolved 40 issues.
-
-### Known Issues
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Important changes to consider when upgrading
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Getting the Binaries using Maven 2
-
-To use this release in your maven project, the proper dependency
-configuration that you should use in your
-http://maven.apache.org/guides/introduction/introduction-to-the-pom.html[Maven
-POM] is:
-
-[source,java]
--------------------------------------
-<dependency>
-  <groupId>org.apache.camel</groupId>
-  <artifactId>camel-core</artifactId>
-  <version>2.19.3</version>
-</dependency>
--------------------------------------
-
-### Changelog
-
-For a more detailed view of new features and bug fixes, see the:
-
-https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12341135&projectId=12311211[Release
-notes for 2.19.3]
-
diff --git a/docs/user-manual/en/release-notes/camel-2194-release.adoc 
b/docs/user-manual/en/release-notes/camel-2194-release.adoc
deleted file mode 100644
index 7a3af5d..0000000
--- a/docs/user-manual/en/release-notes/camel-2194-release.adoc
+++ /dev/null
@@ -1,39 +0,0 @@
-[[Camel2.19.4Release-Camel2.19.4Release]]
-== Camel 2.19.4 Release
- 
-### New and Noteworthy
-
-Welcome to the 2.19.4 release which is a maintenance release and
-resolved 39 issues.
-
-### Known Issues
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Important changes to consider when upgrading
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Getting the Binaries using Maven 2
-
-To use this release in your maven project, the proper dependency
-configuration that you should use in your
-http://maven.apache.org/guides/introduction/introduction-to-the-pom.html[Maven
-POM] is:
-
-[source,java]
--------------------------------------
-<dependency>
-  <groupId>org.apache.camel</groupId>
-  <artifactId>camel-core</artifactId>
-  <version>2.19.4</version>
-</dependency>
--------------------------------------
-
-### Changelog
-
-For a more detailed view of new features and bug fixes, see the:
-
-https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&version=12341575[Release
-notes for 2.19.4]
-
diff --git a/docs/user-manual/en/release-notes/camel-2195-release.adoc 
b/docs/user-manual/en/release-notes/camel-2195-release.adoc
deleted file mode 100644
index 18a033c..0000000
--- a/docs/user-manual/en/release-notes/camel-2195-release.adoc
+++ /dev/null
@@ -1,39 +0,0 @@
-[[Camel2.19.5Release-Camel2.19.5Release]]
-== Camel 2.19.5 Release
- 
-### New and Noteworthy
-
-Welcome to the 2.19.5 release which is a maintenance release and
-resolved 42 issues.
-
-### Known Issues
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Important changes to consider when upgrading
-
-* See <<Camel2.19.0Release,Camel 2.19.0 Release>>
-
-### Getting the Binaries using Maven 2
-
-To use this release in your maven project, the proper dependency
-configuration that you should use in your
-http://maven.apache.org/guides/introduction/introduction-to-the-pom.html[Maven
-POM] is:
-
-[source,java]
--------------------------------------
-<dependency>
-  <groupId>org.apache.camel</groupId>
-  <artifactId>camel-core</artifactId>
-  <version>2.19.5</version>
-</dependency>
--------------------------------------
-
-### Changelog
-
-For a more detailed view of new features and bug fixes, see the:
-
-https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&version=12342135[Release
-notes for 2.19.5]
-

Reply via email to