Re: modify the content of a NodeStore using the API

2018-01-09 Thread Marco Piovesana
thanks Marcel, I tried to use EmptyHook and empty CommitInfo just to try it out: NodeBuilder newBuilder = versionNodeState.builder().setProperty("custom:trashed", true); nodeStore.merge(newBuilder, EmptyHook.INSTANCE, CommitInfo.EMPTY); but the modification applied to the builder is not applied

[VOTE] Release Apache Jackrabbit Oak 1.6.8

2018-01-09 Thread Davide Giannella
A candidate for the Jackrabbit Oak 1.6.8 release is available at:     https://dist.apache.org/repos/dist/dev/jackrabbit/oak/1.6.8/ The release candidate is a zip archive of the sources in:     https://svn.apache.org/repos/asf/jackrabbit/oak/tags/jackrabbit-oak-1.6.8/ The SHA1 checksum of the

Re: 1.8.0 release notes

2018-01-09 Thread Davide Giannella
On 08/01/2018 13:51, Davide Giannella wrote: > hello team, > > I juggled with Jira, rescheduling and filling in the gaps of missing > fixVersions. > > In trunk you can find a proposal of release notes for 1.8.0. > > Any objections please speak up, otherwise I will move forward at my > earliest

Re: modify the content of a NodeStore using the API

2018-01-09 Thread Marco Piovesana
Hi Marcel, here a piece of code that shows more less what I'm trying to do. I have the NodeState of the verison I want to modify (versionNodeState) and I create from it the updated version (updatedNodeState), but then I don't understand how can I use it to update the actual value in the

Re: [VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Michael Dürig
On 09.01.18 12:53, Davide Giannella wrote: [X] +1 Release this package as Apache Jackrabbit Oak 1.8.0 Michael

Re: [VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Marcel Reutegger
Hi, On 09/01/18 12:53, Davide Giannella wrote: Please vote on releasing this package as Apache Jackrabbit Oak 1.8.0. The vote is open for the next 72 hours and passes if a majority of at least three +1 Jackrabbit PMC votes are cast. +1 Release this package as Apache Jackrabbit Oak 1.8.0 Just

Re: [VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Alex Deparvu
[X] +1 Release this package as Apache Jackrabbit Oak 1.8.0 On Tue, Jan 9, 2018 at 12:53 PM, Davide Giannella wrote: > A candidate for the Jackrabbit Oak 1.8.0 release is available at: > > https://dist.apache.org/repos/dist/dev/jackrabbit/oak/1.8.0/ > > The release

Re: [VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Julian Reschke
On 2018-01-09 12:53, Davide Giannella wrote: ... [X] +1 Release this package as Apache Jackrabbit Oak 1.8.0 ...where... [INFO] Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T09:58:13+02:00) [INFO] OS name: "windows 10", version: "10.0", arch: "amd64", family:

[VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Davide Giannella
A candidate for the Jackrabbit Oak 1.8.0 release is available at:     https://dist.apache.org/repos/dist/dev/jackrabbit/oak/1.8.0/ The release candidate is a zip archive of the sources in:     https://svn.apache.org/repos/asf/jackrabbit/oak/tags/jackrabbit-oak-1.8.0/ The SHA1 checksum of the

Re: [VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Tomek Rekawek
Hello Davide, +1 :) Regards, Tomek -- Tomek Rękawek | Adobe Research | www.adobe.com reka...@adobe.com > On 9 Jan 2018, at 12:53, Davide Giannella wrote: > > A candidate for the Jackrabbit Oak 1.8.0 release is available at: > >

BUILD FAILURE: Jackrabbit Oak - Build # 1147 - Failure

2018-01-09 Thread Apache Jenkins Server
The Apache Jenkins build system has built Jackrabbit Oak (build #1147) Status: Failure Check console output at https://builds.apache.org/job/Jackrabbit%20Oak/1147/ to view the results. Changes: [davide] [maven-release-plugin] prepare for next development iteration [davide]

Re: [VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Robert Munteanu
On Tue, 2018-01-09 at 11:53 +, Davide Giannella wrote: > Please vote on releasing this package as Apache Jackrabbit Oak 1.8.0. +1 > [INFO] > > [INFO] Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; >

Re: modify the content of a NodeStore using the API

2018-01-09 Thread Marcel Reutegger
Hi, you need to to first acquire a node builder from the root node state. This is the builder all your changes will be connected to. See documentation for details: https://jackrabbit.apache.org/oak/docs/architecture/nodestate.html Finally you will have to merge the root builder:

Re: [VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Tommaso Teofili
+1 build and sigs ok Tommaso Il giorno mar 9 gen 2018 alle ore 14:05 Robert Munteanu ha scritto: > On Tue, 2018-01-09 at 11:53 +, Davide Giannella wrote: > > Please vote on releasing this package as Apache Jackrabbit Oak 1.8.0. > > +1 > > > [INFO] >

Re: [VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Davide Giannella
[X] +1 Release this package as Apache Jackrabbit Oak 1.8.0 D.

Re: [VOTE] Release Apache Jackrabbit Oak 1.6.8

2018-01-09 Thread Julian Reschke
On 2018-01-09 22:18, Davide Giannella wrote: ... [X] +1 Release this package as Apache Jackrabbit Oak 1.6.8 ...where... [INFO] [INFO] Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d;

Re: modify the content of a NodeStore using the API

2018-01-09 Thread Marcel Reutegger
Hi, On 09/01/18 15:19, Marco Piovesana wrote: thanks Marcel, I tried to use EmptyHook and empty CommitInfo just to try it out: NodeBuilder newBuilder = versionNodeState.builder().setProperty("custom:trashed", true); nodeStore.merge(newBuilder, EmptyHook.INSTANCE, CommitInfo.EMPTY); Hmm, what

Re: [VOTE] Release Apache Jackrabbit Oak 1.8.0

2018-01-09 Thread Amit Jain
+1 Release this package as Apache Jackrabbit Oak 1.8.0 Thanks Amit On Tue, Jan 9, 2018 at 5:23 PM, Davide Giannella wrote: > A candidate for the Jackrabbit Oak 1.8.0 release is available at: > > https://dist.apache.org/repos/dist/dev/jackrabbit/oak/1.8.0/ > > The release

Re: [VOTE] Release Apache Jackrabbit Oak 1.6.8

2018-01-09 Thread Andrei Dulceanu
[X] +1 Release this package as Apache Jackrabbit Oak 1.6.8 where [INFO] [INFO] Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T10:58:13+03:00) [INFO] OS name: "mac os x", version: "10.13.2", arch: