close

Filter

loading table of contents...

Release Notes / Version 10.2107

Table Of Contents

Miscellaneous

Fix MySQL innodb_buffer_pool_size in docker development setup

In the development setup, the MySQL image was built with innodb_buffer_pool_size set to 512 but without unit, resulting in the minimal size of 5M. This fix will increase the buffer size to 512M.

(CMS-16407)

Fix groupId of blueprint root pom

The groupId of the blueprint root pom has accidentally been changed to com.coremedia.cms and has now been changed back to com.coremedia.blueprint . The pom is only an aggregator and is not referenced anywhere, but if you used the set-blueprint-groupId.sh script you might need to change the groupId to your custom groupId manually.

(CMS-16167)

Third-Party Update: Jackson Databind 2.9.10

Jackson-Databind has been updated to version 2.9.10

(CMS-15966)

Missing Extension tool Download Configuration

The Blueprint Developer Manual tells you to run the extension tool like this:

mvn -f workspace-configuration/extensions extensions:sync

This fails with the following error:

[ERROR] No plugin found for prefix 'extensions' in the current project and in the plugin groups [com.coremedia.maven, org.sonatype.plugins, org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (<userhome>\.m2\repository), central (https://repo.maven.apache.org/maven2)] -> [Help 1]

This error is caused by a missing <pluginRepository> configuration in workspace-configuration/extensions/pom.xml . As a workaround, you can add this configuration manually:

  <pluginRepositories>
    <pluginRepository>
      <id>coremedia.external.releases</id>
      <name>CoreMedia CMS</name>
      <url>https://repository.coremedia.com/nexus/content/groups/cms/</url>
      <layout>default</layout>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </pluginRepository>
  </pluginRepositories>

(CMS-15945)

Fix default ORB ports in docker development setup

Port mapping and ORB cleartext port were not identical for content-management-server, master-live-server and workflow-server in the docker-compose development setup.

(CMS-15857)

Fixed Traefik rules to access robots.txt

The traefik rules to access the <site>/robots.txt were broken for calista, corporate, corporate-de and helios (aurora).

(CMS-15497)

Third-Party Update: Jackson Databind 2.9.9.2

Jackson-Databind has been updated to version 2.9.9.2

(CMS-15325)

Search Results

Table Of Contents