Red Hat DocumentationFuse ESBToggle FramesPrintFeedback

What's new in Fuse ESB 4.4.1-fuse-07-11, June 27, 2012

Dependency versions

This release has the following dependencies:

Apache Karaf Apache Karaf v2.2.x Release Notes2.2.2-fuse-07-11
Fuse Services Framework 2.4.3-fuse-03-02
Fuse Mediation Router 2.8.0-fuse-06-11
Fuse Message Broker 5.5.1-fuse-07-11
ESB Components ESB Components v2011.02.1 Release Notes2011.02.1-fuse-07-11
ESB NMR ESB NMR v1.5.1 Release Notes1.5.1-fuse-06-11

Note

This is a note if you are building Fuse ESB from source using the offline repository. You can ignore otherwise.

Several Eclipse artifacts use version ranges (ex. org/eclipse/core/resources/3.3.0-v20070604/resources-3.3.0-v20070604.pom depends on org.eclipse.core:expressions:[3.1.0,4.0.0)). In offline mode, Maven cannot download metadata from a remote repository to determine what versions are available because it requires local metadata. In the case of the Eclipse libraries, this metadata is saved under the "nexus" host name. To get Maven to pick up this metadata, you need the following settings.xml profile with a "nexus" repositories added:

<settings>
  <profiles> 
    <profile> 
      <id>offlinerepo</id>
      <repositories> 
        <repository> 
          <id>nexus</id> 
          <url>file:///path/to/offline/repo</url> 
        </repository>
      </repositories> 
      <pluginRepositories> 
        <pluginRepository>
          <id>nexus</id> 
          <url>file:///x1/offlinerepos/repo</url>                  
        </pluginRepository>
      </pluginRepositories>  
    </profile> 
  </profiles> 
  
  <activeProfiles> 
    <activeProfile>offlinerepo</activeProfile> 
  </activeProfiles> 

</settings>

You only need this when using an offline repository locally to build from source. For example, if you build like this:

mvn clean install -Dmaven.repo.local=/path/to/offline/repo --offline

If you import the offline repository into a repository manager like Nexus or Artifactory on your local network then you will not encounter this issue.

Bug

The following bug was fixed in this release:

  • ESB-1722 - A ResourceManager that is registered with activemq-broker.xml is configured incorrectly.

Improvement

The following improvements were made in this release:

  • ESB-1727 - There should be a maximum size for the Aries transaction log file configured out of the box.

  • SMX4-1179 - Remove unecessary annotations from the cxf nor transport.

  • SMX4-1187 - Upgrade to XBean 3.11.1.

Comments powered by Disqus