Skip to content

Commit

Permalink
Bump version.camel from 4.1.0 to 4.2.0
Browse files Browse the repository at this point in the history
Bumps `version.camel` from 4.1.0 to 4.2.0.

Updates `org.apache.camel:camel-management-api` from 4.1.0 to 4.2.0

Updates `org.apache.camel:camel-core` from 4.1.0 to 4.2.0

Updates `org.apache.camel:camel-management` from 4.1.0 to 4.2.0

Updates `org.apache.camel:camel-debug` from 4.1.0 to 4.2.0

Updates `org.apache.camel:camel-yaml-dsl` from 4.1.0 to 4.2.0

Updates `org.apache.camel:camel-xml-io-dsl` from 4.1.0 to 4.2.0

---
updated-dependencies:
- dependency-name: org.apache.camel:camel-management-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.apache.camel:camel-core
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: org.apache.camel:camel-management
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: org.apache.camel:camel-debug
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: org.apache.camel:camel-yaml-dsl
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: org.apache.camel:camel-xml-io-dsl
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Adapt to API changes in Camel

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and apupier committed Nov 15, 2023
1 parent 3b1865c commit 43ed795
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<sonar.organization>camel-tooling</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>

<version.camel>4.1.0</version.camel>
<version.camel>4.2.0</version.camel>
<!-- must be aligned with the one from Camel -->
<version.jaxb>4.0.0</version.jaxb>
<version.junit.pioneer>2.1.0</version.junit.pioneer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,14 @@ public String getExceptionAsJSon() {
public String getEndpointUri() {
throw new UnsupportedOperationException("This class is used only to read message sent from Camel server through JMX");
}

@Override
public void setExceptionAsXml(String exceptionAsXml) {
throw new UnsupportedOperationException("This class is used only to read message sent from Camel server through JMX");
}
@Override
public void setExceptionAsJSon(String exceptionAsJSon) {
throw new UnsupportedOperationException("This class is used only to read message sent from Camel server through JMX");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.impl.debugger.BacklogDebugger;
import org.apache.camel.impl.engine.DefaultProducerTemplate;
import org.apache.camel.spi.BacklogDebugger;
import org.eclipse.lsp4j.debug.ConfigurationDoneArguments;
import org.eclipse.lsp4j.debug.SetBreakpointsArguments;
import org.junit.jupiter.api.Test;
Expand Down

0 comments on commit 43ed795

Please sign in to comment.