Skip to content

Commit

Permalink
Released 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lvca committed May 27, 2014
1 parent 3a1082d commit b9589fe
Show file tree
Hide file tree
Showing 17 changed files with 59 additions and 18 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<property environment="env"/>
<property name="vendor" value="NuvolaBase Ltd"/>
<property name="product" value="OrientDB"/>
<property name="version" value="1.7-SNAPSHOT"/>
<property name="version" value="1.7"/>
<condition property="community.release" value="${releaseHome}/orientdb-community-${version}"
else="../releases/orientdb-community-${version}">
<isset property="releaseHome"/>
Expand Down
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
<relativePath>../</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package com.orientechnologies.orient.core;

public class OConstants {
public static final String ORIENT_VERSION = "1.7-SNAPSHOT";
public static final String ORIENT_VERSION = "1.7";

public static final String ORIENT_URL = "www.orientechnologies.com";

Expand Down
2 changes: 1 addition & 1 deletion distributed/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
</parent>

<artifactId>orientdb-distributed</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
<relativePath>../</relativePath>
</parent>

Expand Down
5 changes: 2 additions & 3 deletions distribution/src/main/assembly/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,15 @@
-->
<fileSet>
<directory>${basedir}/../server/benchmarks</directory>
<outputDirectory>benchmark</outputDirectory>
<outputDirectory>benchmarks</outputDirectory>
<excludes>
<exclude>*.sh</exclude>
</excludes>
<fileMode>644</fileMode>
<filtered>true</filtered>
</fileSet>
<fileSet>
<directory>${basedir}/../server/benchmarks</directory>
<outputDirectory>benchmark</outputDirectory>
<outputDirectory>benchmarks</outputDirectory>
<includes>
<include>*.sh</include>
</includes>
Expand Down
2 changes: 1 addition & 1 deletion enterprise/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
</parent>

<artifactId>orientdb-enterprise</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion graphdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
<relativePath>../</relativePath>
</parent>

Expand Down
42 changes: 42 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,48 @@
***************************************************************************************************
This document contains the last changes to the OrientDB project.

---------------------------------------------------------------------------------------------------
VERSION 1.7 - (May, 27th 2014)
---------------------------------------------------------------------------------------------------
- Core: new “minimumclusters” to auto-create X clusters per class
new cluster strategy to pick the cluster. Available round-robin, default and balanced
added record locking via API
removed rw/locks on schema and index manager
cached most used users and roles in RAM (configurable)
- Server: New support for SSL connections on binary and HTTP protocols
- Console: New “script” command to execute multiple SQL statements + transaction control
New “next” command to move the cursor on the next record in the result set
New “pref” command to move the cursor on the previous record in the result set
New “move <predicate>” command to move from current record by executing a predicate
New “eval <predicate>” command to evaluate a predicate against current record
Ability to ignore errors by setting “set ignore = true”
- Distributed: New support for sharding
Simplified (JSON) configuration
- Graph: New functions to return the traversed items: traversedVertex(), traversedEdge() and
traversedElement()
addEdge() can takes ORID to use implicitly last record version
- SQL: New PARALLEL keyword to run the query on multiple threads
New “INSERT INTO … SELECT” to copy records
New “INSERT INTO … RETURN <expression>” to return expressions on INSERT
New “UPDATE … RETURN <expression>” to return expressions on UPDATE
distance() accepts measure unit (default = km)
- HTTP: added support for context variables in SCRIPT command
- Indexes: Added Full-Text Lucene indexes (as plugin)
Added GEO Spatial Lucene indexes (as plugin)
Added WAL (Journal) support for Hash-Index so can be used in Transactions
Added NULL support for composite and non-composite indexes
Full-Text can be configured through METADATA keyword
Full-Text now indexes also sub-words
Improved SQL optimizer by avoiding calling evaluate() when not needed
LINKSET types can be indexed now
RID can be used on composite indexes
- Studio: Bookmarks for queries
Ability to interrupt running commands
- Bug fixing: 135 issues in total

Full list: https://github.com/orientechnologies/orientdb/issues?labels=&milestone=16&page=1&state=closed


---------------------------------------------------------------------------------------------------
VERSION 1.7-rc2 - (March, 25th 2014)
---------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion nativeos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>orientdb-parent</artifactId>
<groupId>com.orientechnologies</groupId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion object/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
</parent>

<artifactId>orientdb-object</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
<packaging>pom</packaging>

<name>OrientDB</name>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
</parent>

<artifactId>orientdb-server</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7</version>
<relativePath>../</relativePath>
</parent>

Expand Down

0 comments on commit b9589fe

Please sign in to comment.