IRC Archive for channel #xwiki on 08 February 2012
Last modified by Vincent Massol on 2012/10/18 19:22
00:18 <lucaa> has joined #xwiki
00:22 <jvdrean> has quit
00:34 <fmancinelli> has quit
00:51 <lucaa> has quit
02:06 <CIA-120> Sergiu Dumitriu master * r7a03241 https://github.com/xwiki/xwiki-platform/commit/7a0324171b101daf6472eb1825a1947bf604d284 / (3 files in 3 dirs): XWIKI-6691: Change the mapping of the event requestId field to varchar(48) ...
02:41 <DrLou_> has quit
02:48 <tekzilla> has quit
02:49 <tekzilla> has joined #xwiki
02:55 <CIA-120> has quit
02:57 <CIA-120> has joined #xwiki
03:10 <pgmjsd> has quit
03:10 <xipe_> has quit
03:10 <CIA-120> has quit
03:10 <kayasaman> has quit
03:10 <npm> has quit
03:10 <tekzilla> has quit
03:10 <sdumitriu> has quit
03:10 <Denis1> has quit
03:10 <recompile> has quit
03:10 <SvenDowideit> has quit
03:10 <cjd> has quit
03:11 <CIA-120> has joined #xwiki
03:11 <tekzilla> has joined #xwiki
03:11 <pgmjsd> has joined #xwiki
03:11 <sdumitriu> has joined #xwiki
03:11 <kayasaman> has joined #xwiki
03:11 <Denis1> has joined #xwiki
03:11 <recompile> has joined #xwiki
03:11 <cjd> has joined #xwiki
03:11 <SvenDowideit> has joined #xwiki
03:11 <npm> has joined #xwiki
03:11 <xipe_> has joined #xwiki
03:14 <xipe_> has quit
03:15 <xipe_> has joined #xwiki
03:16 <pgmjsd> has quit
03:17 <pgmjsd> has joined #xwiki
04:47 <DrLou_> has joined #xwiki
05:11 <DrLou_> has quit
05:59 <Denis1> has quit
06:00 <Denis> has joined #xwiki
08:06 <vmassol> has joined #xwiki
08:15 <mflorea> has joined #xwiki
08:15 <vmassol> sdumitriu: hi
08:16 <vmassol> I didn't see your commit on the list for the 2 jira issues you fixed related to indexes
08:16 <vmassol> checking github now
08:16 <vmassol> it's on github alright
08:17 <vmassol> strange that we didn't get mail
08:17 <vmassol> s/we/I/
08:17 <vmassol> checking spam
08:18 <vmassol> note: we'll need to add this to the Release Notes. Might be good to add it asap to not forget it
08:19 <vmassol> hmm I don't see any change in the feed plugin mapping file is that normal?
08:19 <vmassol> looking at https://github.com/xwiki/xwiki-platform/commit/7a0324171b101daf6472eb1825a1947bf604d284
08:20 <vmassol> ah you've committed the AS change only :)
08:21 <vmassol> (was tricked by the 2 jira issues)
08:52 <mflorea> has quit
09:07 <vmassol> has quit
09:11 <jvdrean> has joined #xwiki
09:11 <vmassol> has joined #xwiki
09:20 <vmassol> has quit
09:53 <vmassol> has joined #xwiki
09:54 <tmortagne> has joined #xwiki
09:55 <jvdrean> has quit
10:15 <fmancinelli> has joined #xwiki
10:15 <gdelhumeau> has joined #xwiki
10:25 <jvdrean> has joined #xwiki
10:32 <qwebirc61499> has joined #xwiki
10:37 <qwebirc61499> Hi guys, do you know how to filter the spaces shown in the search page to those that are actually visible by the user? (actually any user sees in the dropdown other spaces, but he won't get any result for them since he's not allowed to see them)
10:38 <vmassol> has quit
10:40 <qwebirc61499> e.g. even your website shows all the spaces available, but there's no reason why I should search in a space that I cannot access..
11:10 <sburjan> has joined #xwiki
11:18 <+tmortagne> qwebirc61499: users will not get pages they can't see in the result
11:19 <+tmortagne> as for the list of spaces to search in indeed it's not filtered because anyone can actually see the list
11:19 <+tmortagne> there is a list of hidden spaces you can fill but it's exactly what you wanted
11:20 <+tmortagne> xwiki.org used to filter the list of spaces to search to (but not based on the current user rights), probably broken by the last upgrade, I will look
11:21 <gdelhumeau> has quit
11:22 <+tmortagne> looks like $blacklistedSpaces is empty
11:23 <gdelhumeau> has joined #xwiki
11:24 <+tmortagne> ha no that's because i'm admin I guess
11:24 <+tmortagne> yep that's it some spaces are filtered
11:25 <gdelhumeau> has quit
11:26 <gdelhumeau> has joined #xwiki
11:26 <qwebirc61499> thanks +tmortagne,
11:26 <qwebirc61499> i cannot go for the blacklisted solution, since it may vary user by user
11:26 <+tmortagne> yep I guess
11:27 <qwebirc61499> I'll add a check on user rights
11:28 <qwebirc61499> something like #set($currentuser = $context.user) $xwiki.hasAccessLevel('edit', $currentuser, $givenspace)
11:28 <+tmortagne> either you provide a general allowed list of space in xwikivars.vm like it's done for blacklistedSpaces or you specifically modify search page, note that checking the right for every spaces can be pretty costy
11:28 <+tmortagne> hasAccessLevel only works with pages so you have to choose a page in the space to check
11:28 <+tmortagne> wht edit ?
11:28 <+tmortagne> swhy
11:29 <+tmortagne> why
11:29 <+tmortagne> shouldn't you check the view right ?
11:29 <+tmortagne> unless you have a specific use case
11:29 <qwebirc61499> "view", I just copied an example of a page.. and modified
11:29 <+tmortagne> ok
11:29 <qwebirc61499> my bad
11:30 <+tmortagne> and make sure to put a page too, best is to check on a page that does not exist
11:30 <+tmortagne> or any page that does not have special right basically
11:31 <+tmortagne> so that you get whole space rights
11:31 <qwebirc61499> nice!
11:32 <+tmortagne> $xwiki.hasAccessLevel('edit', $currentuser, "${givenspace}.SomePage")
11:32 <+tmortagne> view sorry, did the same thing :)
11:35 <qwebirc61499> thanks, I'll go for that one, have a nice day ;)
11:35 <+tmortagne> qwebirc61499: you too
11:58 <qwebirc61499> has quit
13:42 <DrLou> has joined #xwiki
14:07 <vmassol> has joined #xwiki
15:19 <vmassol> gdelhumeau: wrong extension type
15:23 <vmassol> - title to improve
15:23 <vmassol> - broken link
15:23 <vmassol> - missing description or wrong headings levels
15:25 <gdelhumeau> vmassol> are you talking to me ?
15:25 <vmassol> yep :)
15:25 <vmassol> see above at 3:20
15:32 <vmassol> gdelhumeau: let me know when you're done and I can fix the rest if you want
15:39 <gdelhumeau> It's ok
15:39 <vmassol> ok fixing:
15:39 <vmassol> - type
15:39 <vmassol> - title
15:39 <vmassol> - headings
15:40 <gdelhumeau> Type should be "xar" I guess
15:41 <vmassol> - fixing {{code}} - replaced by ##
15:43 <vmassol> gdelhumeau: note that you could/should add a dependency on the Excel Plugin too
15:43 <vmassol> so that the EM automatically installs it
15:46 <gdelhumeau> I forget to mention that it's based on http://jira.xwiki.org/browse/XWIKI-5458
15:46 <gdelhumeau> I wrote it inside the XAR but not in this page
15:46 <vmassol> tmortagne: I think we need some help so that users understand how to add Dependencies
15:47 <vmassol> of course a full UI would be best but maybe some comments while we wait for the full UI...
15:47 <+tmortagne> vmassol: isn't there comment already ? or maybe it's only for versions
15:47 <vmassol> I only put for versions
15:48 <+tmortagne> ok
15:48 <vmassol> unless you added for dep
15:48 <+tmortagne> nop
15:52 <+tmortagne> XWIKI-7501
15:53 <+tmortagne> finsissing something and will add a comment in the meantime
15:53 <vmassol> k
15:59 <gdelhumeau> how dependencies work? I have put a ExtensionCode.ExtensionDependencyClass object, but what sould I write into it?
15:59 <gdelhumeau> *should
16:01 <+tmortagne> gdelhumeau: you have 3 fields in it
16:01 <+tmortagne> the version of the extensions the dependency is linked to
16:01 <+tmortagne> then the id and version of the dependency itself
16:02 <+sburjan> what is happening on CI ? I see a ton of failures ?
16:02 <+sburjan> I wanted to see if we still have the "Stay on Page" "Leave Page" issue on FF, so I know if still needs to be reported
16:03 <+tmortagne> looks like an issue with migration of the DB
16:04 <+tmortagne> Denis: any idea ? see http://ci.xwiki.org/job/xwiki-enterprise-test-cluster/org.xwiki.enterprise$xwiki-enterprise-test-cluster/954/console
16:04 <+tmortagne> many "Caused by: com.xpn.xwiki.store.migration.MigrationRequiredException: Database xwiki needs migration(s), it could not be safely used!"
16:05 <gdelhumeau> tmortagne> but what is the id of the dependency ? I am looking at "Excel Plugin", the "id" field of the extension is empty. Should I change it?
16:06 <+tmortagne> gdelhumeau: extension manager require an id if you don't set one the extension will not be installable with EM but one is supposed to be automatically generated for you so it's weird you have nothing
16:06 <+tmortagne> checking
16:06 <+tmortagne> gdelhumeau: you do have an id
16:07 <+tmortagne> it's not empty for me
16:07 <+tmortagne> it's "gdelhumeau:livetableexcelexport-macro"
16:07 <+tmortagne> what is the dependency ?
16:07 <+tmortagne> I mean where is it ? on extensions.xwiki.org ?
16:08 <gdelhumeau> http://extensions.xwiki.org/xwiki/bin/edit/Extension/Excel+Plugin?editor=object
16:08 <gdelhumeau> this one is empty
16:08 <+tmortagne> if you want to set http://extensions.xwiki.org/xwiki/bin/view/Extension/Excel+Plugin as dependency you have to make it installable with EM first which is not
16:08 <+tmortagne> if EM can't install one of the dependencies it will not install the extension
16:09 <gdelhumeau> Ok, so I don't have to add a dependency for my extension
16:09 <+tmortagne> not sure why this extension has no id, it mean that sometone explicitely removed it
16:09 <gdelhumeau> I just explain it on the extension description
16:09 <+tmortagne> well it's better if sometone have it fully working when installing it with EM
16:10 <+tmortagne> you could make fix the extension dependency so that it's installable
16:10 <+tmortagne> now if it's a realy plugin EM not fully support them anyway
16:12 <gdelhumeau> tmortagne> Excel plugin needs some JAR to be installed, so I guess it can not be installable with EM
16:12 <+tmortagne> ok I remember why it does not have id, I wanted to put the proper one but the source link was wrong
16:12 <+tmortagne> gdelhumeau: EM support any jar or xar
16:12 <+tmortagne> it's just that plugin require something in xwiki.cfg to work
16:13 <vmassol> errrrrr 3.5M1 was supposed to be released yesterday
16:14 <+tmortagne> github seems down or at least very very slow
16:14 <vmassol> who's the RM? Marius?
16:14 <+tmortagne> from what I remember it's Marius I think
16:15 <vmassol> pinging him
16:15 <vmassol> we're very late
16:15 <vmassol> since RC1 is next Monday
16:15 <+tmortagne> does anyone has the slow issue with github ?
16:15 <vmassol> web ui?
16:15 <+tmortagne> it's pretty much unusable for me right now
16:15 <+tmortagne> yes the website
16:16 <vmassol> same here
16:18 <+tmortagne> ssh access dead too it seems
16:18 <+tmortagne> ssh: connect to host github.com port 22: Connection refused
16:18 <+tmortagne> fatal: The remote end hung up unexpectedly
16:18 <+tmortagne> so not git
16:19 <vmassol> it's really a pain now rebuild all commons/rendering/platform/enterprise… takes forever, I need to find a better way to rebuild only modules which have had changes locally
16:19 <+tmortagne> vmassol: isn't there something in maven3 to build only backward dependencies ?
16:19 <vmassol> there is
16:20 <vmassol> but ti doesn't skip modules which have had no changes
16:20 <vmassol> so it you wish to build XE you'll need to build everuything with backward deps
16:20 <vmassol> (close to everything)
16:20 <vmassol> I need to check the options again
16:21 <+tmortagne> sure but if you modify a dependency you have to rebuild the project
16:21 <+tmortagne> since the modifcation you made to the dependency could change the project behavior and break some test or something
16:21 <vmassol> the jar is the same
16:22 <vmassol> the transitive deps could change though
16:22 <vmassol> but the jar doesn't need to be recompiled
16:22 <vmassol> but yes
16:22 <vmassol> if you wish to run the tests
16:22 <vmassol> you' ll need to build it
16:22 <gdelhumeau> GitHub is own for maintenance
16:22 <+tmortagne> actually if you made a binary icompatible change the project need to be rebuilded
16:23 <vmassol> basically I'm stuck with my current changes
16:23 <vmassol> :(
16:23 <vmassol> (on environment)
16:23 <vmassol> so takes several hours just to build and verify everything works
16:23 <+tmortagne> github seems back
16:37 <vmassol> guys we need to decide what to do for the 3.5 release
16:38 <vmassol> Marius had a window on last Monday but there were test failures and he didn't have the time to fix anything and then he was busy on other stuff
16:43 <interestedOne> has joined #xwiki
16:45 <interestedOne> hello there! I'm using XWiki Enterprise 3.3.1 and I'm trying to configure the email SMTP client. I didn't succeed in sending emails, can someone help me out?
16:45 <interestedOne> I configured the Email part in administration according to the instructions I found on Xwiki's documentation. My account is a Gmail account.
16:58 <+sburjan> interestedOne: has you configured xwiki to use SSL from the "ADDITIONAL JavaMail Proprieties" text area ?
16:59 <vmassol> Denis: I cannot start XE, I get "Database xwiki needs migration(s), it could not be safely used!"
17:00 <vmassol> are migrations not activated by default?
17:00 <vmassol> cehcking...
17:00 <+sburjan> afaik sdumitriu committed recently a migrator
17:00 <vmassol> yes
17:00 <vmassol> and he hasn't tried it
17:01 <vmassol> or I don't know why his XE worked :))
17:01 <+sburjan> :))
17:02 <vmassol> xwiki.store.migration=1
17:02 <vmassol> so it's enabled by default
17:02 <vmassol> hmmm
17:04 <vmassol> quoi que je pourrais
17:04 <vmassol> en throwant une servletexception
17:04 <vmassol> cela empecherait l'appli d'etre dispo
17:05 <vmassol> oops
17:05 <vmassol> wrong chat
17:05 <+sburjan> :)
17:05 <vmassol> 2012-02-08 16:59:19,131 [http://localhost:8080/xwiki/bin/view/IRC/IRCBot] WARN o.h.u.JDBCExceptionReporter - SQL Error: 0, SQLState: null
17:05 <vmassol> 2012-02-08 16:59:19,131 [http://localhost:8080/xwiki/bin/view/IRC/IRCBot] ERROR o.h.u.JDBCExceptionReporter - failed batch
17:05 <vmassol> 2012-02-08 16:59:19,150 [http://localhost:8080/xwiki/bin/view/IRC/IRCBot] INFO .HibernateDataMigrationManager - Failed to migrate database [xwiki]...
17:05 <vmassol> com.xpn.xwiki.store.migration.DataMigrationException: Data migration R35000XWIKI6691 failed
17:05 <vmassol> so the migration is started
17:05 <vmassol> but fails
17:05 <vmassol> so it's a bug in sdumitriu code I think
17:09 <+sburjan> session.doWork(new Work() this looks odd to me, no closing paranthesis ?
17:12 <+sburjan> https://github.com/xwiki/xwiki-platform/commit/7a0324171b101daf6472eb1825a1947bf604d284
17:14 <vmassol> guys we need to decide what we do for the 3.5 release
17:14 <vmassol> several possibilities:
17:15 <vmassol> 1) release today or tomorrow (who can do it?) and do the RC1 Monday as planned
17:15 <vmassol> 2) skip the M1 release and release RC1 Monday as planned (Marius can do the release)
17:15 <vmassol> 3) postpone everything
17:15 <vmassol> I don't like 3)
17:15 <vmassol> since we need to get started on 4.0M1
17:17 <vmassol> any take on this? I'll send a vote after
17:17 <vmassol> I think 2) is not ideal but best given the situation
17:17 <+tmortagne> I will not be available friday and not 100% sure we will manage to be fully ready to release tomorrow given the current state of jenkins
17:17 <+sburjan> vmassol: Marius won't be available on Monday. We're in transit
17:17 <+tmortagne> I guess 2 is ok
17:18 <vmassol> Marius told me he can do Friday
17:18 <vmassol> so Friday or Tuesday I guess
17:18 <vmassol> that doesn't change the possibitiies I think
17:18 <vmassol> anyone else ok with 2)?
17:19 <vmassol> I'm slighty worried by sergiu's change of yesterday which could cause issues
17:19 <vmassol> and by the one I'm going to commit
17:19 <vmassol> I could hold my commit for 4.0M1 though if we think it's too dangerous
17:19 <+tmortagne> what was the need for a new migrator ?
17:20 <vmassol> note that skipping M1 means renaming all @since 3.5M1 to @since 3.5RC1
17:20 <vmassol> tmortagne: sergiu changed the size of a DB field
17:20 <vmassol> so that it can b automatically indexed
17:20 <+tmortagne> ok
17:20 <vmassol> it was of type text which cannot be indexed since it's over 255 chars for Mysql
17:20 <vmassol> it can be but manually
17:20 <vmassol> using a mysql syntax that says to index only the first 255 charsq
17:21 <+tmortagne> hmm hope it does not mean we are going to break some stuff that was too big and used to work
17:21 <vmassol> but hibernate doesn't support this
17:21 <vmassol> probably, I don't know sergiu's migrator code but it probably truncates data
17:21 <+tmortagne> it does not have much choice
17:21 <+tmortagne> you remember which field it was about ?
17:21 <vmassol> I don't recall a vote on this though
17:21 <vmassol> did we have one?
17:21 <+tmortagne> did not even know we did that
17:22 <vmassol> I see he's doing:
17:22 <vmassol> stmt.addBatch("UPDATE activitystream_events SET ase_groupid = ase_requestid");
17:22 <vmassol> stmt.addBatch("ALTER TABLE activitystream_events DROP COLUMN ase_requestid");
17:22 <+tmortagne> activity stream ok so maybe it's ok since it's mostly internal stuff
17:22 <vmassol> so he seems to be adding a new colum
17:22 <vmassol> ase_groupid
17:22 <vmassol> and removing the ase_requestid one
17:31 <vmassol> gdelhumeau: would be great if you could use xwiki-contrib
17:31 <vmassol> (instead of your own github repo)
17:32 <vmassol> that will give you a JIRA, mailing list, etc
17:32 <vmassol> see http://contrib.xwiki.org
17:38 <sburjan> has quit
18:14 <sdumitriu> Up
18:14 <vmassol> hi sdumitriu been waiting for you… I'm stuck with my work since XE doesn't start and I can't test my local work
18:14 <sdumitriu> Of course I tried it, both on MySQL and HSQLDB, but only on an existing database
18:15 <vmassol> well you should have built XE I think
18:15 <vmassol> to ensure it worked
18:15 <vmassol> since it's not someone obvious
18:15 <vmassol> I have no idea why it fails ATM
18:15 <vmassol> haven't debuged it
18:15 <vmassol> (I have 70 modified files locally and I don't want to mess my local setup ;))
18:16 <sdumitriu> Denis: I remember you mentioned that you'd fix the "migrators shouldn't be run on an empty database" problem, did you?
18:16 <+Denis> yes, it did not run any migration on an empty database
18:17 <+Denis> vmassol: you can cheat the version in xwiki.cfg
18:18 <vmassol> Denis: ah cool
18:18 <vmassol> I can't find a prop for that
18:18 <vmassol> at least it's not documented
18:18 <vmassol> right?
18:18 <+Denis> it was an old props
18:18 <+Denis> it is not too visible, it is for geek
18:18 <+Denis> let me check
18:19 <+Denis> by the way, you ay also ignore a migration
18:19 <vmassol> even better
18:19 <+Denis> xwiki.store.migration.ignored
18:20 <vmassol> it's not documented voluntarily?
18:20 <vmassol> what value do I put?
18:20 <+Denis> just assign it the hint of the migration you want to ignore
18:20 <vmassol> ok
18:21 <+Denis> oups
18:21 <+Denis> no
18:21 <+Denis> put the version
18:21 <+Denis> or the class name
18:21 <+Denis> it was an old option
18:22 <vmassol> xwiki.store.migration.ignored=R35000XWIKI6691DataMigration ?
18:22 <vmassol> FQN?
18:22 <+Denis> >FQN
18:22 <+Denis> or simply put 35000
18:22 <vmassol> ok simpler
18:23 <+Denis> by the way, it is not good
18:23 <+Denis> it should be 34999
18:24 <+Denis> so you get your database to version 35000
18:24 <+Denis> and not 35001
18:25 <vmassol> thanks Denis it works
18:26 <+Denis> sure
18:26 <+Denis> it is like this migration never existed
18:27 <+Denis> FYI, to cheat the DB version, the key is xwiki.store.migration.version
18:27 <vmassol> ok
18:30 <+Denis> sdumitriu: the version of your migration should be the latest version on which your migration should be applied, the resulting db version is your migration version+1
18:35 <jvdrean> has quit
18:36 <+Denis> vmassol: it was correct initially, you may use either the version or the hint.
18:36 <vmassol> ok
18:53 <CIA-120> tmortagne master * r02c9b8b https://github.com/xwiki/xwiki-platform/commit/02c9b8b49a31d2e00666ef7de7c0d6f2d5df8ddf / (52 files in 17 dirs): XWIKI-7493: Resolve complete informations about core extension from ...
18:57 <tmortagne> has quit
18:57 <gdelhumeau> has quit
19:00 <fmancinelli> has quit
19:21 <vmassol> has quit
19:25 <vmassol> has joined #xwiki
19:27 <CIA-120> cjdelisle feature-store-attachments-newstore * rcd7d71f https://github.com/xwiki/xwiki-platform/commit/cd7d71f197f15c8aa135f66583d331359405675c / (39 files in 17 dirs): Made small change to API and fixed a few bugs which were holding up the integration tests. - http://git.io/LHpNlQ
19:30 <abusenius> has joined #xwiki
20:29 <fmancinelli> has joined #xwiki
20:34 <fmancinelli> has quit
21:01 <vmassol> sdumitriu: are you fixing the build? (the migration issue)
21:01 <sdumitriu> Yes, looking at it
21:06 <CIA-120> Vincent Massol master * r429afb5 https://github.com/xwiki/xwiki-commons/commit/429afb58fed5ced4ec0db13fb0bc9356526309f4 / (3 files in 3 dirs): XCOMMONS-92: Allow injecting Providers in superclasses - http://git.io/N-oiPQ
21:06 <CIA-120> Vincent Massol master * r47ec766 https://github.com/xwiki/xwiki-commons/commit/47ec76608cbf438e90096fc0a3d49045b72a7b73 / xwiki-commons-core/xwiki-commons-legacy/xwiki-commons-legacy-component/src/main/java/org/xwiki/component/logging/VoidLogger.java : Improved deprecation message - http://git.io/MQ0DUg
21:06 <CIA-120> Vincent Massol master * r377d102 https://github.com/xwiki/xwiki-commons/commit/377d102ca553aa73c828f4dd4cb1f2402a7a843c / (20 files in 19 dirs): XCOMMONS-91: Add notion of Environment - http://git.io/WvlXsQ
21:06 <CIA-120> Vincent Massol master * r700cf1d https://github.com/xwiki/xwiki-platform/commit/700cf1dca8a3708b90c9ecb26c132ac9b743a053 / (2 files in 2 dirs): Removed unused class (was a previous leftover) - http://git.io/4tVMwg
21:06 <CIA-120> Vincent Massol master * rb245d86 https://github.com/xwiki/xwiki-platform/commit/b245d86bea602940589a66a4f0a5545cb3b112e1 / (54 files in 41 dirs): XWIKI-7502: Replace notion of Container's ApplicationContext with the notion of Environment - http://git.io/qkNBDg
21:06 <CIA-120> Vincent Massol master * r0241490 https://github.com/xwiki/xwiki-enterprise/commit/024149040c0022ddcb2e0e0ffaf2783fdfeb4766 / (2 files in 2 dirs): XE-1112: Change default configuration property for the permanent directory - http://git.io/nNvs5g
21:16 <CIA-120> Vincent Massol master * rc959629 https://github.com/xwiki/xwiki-commons/commit/c95962949124b9ecd7099653451e0c55d3c7ac35 / pom.xml : XCOMMONS-81: Upgrade Maven Surefire Plugin to 2.12 - http://git.io/l36NKw
21:23 <CIA-120> Vincent Massol master * r1a530ac https://github.com/xwiki/xwiki-commons/commit/1a530ac5a1cb2e14caa807d1d036b9aa683cdf01 / xwiki-commons-core/xwiki-commons-legacy/pom.xml : [Misc] Removed CLIRR skip which is no longer needed - http://git.io/yekc3g
21:29 <CIA-120> Vincent Massol master * r0f3313f https://github.com/xwiki/xwiki-platform/commit/0f3313f066d3ec50c1355efe2f9d6f234bff0928 / xwiki-platform-core/xwiki-platform-cache/xwiki-platform-cache-oscache/pom.xml : XWIKI-7505: Upgrade OSCache to version 2.4.1 - http://git.io/3NmNfQ
21:33 <CIA-120> Vincent Massol master * r7fb46d3 https://github.com/xwiki/xwiki-platform/commit/7fb46d3aba96f16fb9ece84c31dbfd26491922d6 / xwiki-platform-core/xwiki-platform-legacy/pom.xml : [Misc] Removed CLIRR skip which is no longer needed - http://git.io/9NbnhA
21:35 <CIA-120> Vincent Massol master * r86616c6 https://github.com/xwiki/xwiki-platform/commit/86616c6e3643328246d82bddc896cfe493b2cc0e / xwiki-platform-core/xwiki-platform-office/xwiki-platform-office-importer/pom.xml : [Misc] Removed no longer needed comments - http://git.io/BTeDig
21:55 <mflorea> has joined #xwiki
22:10 <fmancinelli> has joined #xwiki
22:14 <abusenius> has quit
22:19 <vmassol> has quit
22:43 <vmassol> has joined #xwiki
23:06 <CIA-120> Vincent Massol master * re387c64 https://github.com/xwiki/xwiki-platform/commit/e387c6489157bc8b239d8698a28bf7d33c45cade / xwiki-platform-core/pom.xml : XWIKI-7473: Add new Zip Explorer Module ...
23:35 <jvdrean> has joined #xwiki
23:44 <vmassol> has quit
{{/code}}