Release Notes for ModeShape 5.4.0.Final This document outlines the changes that were made in ModeShape 5.4.0.Final. We hope you enjoy it! What's new ------------------------------------------------------------------- This release addresses 19 bugs and 4 enhancements, most notably: - adding support for pass-through configuration properties for the Hikari connection pool (see [MODE-2674](https://issues.jboss.org/browse/MODE-2674)) - fixing a number of transaction and clustering related issues - upgrading the Wildfly support to the Wildfly 10.1.0.Final - adding generic Amazon S3 support for binary storage Migrating from ModeShape 3 or ModeShape 4 ------------------------------------------------------------------- If you're planning on migrating from earlier versions of ModeShape to ModeShape 5 (which we strongly encourage) make sure you read [the migration guide](https://docs.jboss.org/author/display/MODE50/Migrating+from+3.x+and+4.x) Starting with ModeShape for the first time ------------------------------------------------------------------- If you're starting to use ModeShape for the first time, make sure you read [the getting started guide](https://docs.jboss.org/author/display/MODE50/Getting+Started) What to test ------------------------------------------------------------------- Since this is a new major release, all features targeted to 5.0 are complete and are suitable for testing. We would like to get as much feedback as possible, so we do ask that our community do testing with 5.4.0.Final to help us identify problems. Specifically, we ask that you test the following areas: * JDK - ModeShape now requires JDK 8. * Clustering - ModeShape 5 still supports clustering, but in a much more conservative fashion. See [our clustering documentation](https://docs.jboss.org/author/display/MODE50/Clustering) * New persistence stores - We've moved away from Infinispan and now provide our own persistent stores, so we'd greatly appreciate any feedback around the new persistence model Features ------------------------------------------------------------------- ModeShape 5.4.0.Final has these features: - ModeShape provides its own persistence stores, focusing primarily on data integrity - Strongly consistent. ModeShape is atomic, consistent, isolated and durable (ACID), so writing applications is very natural. Applications can even use JTA transactions. - Fast. ModeShape 5 should be just as fast in most cases as previous versions - Larger content. ModeShape 5 can store and access the content so that a node can have hundreds of thousands (or more!) of child nodes (even with same-name-siblings) yet still be incredibly fast. Additionally, repositories can scale to many millions of nodes and be deployed across many processes. - Simplified configuration. There is no more global configuration of the engine; instead, each repository is configured with a separate JSON file, which must conform to a ModeShape-specific JSON Schema and can be validated by ModeShape prior to use. Repository configurations can even be changed while the repository is running (some restrictions apply), making it possible to add/change/remove sequencers, authorization providers, and many other configuration options while the repository is in use. - Deploy, start, stop and undeploy repositories while the engine is running and while and other repositories are still in use. - Sessions immediately see all changes persisted/committed by other sessions, although transient changes made by the session always take precedence. - Monitoring API with over a dozen metrics. - Sequencing SPI that uses the JCR API to get at the content being processed and create/update the derived content. Sequencers can also dynamically register namespaces and node types. Now it's easy to create custom sequencers. - Connector SPI that defines how external systems are accessed and optionally updated to project the external information into the repository as regular nodes. - Simple API for implementing custom MIME type detectors. ModeShape still has a built-in Tika-based detector that determines MIME types using the filename extensions and binary content. - Simple API for implementing custom text extractors, which extracts from binary values searchable text used in full-text searches and queries. - Ability to store binary values of any sizes, with a separate facility for storing these on the file system, in relational DBMSes (via JDBC), in MongoDB or in Cassandra. Custom stores are also possible. - Indexes to optimize query performance. ModeShape offers a number of different index providers and can store and uses indexes in a variety of fashions - Integration with JBoss Wildfly. ModeShape runs as an integrated subsystem within Wildfly, and the Wildfly tooling can be used to define and manage repositories independently of each other and while the server is running. - Local and remote JDBC drivers for issuing JCR-SQL2 queries and getting database metadata via the JDBC API - Use the RESTful API to talk to ModeShape repositories from non-Java and non-local applications - Use the CMIS API to talk to ModeShape repositories - Use WebDAV to mount ModeShape repositories as file servers - Visual repository explorer web application All of the JCR 2.0 features supported in previous versions are still supported: Accessing the Repository - RepositoryFactory access - JNDI registration of Repository - JAAS Authentication - Servlet Authentication - Custom Authentication Namespaces - Session Remapping - Permanent Addition/Deletion Reading Repository Content - Traversal Access - Direct Access - Same-Name Siblings - Multi-Value Properties - All Property Types Supported - Property Type Conversion Writing Repository Content - Create/Update/Delete Nodes - Create/Update/Delete Properties (Through Parent Nodes) - Moving, Copying, Cloning - Adding/Removing Mixins - Referential integrity enforcement Query / Search - XPath - JCR-SQL - JCR-SQL2 - JCR-QOM - Full-Text Search Importing/Exporting Repository Content - System View Import/Export - Document View Import/Export Node Types - Inheritance Among Node Types - Discovering available Node Types - Discovering the Node Types of a Node - Discovering the Definition of a Node Type - Property Constraints - Automatic Item Creation - Predefined standard Node Types - Custom Node Type Registration (CND-Based and and JCR 2.0 API Template-Based) Repository Metadata under System Node - Permanent Namespace Mappings - Node Types (Built-In and User-Registered) - Active Locks Other JCR Optional Features - Observation - Locking - Full Versioning - Shareable nodes - Access controls - Event journal Content Storage Options - In-memory - Relational databases (via JDBC), including in-memory, file-based, or remote - File system Binary Storage Options - File system - JDBC database - MongoDB - Cassandra - Chained binary stores ModeShape also has features that go beyond the JCR API: ModeShape Federation Connectors - File system connector (read and write) - Git repository connector (read-only) - CMIS reposiotry connector (read and write, tech preview) - JDBC metadata connector (read-only) ModeShape Sequencers - Audio Sequencer - Compact Node Definition (CND) Sequencer - DDL Sequencer - EPUB Sequencer - Image Sequencer - Java Source Sequencer - Java Class Sequencer - MP3 Sequencer (deprecated) - MS Office Sequencer - ODF Sequencer - PDF Sequencer - Text Sequencers (Delimited and Fixed Width) - Video Sequencer - XML Sequencer - XML Schema Document (XSD) Sequencer - Web Service Definition Lanaguage (WSDL) 1.1 Sequencer - Zip File Sequencer (also WARs, JARs, and EARs) ModeShape Deployment/Access Models - JNDI-Based Deployment - Deploy as a subsystem in JBoss Wildfly, with access to repositories via @Resource injection - Deploy to other containers using ModeShape's JCA adapter - Access through two RESTful Services (the 2.x-compatible API and a new improved API) - Access through WebDAV Service - Access through CMIS Service - Access through visual repository explorer web application - Local and remote JDBC drivers for accessing ModeShape content through JDBC API and JCR-SQL2 queries - Embedded (in Server or JEE Archive) Deployment - JTA support, allowing Sessions to participate in XA and container-managed transactions - OSGi-Compatible Archives Other ModeShape features - Repository-wide backup and restoration - Explicitly-defined indexes - Automatic MIME type detection of binary content - Asynchronous sequencing operations, within completion notified via events Bug Fixes, Features, and other Issues ------------------------------------------------------------------- The following are the bugs, features and other issues that have been fixed in the 5.4.0.Final release: Enhancement - [MODE-2674](https://issues.jboss.org/browse/MODE-2674) - Add the ability to configure the minIdle property for HikariCP - [MODE-2635](https://issues.jboss.org/browse/MODE-2635) - Enhance Modeshape JSON and Wild Fly configuration to support passing in a replica set to the MongoDB binary store - [MODE-2667](https://issues.jboss.org/browse/MODE-2667) - S3 compatible endpoint support - [MODE-2661](https://issues.jboss.org/browse/MODE-2661) - Poor Lucene index query performance on a single string property Bug - [MODE-2654](https://issues.jboss.org/browse/MODE-2654) - Copy operation doesn't work well if copied elements are locked - [MODE-2655](https://issues.jboss.org/browse/MODE-2655) - session.save() with no pending changes appears to hit the DB - [MODE-2656](https://issues.jboss.org/browse/MODE-2656) - Cannot query elements that was copied within single transaction - [MODE-2678](https://issues.jboss.org/browse/MODE-2678) - ModeShape's database binary store uses DB connections in auto-commit mode - [MODE-2679](https://issues.jboss.org/browse/MODE-2679) - Modeshape CND Parsing Fails in the Turkish Locale - [MODE-2676](https://issues.jboss.org/browse/MODE-2676) - Removing all version histories of a node with a multi-versioned parent fails referential integrity constraint - [MODE-2677](https://issues.jboss.org/browse/MODE-2677) - BufferingSequence.loadAll() depend on the order of batches - [MODE-2675](https://issues.jboss.org/browse/MODE-2675) - Concurrent editing of MS Office documents via WebDAV fails with upload error - [MODE-2672](https://issues.jboss.org/browse/MODE-2672) - The node may become permanently locked after concurrent writes in cluster - [MODE-2673](https://issues.jboss.org/browse/MODE-2673) - Missing argument for [threadAssociatedWithAnotherTransaction] i18n key - [MODE-2670](https://issues.jboss.org/browse/MODE-2670) - Internal repository locks are not released if user transactions are created and rolled back from different threads - [MODE-2671](https://issues.jboss.org/browse/MODE-2671) - Database connection leak if exception occurs while reading binary from database binary store - [MODE-2664](https://issues.jboss.org/browse/MODE-2664) - Microsoft SQL Server persistence uses incorrect CONTENT type and SQL Server create/drop Exceptions caught - [MODE-2669](https://issues.jboss.org/browse/MODE-2669) - Relational persistence provider does not cleanup data when a user transaction is rolledback off a different thread - [MODE-2668](https://issues.jboss.org/browse/MODE-2668) - Incorrect handling of aborted user transactions - [MODE-2665](https://issues.jboss.org/browse/MODE-2665) - Database deadlocks can occur when lock() and unlock() are called under certain conditions - [MODE-2658](https://issues.jboss.org/browse/MODE-2658) - When sequencing the same node multiple times, ModeShape does not remove the previous output - [MODE-2666](https://issues.jboss.org/browse/MODE-2666) - NotSerializableException when using order by in query - [MODE-2663](https://issues.jboss.org/browse/MODE-2663) - MongoDB replicaset binary store returns corrupt data - [MODE-2662](https://issues.jboss.org/browse/MODE-2662) - Stale cache results in the inability to lock the node Task - [MODE-2659](https://issues.jboss.org/browse/MODE-2659) - Update server kit and dependencies to Wildfly 10.1