Re: [hibernate-dev] Bad boot performance since 5.4 switched to ByteBuddy

2020-08-04 Thread Guillaume Smet
ther, depending on the > classpath, security manager, or whatever. Maybe it was just a problem when > running tests and changing some classes from one test to another, or > changing the security manager. To be honest I don't remember. Maybe @Guillaume > Smet remembers, but that was

Re: [hibernate-dev] Bad boot performance since 5.4 switched to ByteBuddy

2020-08-04 Thread Guillaume Smet
Hi Christian, I don't like "apparently" when talking about performances :). I would advise to use async profiler ( https://github.com/jvm-profiling-tools/async-profiler, also see https://github.com/quarkusio/quarkus/blob/master/TROUBLESHOOTING.md to learn more on how to use it) to try to understa

Re: [hibernate-dev] Hibernate Reactive: Release day!

2020-06-02 Thread Guillaume Smet
On Tue, Jun 2, 2020 at 9:24 AM Yoann Rodiere wrote: > And thanks to Andrea for working on release automation for Hibernate ORM. > The release code for Hibernate Reactive is largely based on his work Well, in this case, all our projects now have automated releases. The NoORM ones have that since

[hibernate-dev] Hibernate Validator 6.1.5.Final and 6.0.20.Final

2020-05-11 Thread Guillaume Smet
Hi, We released Hibernate Validator 6.1.5.Final and 6.0.20.Final. These versions fix CVE-2020-10693. If you develop custom constraint validators, the announcement is definitely a must-read: https://in.relation.to/2020/05/07/hibernate-validator-615-6020-released/ . Have a nice day! -- Guillaum

Re: [hibernate-dev] Jakarta EE: JPA 3.0 is coming

2020-03-11 Thread Guillaume Smet
On Wed, Mar 11, 2020 at 9:49 AM Sanne Grinovero wrote: > I'm not a fan of bytecode hacks either, so maybe let's just see what a POC > looks like before tearing it down? > >> I totally miss why we would want to even work on a POC given how much we have on our shoulders? Could someone explain it to

Re: [hibernate-dev] Jakarta EE: JPA 3.0 is coming

2020-03-10 Thread Guillaume Smet
On Tue, Mar 10, 2020 at 7:12 PM Sanne Grinovero wrote: > The "big bang" approach that Validator implemented is an option as > well; but the context is a bit different as we're having an actual > major release being developed, and the matter of possible time > pressure. > Thus the proposal of Yoa

Re: [hibernate-dev] Jakarta EE: JPA 3.0 is coming

2020-03-10 Thread Guillaume Smet
Hi, On Tue, Mar 10, 2020 at 2:48 PM Yoann Rodiere wrote: > > In particular I wonder, how would you all feel if (for example) > > Hibernate ORM 5.5.x were to depend on both JPA 2 and JPA 3 API > > artifacts? > > Mixed feelings, to be honest Same here. I thought we decided against supporting bot

[hibernate-dev] Hibernate Validator 6.1.1.Final released

2020-01-23 Thread Guillaume Smet
Hi, Earlier this month, we released Hibernate Validator 6.1.1.Final which comes with improvements to our localization support. We introduced a LocaleResolver SPI to make Hibernate Validator locale resolution customizable. More information about this new feature and how it is used in Quarkus here

[hibernate-dev] Hibernate Validator 6.1.0.Final and 6.0.18.Final released

2019-11-20 Thread Guillaume Smet
Hi, Earlier this month, we released Hibernate Validator 6.1.0.Final and 6.0.18.Final. 6.0.18.Final is a bugfix release, nothing much to say about it. 6.1.0.Final has some exciting changes, including the move to Jakarta Bean Validation and a new bootstrap tailored for Quarkus. More about all tha

[hibernate-dev] Hibernate NoORM IRC meeting minutes

2019-07-16 Thread Guillaume Smet
Hi, Here are the minutes of this week's meeting. Cheers, 15:00 < gsmet> #startmeeting 15:00 < koentsje> hello guys 15:00 < gsmet> #topic Progress Davide 15:00 < fax4ever> hi koen 15:01 < DavideD> I did work on the websites and fixed some javascripts, although I noticed lately that the

[hibernate-dev] NoORM IRC meeting minutes

2019-07-02 Thread Guillaume Smet
Hi, Here are the minutes of this week's NoORM meeting. Have a nice day. = 15:00 < gsmet> #topic Progress Davide 15:00 < yrodiere> hi 15:01 < gsmet> DavideD: you there? 15:01 < DavideD> Yes 15:01 < DavideD> Hi 15:01 < gsmet> hi :) 15:01 < DavideD> I'm currently working on improving the secur

[hibernate-dev] NoORM IRC meeting minutes

2019-06-18 Thread Guillaume Smet
Hi, As usual, here are the minutes of the NoORM IRC meeting. 15:01 < gsmet> #topic Progress Davide 15:01 < DavideD> On the OGM side, there have been a couple of PRs and several questions. Always on the MongoDB side. In theory, there is a guy looking at the support for transaction on MongoDB but I

[hibernate-dev] Hibernate NoORM meeting minutes

2019-06-04 Thread Guillaume Smet
Hi, As usual, here are the minutes of this week's NoORM meeting. Once again carefully crafted by hand. 15:01 < gsmet> #topic Progress Fabio 15:01 < fax4ever> First of all, we merged the contribution to support 15:02 < fax4ever> @DecimalScale within BigDecimal and BigInteger field types. 15:03 -!

[hibernate-dev] Hibernate ORM 5.4.3.Final released

2019-05-30 Thread Guillaume Smet
Hi, We just released Hibernate ORM 5.4.3.Final. It just fixes a few issues, nothing big. More information here: http://in.relation.to/2019/05/30/hibernate-orm-543-final-out/ . Have a nice day. -- Guillaume ___ hibernate-dev mailing list hibernate-de

[hibernate-dev] NoORM IRC meeting minutes

2019-05-21 Thread Guillaume Smet
Hi, Here are the minutes of this week's meeting (no bot for me so copy/paste FTW): 15:04 < gsmet> #startmeeting 15:04 < gsmet> not having the bot there really starts to be an issue 15:04 < fax4ever> :/ 15:04 < gsmet> anyway, let's start 15:04 < gsmet> #topic Progress Davide 15:04 < ddalto> The mo

Re: [hibernate-dev] [ORM] Do we have a way to check if an object is an entity?

2019-04-25 Thread Guillaume Smet
On Thu, Apr 25, 2019 at 8:05 PM Steve Ebersole wrote: > EMF + Metamodel are standard JPA contracts: > > > try { > emf.getMetamodel().managedType( theClass ); > } > catch ( IllegalArgumentException e ) { > // JPA defined exception if the passed class is not a managed type > } > > Agai

[hibernate-dev] [ORM] Do we have a way to check if an object is an entity?

2019-04-25 Thread Guillaume Smet
Hi, In Hibernate Validator, we have a TraversableResolver which avoids to validate the uninitialized properties of an entity. This is done in https://github.com/hibernate/hibernate-validator/blob/master/engine/src/main/java/org/hibernate/validator/internal/engine/resolver/JPATraversableResolver.j

[hibernate-dev] NoORM IRC meeting minutes

2019-04-23 Thread Guillaume Smet
Hi, Here are the minutes of this week's NoORM IRC meeting minutes. Once again, the bot wasn't there so it's all plain text all over again: === 15:10 < gsmet> #topic Progress Fabio 15:10 < fax4ever> They have been a very intense two weeks. 15:10 < fax4ever> In my opinion the

[hibernate-dev] NoORM IRC meeting minutes

2019-04-09 Thread Guillaume Smet
Hi, Here are the minutes of this week's meeting. The bot was not responding so it's plain text FTW: 15:19 < gsmet> #startmeeting 15:19 < gsmet> hmmm 15:20 < gsmet> looks like the bot has a meeting too 15:20 < koentsje> lol 15:20 < gsmet> I'll copy paste things, I suppose 15:20 < fax4ever> \o/ 15

Re: [hibernate-dev] WildFly tests with ByteBuddy enhancement are failing

2019-03-28 Thread Guillaume Smet
t; > [1] https://github.com/gbadner/hibernate-core/tree/WFLY-11891-5.3 > [2] > https://github.com/gbadner/hibernate-core/commit/ef1687807def94a4465d6cf2372f9235dc559bd1 > > On Tue, Mar 26, 2019 at 10:11 AM Gail Badner wrote: > >> Guillaume, thanks for the suggestion. I'll give it a try... >>

Re: [hibernate-dev] WildFly tests with ByteBuddy enhancement are failing

2019-03-26 Thread Guillaume Smet
I would try changing the start of EnhancerImpl#enhance() to: === public byte[] enhance(String className, byte[] originalBytes) throws EnhancementException { //Classpool#describe does not accept '/' in the description name as it expects a class name. See HHH-12545 final Strin

[hibernate-dev] NoORM IRC meeting minutes

2019-03-26 Thread Guillaume Smet
Hi, Here are the minutes of our NoORM IRC meeting: 15:36 < jbott> Meeting ended Tue Mar 26 14:36:05 2019 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) 15:36 < jbott> Minutes: http://transcripts.jboss.org/meeting/irc.freenode.org/hibernate-dev/2019/hibernate-dev.2019

Re: [hibernate-dev] WildFly tests with ByteBuddy enhancement are failing

2019-03-22 Thread Guillaume Smet
Hi Gail, Do we have any idea of what this class is supposed to be: org.jboss.as.test.integration.jpa.basic.SLSBPersistenceContexts$$$view5 ? Scott, any idea? Because it doesn't ring a bell on my side. I suspect it's a class we shouldn't access or touch. And we should probably add a condition som

[hibernate-dev] Hibernate ORM 5.4.2.Final released

2019-03-22 Thread Guillaume Smet
Hi, We just released Hibernate ORM 5.4.2.Final. More information here: http://in.relation.to/2019/03/22/hibernate-orm-542-final-out/ . Have a nice day. -- Guillaume ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/

[hibernate-dev] Hibernate Validator 6.0.16.Final released

2019-03-21 Thread Guillaume Smet
Hi, We just released Hibernate Validator 6.0.16.Final with a few bugfixes. Hibernate Validator is now also tested with JDK 12. More information about the release can be found in the announcement: http://in.relation.to/2019/03/21/hibernate-validator-6016-final-out/ . Have a nice day. -- Guilla

[hibernate-dev] NoORM IRC meeting minutes

2019-03-12 Thread Guillaume Smet
Hi, Here are the minutes of this week's NoORM IRC meeting: 15:23 < jbott> Meeting ended Tue Mar 12 14:22:50 2019 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) 15:23 < jbott> Minutes: http://transcripts.jboss.org/meeting/irc.freenode.org/hibernate-dev/2019/hibernate

Re: [hibernate-dev] Quarkus + search request

2019-03-09 Thread Guillaume Smet
So a quick note about where we're at: - Yoann is mostly done with the changes to make in Search 6 (it probably needs a rebase and I need to test them but if I don't find any issue, it's done) - I need to rebase my work on top of all the Quarkus renamings - I had an issue with the ORM extension and

[hibernate-dev] [ORM] Converging on 5.4.2

2019-03-04 Thread Guillaume Smet
Hi, I'm busy on other things these days but I would like to release a 5.4.2 soon anyway as we already have fixed 28 issues, some of them quite annoying. Gail, I think most of the remaining open PRs need your attention. If you could take a look at them, that would be great. Let's maybe take a tim

[hibernate-dev] Hibernate NoORM IRC meeting minutes

2019-03-01 Thread Guillaume Smet
Hi, Here are the minutes of this week's NoORM meeting: http://transcripts.jboss.org/meeting/irc.freenode.org/hibernate-dev/2019/hibernate-dev.2019-02-26-14.03.log.html Have a nice day. -- Guillaume ___ hibernate-dev mailing list hibernate-dev@lists.jb

[hibernate-dev] Hibernate NoORM IRC meeting minutes

2019-02-12 Thread Guillaume Smet
Hi, Here are the minutes of this week's NoORM IRC meeting. 15:23 < jbott> Meeting ended Tue Feb 12 14:23:33 2019 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) 15:23 < jbott> Minutes: http://transcripts.jboss.org/meeting/irc.freenode.org/hibernate-dev/2019/hibernate

Re: [hibernate-dev] Still an issue with Agroal when closing the pool

2019-01-29 Thread Guillaume Smet
On Tue, Jan 29, 2019 at 9:48 PM Steve Ebersole wrote: > Have we gotten any reply about this? > No. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] Still an issue with Agroal when closing the pool

2019-01-23 Thread Guillaume Smet
gTest > testSettingIsolationAsNumericString this time. -- Guillaume On Sat, Jan 5, 2019 at 10:40 PM Guillaume Smet wrote: > Hi Luis, > > We talked at some point about a potential issue in Agroal, you said 1.3 > should have all the known issues solved but apparently, there is st

[hibernate-dev] Hibernate ORM 5.4.1.Final released

2019-01-22 Thread Guillaume Smet
Hi, We released Hibernate ORM 5.4.1.Final which fixes several bugs and regressions. If you are already using ORM 5.4, it's a very recommended upgrade. All the relevant information is in the announcement: http://in.relation.to/2019/01/22/hibernate-orm-541-final-out/ . Have a nice day. -- Guill

Re: [hibernate-dev] Releasing 5.4.1.Final

2019-01-19 Thread Guillaume Smet
The release is done. I'll announce it on Monday. On Sat, Jan 19, 2019 at 6:47 PM Guillaume Smet wrote: > Hi, > > I'm in the process of releasing 5.4.1.Final, please don't push anything to > master. > > Thanks. > __

[hibernate-dev] Releasing 5.4.1.Final

2019-01-19 Thread Guillaume Smet
Hi, I'm in the process of releasing 5.4.1.Final, please don't push anything to master. Thanks. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] hibernate-tools-maven-plugin 5.4 snapshots are not being uploaded to Nexus

2019-01-16 Thread Guillaume Smet
Hi Gail, If it's the same issue I'm thinking about (namely https://hibernate.atlassian.net/browse/HHH-11807), it's this artifact that you're looking for: https://repository.jboss.org/nexus/content/groups/public-jboss/org/hibernate/orm/tooling/hibernate-enhance-maven-plugin/ . And the snapshots are

Re: [hibernate-dev] [ORM] Reducing startup log verbosity

2019-01-15 Thread Guillaume Smet
PM Sanne Grinovero wrote: > On Fri, 11 Jan 2019 at 09:53, Guillaume Smet > wrote: > > > > So what I suggest: if you disagree on a change, just comment on the > specific line of the PR and I'll revert. > > > > I plan to merge that on Tuesday. > > I like it

Re: [hibernate-dev] [ORM] Reducing startup log verbosity

2019-01-11 Thread Guillaume Smet
So what I suggest: if you disagree on a change, just comment on the specific line of the PR and I'll revert. I plan to merge that on Tuesday. On Fri, Jan 11, 2019 at 10:24 AM Guillaume Smet wrote: > In meeting all day so making progress on dumb stuff. > > Here is a very cons

Re: [hibernate-dev] [ORM] Reducing startup log verbosity

2019-01-11 Thread Guillaume Smet
In meeting all day so making progress on dumb stuff. Here is a very conservative PR on which I hope we could agree on quickly: https://github.com/hibernate/hibernate-orm/pull/2728 -- Guillaume On Thu, Jan 10, 2019 at 5:38 PM Steve Ebersole wrote: > > > On Thu, Jan 10, 2019 at 10:15 AM Sanne G

Re: [hibernate-dev] Default access type and MappedSuperclass

2019-01-11 Thread Guillaume Smet
ot;org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor") >> @StaticMetamodel(CatalogEntity.class) >> public abstract class CatalogEntity_ extends >> org.hibernate.userguide.model.AbstractCatalogEntity_ { >> >> public static volatile SingularAttribute id; >&

Re: [hibernate-dev] Default access type and MappedSuperclass

2019-01-10 Thread Guillaume Smet
t be in the subclasses extending > it. > > I have tried and I can reproduce the issue only if I do not specify > any @Id annotation in the subclass, but as soon as I add the @Id to a > subclass of the MappedSuperclass the generated static metamodel is correct. > > > On Thu, 1

[hibernate-dev] Default access type and MappedSuperclass

2019-01-09 Thread Guillaume Smet
Hi, We recently had this issue opened about us not choosing the right access type for a mapped super class: https://hibernate.atlassian.net/browse/HHH-12938 . Hibernate currently base the access type decision on the sole placement of the @Id annotation, which, in the case of a @MappedSuperclass m

Re: [hibernate-dev] [ORM] Reducing startup log verbosity

2019-01-09 Thread Guillaume Smet
sary technicalities but showing nicer > / better information, so I'd not be shy to use some multi-line > information box if that looks better. > > Thanks, > Sanne > > On Mon, 7 Jan 2019 at 16:14, Guillaume Smet > wrote: > > > > Yeah sure, they will be kept as

Re: [hibernate-dev] [ORM] Reducing startup log verbosity

2019-01-07 Thread Guillaume Smet
Yeah sure, they will be kept as is just moved to DEBUG. The only one that would change is the "Processing PersistenceUnitInfo" thing: we will remove the INFO one and keep the more detailed DEBUG one. BTW, I agree with everything Steve said, sorry for not replying earlier. On Mon, Jan 7, 2019 at

[hibernate-dev] Hibernate Validator 6.0.14.Final

2019-01-07 Thread Guillaume Smet
Hi, We just released Hibernate Validator 6.0.14.Final to fix an important issue reported by one of our users. This update is highly recommended and contains just a fix for this issue (+ a fix for the Dutch translation and an upgrade to WildFly 15 and 14.0.1 for the WildFly patches we generate).

[hibernate-dev] Still an issue with Agroal when closing the pool

2019-01-05 Thread Guillaume Smet
Hi Luis, We talked at some point about a potential issue in Agroal, you said 1.3 should have all the known issues solved but apparently, there is still one as we have transient test failures on ORM from time to time. A good example is the following one: http://ci.hibernate.org/view/ORM/job/hibern

Re: [hibernate-dev] SAP HANA build failing for a while - does it reveal a bug?

2019-01-03 Thread Guillaume Smet
-boun...@lists.jboss.org < > hibernate-dev-boun...@lists.jboss.org> On Behalf Of Guillaume Smet > Sent: Thursday, January 3, 2019 10:37 PM > To: Hibernate > Subject: [hibernate-dev] SAP HANA build failing for a while - does it > reveal a bug? > > Hi, > > Since this build > http:/

[hibernate-dev] SAP HANA build failing for a while - does it reveal a bug?

2019-01-03 Thread Guillaume Smet
Hi, Since this build http://ci.hibernate.org/view/ORM/job/hibernate-orm-master-hana-main/688/ , the SAP HANA build is failing consistently. With a lot of tests failing with: Caused by: org.hibernate.MappingException: Unable to build insert statement for table [Employee]: SAP HANA requires at leas

[hibernate-dev] [ORM] Reducing startup log verbosity

2019-01-02 Thread Guillaume Smet
Hi, Got a report from a fellow Red Hatter complaining about our logging verbosity being so 2004 and, well, I must admit I tend to agree. This is from a launch on a simple PostgreSQL app. I added some comments inline. Note that it might seem like wasting our time but I would like to improve the u

Re: [hibernate-dev] Possible regression due to the new entity graph code

2018-12-30 Thread Guillaume Smet
I'll check with Gail when she's back. The behavior change is probably caused by some of the fixes that were made during the 5.4 cycle. We'll get back to you on this. Thanks for checking. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https

[hibernate-dev] Possible regression due to the new entity graph code

2018-12-27 Thread Guillaume Smet
Hi, Looks like we have a regression due to the new entity graph code in 5.4. * https://hibernate.atlassian.net/browse/HHH-13175 for the test case and explanation; * https://github.com/hibernate/hibernate-orm/pull/2709 for a fix proposal but I don't think we really want to go that way. Steve, cou

Re: [hibernate-dev] ORM 5 -> 6 first merge meeting

2018-12-20 Thread Guillaume Smet
to the Google Docs list > then. > > Vlad > > On Thu, Dec 20, 2018 at 7:30 AM Steve Ebersole > wrote: > >> Seems to me it would be better to wait until the whole commit can be >> integrated. Just seems like it would be easier to keep track of >> >>

Re: [hibernate-dev] ORM 5 -> 6 first merge meeting

2018-12-19 Thread Guillaume Smet
ending tests become the list of tasks to be > integrated. > > Vlad > > On Wed, 19 Dec 2018, 19:40 Guillaume Smet >> Hi Vlad, >> >> Not sure if it's better to partially push the commits or to have them in >> a list to deal with later (tests + commit). >

Re: [hibernate-dev] ORM 5 -> 6 first merge meeting

2018-12-19 Thread Guillaume Smet
into > 6. Indeed that some if them cannot be fully integrated because they rely on > non-implemented functionality. But I'll add the tests in the pending tests > folder. > > Vlad > > On Wed, 19 Dec 2018, 18:19 Guillaume Smet >> Hi, >> >> We had the

[hibernate-dev] ORM 5 -> 6 first merge meeting

2018-12-19 Thread Guillaume Smet
Hi, We had the first 5 -> 6 merge meeting with Chris yesterday. We cherry-picked all the simple things but there were a few more problematic things: - things that needs to be ported soon but weren't a simple cherry-pick - things that cannot be ported right now because not yet available in 6 We de

Re: [hibernate-dev] master and 6.0 branch

2018-12-13 Thread Guillaume Smet
it should be Gail for 5.x + whoever volunteers for the 6 part. On Thu, Dec 6, 2018 at 8:56 PM Steve Ebersole wrote: > I completely agree with everything you say. A few thoughts in-line... > > On Thu, Dec 6, 2018 at 12:37 PM Guillaume Smet > wrote: > >> == What to do then &g

[hibernate-dev] Hibernate ORM 5.4.0.Final released

2018-12-13 Thread Guillaume Smet
Hi, We just released Hibernate ORM 5.4.0.Final after two candidate releases. Thanks to everyone involved in testing the CRs, that was very helpful. The idea behind 5.4 is to be a drop-in replacement of 5.3.x so please consider moving to this version as 5.3.x will only receive critical bugfixes.

Re: [hibernate-dev] Releasing ORM 5.4.0.Final tomorrow

2018-12-12 Thread Guillaume Smet
If I had to guess it's > related to the attempt to auto-publish to Central. That was my first > thought anyway. We should maybe disable that since it does not work anyway. > > > On Wed, Dec 12, 2018, 4:01 PM Guillaume Smet > wrote: > >> I started the rel

Re: [hibernate-dev] Releasing ORM 5.4.0.Final tomorrow

2018-12-12 Thread Guillaume Smet
I started the release process 30 minutes ago but the bintrayPublish task is taking far longer than usual. Please do not push anything to master until I confirm the release is complete. Thanks. -- Guillaume On Wed, Dec 12, 2018 at 4:46 PM Guillaume Smet wrote: > Got sidetracked by ot

Re: [hibernate-dev] Releasing ORM 5.4.0.Final tomorrow

2018-12-12 Thread Guillaume Smet
Got sidetracked by other things. Will push the release tonight and announce tomorrow. -- Guillaume On Tue, Dec 11, 2018 at 10:28 PM Guillaume Smet wrote: > Hi, > > FYI, I will release ORM 5.4.0.Final tomorrow afternoon my time. > > Please don't merge any last minute cha

[hibernate-dev] Releasing ORM 5.4.0.Final tomorrow

2018-12-11 Thread Guillaume Smet
Hi, FYI, I will release ORM 5.4.0.Final tomorrow afternoon my time. Please don't merge any last minute changes as I won't have the time to deal with potential issues. Thanks. -- Guillaume ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org h

Re: [hibernate-dev] master and 6.0 branch

2018-12-06 Thread Guillaume Smet
ker that we won't really be able to deal with. And less users. The very important thing IMHO is "taking into account 2.1/ into the daily work for 6". That means 6 development should also include bug fixing of incoming bugs, not only implement missing features. -- Guillaume On Thu, Dec

Re: [hibernate-dev] master and 6.0 branch

2018-12-06 Thread Guillaume Smet
> Le 6 déc. 2018 à 16:03, Sanne Grinovero a écrit : > It's 200,000 lines of code difference. Just don't make any change on 5 > - it's not a good use of our time either, since the future is 6. Make 5.x a dead branch is not a good option. Especially, since we don’t know when we will release 6.

Re: [hibernate-dev] master and 6.0 branch

2018-12-06 Thread Guillaume Smet
Hi Steve, I don't particularly like it. We have very few resources to work on 5.x and clearly we won't be able to do that + learn about 6 in parallel and fix issues in both, probably in 2 completely different ways. And we won't really be able to know if it doesn't work because it's not implemente

Re: [hibernate-dev] Chat migration - D minus 115 until the death of HipChat

2018-12-06 Thread Guillaume Smet
>>>> Some "barriers" we have in place have made it manageable; of course I > >>>>> can't tell if it's all merit of the barriers of entry or just people > >>>>> coming in lower volumes with better intentions, but I&#x

Re: [hibernate-dev] 6.0 Alpha1 prep

2018-12-05 Thread Guillaume Smet
On Wed, Dec 5, 2018 at 4:47 PM Steve Ebersole wrote: > On Wed, Dec 5, 2018 at 9:28 AM Guillaume Smet > wrote: > >> So it's a detail but it's pretty handy to have relocations for these >> artifacts in the case of our test case template as we can test various >&g

Re: [hibernate-dev] 6.0 Alpha1 prep

2018-12-05 Thread Guillaume Smet
Hi, On Wed, Dec 5, 2018 at 2:47 PM Steve Ebersole wrote: > Previously (last year's f2f) we had decided to unify the artifact naming > conventions; specifically for ORM this meant renaming the groupId from > `org.hibernate` to `org.hibernate.orm` as part of 6.0. I wanted to see if > everyone sti

[hibernate-dev] NoORM IRC meeting minutes

2018-12-04 Thread Guillaume Smet
Hi, Here are the minutes of today's meeting: 15:20 < jbott> Meeting ended Tue Dec 4 14:20:52 2018 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) 15:20 < jbott> Minutes: http://transcripts.jboss.org/meeting/irc.freenode.org/hibernate-dev/2018/hibernate-dev.2018-12-0

[hibernate-dev] Hibernate ORM 5.4.0.CR2 released

2018-11-29 Thread Guillaume Smet
Hi, We just released Hibernate ORM 5.4.0.CR2 with a few fixes on top of CR1. More information in the announcement: http://in.relation.to/2018/11/29/hibernate-orm-540-cr2-out/ Please test and report back if you have any issues. Final should be released in the coming weeks. Thanks! -- Guillaum

Re: [hibernate-dev] ORM 6 branch

2018-11-27 Thread Guillaume Smet
+1 to not replace master at this point. At least until the feature coverage is sufficient and we start to actively fix bugs on 6 and then backport the fix somehow. +1 to move wip/6.0 to the main repository with an appropriate warning at the top of the README.md. -- Guillaume On Tue, Nov 27, 201

[hibernate-dev] NoORM IRC meeting minutes

2018-11-20 Thread Guillaume Smet
Hi, Here are the minutes of this week's NoORM IRC meeting: 15:25 < jbott> Meeting ended Tue Nov 20 14:25:27 2018 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) 15:25 < jbott> Minutes: http://transcripts.jboss.org/meeting/irc.freenode.org/hibernate-dev/2018/hibernate

Re: [hibernate-dev] Moderation of in.relation.to

2018-11-16 Thread Guillaume Smet
I, for one, don't receive any email from disqus when there is a new comment. On Fri, Nov 16, 2018 at 7:42 PM Sanne Grinovero wrote: > On Fri, 16 Nov 2018 at 13:47, Yoann Rodiere wrote: > > > > I think we need to be moderators, but I don't think I currently am. And > apparently I do not have acc

[hibernate-dev] Hibernate 5.2.18

2018-11-16 Thread Guillaume Smet
Hi, I started the release process but our Nexus' Lucene indexes are apparently broken. Can't close the repository and release it. Will follow up next week. -- Guillaume ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.

[hibernate-dev] Hibernate ORM 5.4.0.CR1 released

2018-11-15 Thread Guillaume Smet
Hi, We just released Hibernate ORM 5.4.0.CR1, the first candidate release of 5.4.0. 5.4 is the direct continuation of 5.3 and we will encourage everyone to upgrade to it to benefit from the latest fixes. Thus thoroughly testing this release candidate is especially important. It brings EntityGra

[hibernate-dev] ORM 5.4.0 release schedule

2018-11-13 Thread Guillaume Smet
Hi, We discussed the 5.4.0 release schedule with Gail and decided on the following: - Tomorrow Wednesday 6PM CET (e.g. Paris time): master is frozen, please don't commit anything to master after this time. And please don't commit anything without proper review. - Tomorrow her time, Gail will run

Re: [hibernate-dev] HipChat

2018-11-12 Thread Guillaume Smet
Ah yes, I seem to remember that they removed the ability to create new accounts (which is a shame for existing communities planning their migration but that's how it is). We are trying gitter at the moment so you can join us here (in the hibernate community, we have a bunch of rooms). Not sure it

Re: [hibernate-dev] Chat migration - D minus 115 until the death of HipChat

2018-11-12 Thread Guillaume Smet
On Mon, Nov 12, 2018 at 11:35 AM Sanne Grinovero wrote: > If one wants a lot of features then clearly only Slack is the way to > go. Not saying we should go with Slack, just that we'll need to be > patient and we'll always be short of some features - if that's not > acceptable then only Slack wil

Re: [hibernate-dev] Chat migration - D minus 115 until the death of HipChat

2018-11-12 Thread Guillaume Smet
or general > mentions in a room. > Am Mo., 12. Nov. 2018 um 11:28 Uhr schrieb Guillaume Smet > : > > > > Are you using the webapp? > > > > Because I don't see any preference to enable sound and there is no sound > at all when I get a notification. &g

Re: [hibernate-dev] Chat migration - D minus 115 until the death of HipChat

2018-11-12 Thread Guillaume Smet
for > Debezium, too, and in fact the notifications were too noisy for me, so > I turned them off :) > > --Gunnar > > Am Mo., 12. Nov. 2018 um 10:59 Uhr schrieb Guillaume Smet > : > > > > Hi, > > > > So, one thing I find particularly annoying with

Re: [hibernate-dev] Chat migration - D minus 115 until the death of HipChat

2018-11-12 Thread Guillaume Smet
Hi, So, one thing I find particularly annoying with Gitter now that we are trying to use it for real interactions is the lack of notification sounds in the webapp. When you're focused on your work, it's really easy to miss the visual ones and having a sound really helped on HipChat. There is an o

Re: [hibernate-dev] Releasing a new "major" HCANN version for ORM 5.4

2018-11-08 Thread Guillaume Smet
s projects where feasible (and here I think it > is feasible). > > But +1 to releasing 5.1.0 > > On Mon, Nov 5, 2018 at 10:43 AM Guillaume Smet > wrote: > >> Hi, >> >> Sanne merged >> https://github.com/hibernate/hibernate-commons-annotations/pull/

Re: [hibernate-dev] Getting automatically removed from the list for "excessive bounces"?

2018-11-08 Thread Guillaume Smet
@Sanne any progress on the support case? Thanks! On Thu, Nov 8, 2018 at 2:52 PM Chris Cranford wrote: > I'm also noticing as of today that parts of entire conversations are not > being delivered, but yet my account not suspended. I'm seeing 5-6 > messages sent since Friday, November 2nd never

Re: [hibernate-dev] [ORM] Releasing 5.2.18?

2018-11-07 Thread Guillaume Smet
On Mon, Nov 5, 2018 at 4:53 PM Guillaume Smet wrote: > Hi, > > So, I was thinking (again) about releasing a 5.2.18. > > > https://hibernate.atlassian.net/projects/HHH/versions/31663/tab/release-report-todo > says: > > - we have 4 issues about adding stuff to the migra

[hibernate-dev] NoORM IRC meeting minutes

2018-11-06 Thread Guillaume Smet
Hi, Here are the minutes of this week's NoORM IRC meeting. 15:33 < jbott> Meeting ended Tue Nov 6 14:33:44 2018 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) 15:33 < jbott> Minutes: http://transcripts.jboss.org/meeting/irc.freenode.org/hibernate-dev/2018/hibernate

[hibernate-dev] [ORM] Releasing 5.2.18?

2018-11-05 Thread Guillaume Smet
Hi, So, I was thinking (again) about releasing a 5.2.18. https://hibernate.atlassian.net/projects/HHH/versions/31663/tab/release-report-todo says: - we have 4 issues about adding stuff to the migration notes. Gail, do you still think it's useful? Maybe for people going from 5.1 to 5.3? How much

[hibernate-dev] Wrapping up 5.4.0

2018-11-05 Thread Guillaume Smet
Hi, If everybody is OK with it, I would like to wrap 5.4.0.CR1 on Wednesday 14th (this is next Wednesday). That means that everything we want in 5.4.0 should be in by then. The big remaining subject IMHO is this one: https://github.com/hibernate/hibernate-orm/pull/2611 . I think we really need t

[hibernate-dev] Releasing a new "major" HCANN version for ORM 5.4

2018-11-05 Thread Guillaume Smet
Hi, Sanne merged https://github.com/hibernate/hibernate-commons-annotations/pull/11 into HCANN master a while ago, master that is currently labelled as 6. Wondering if we should release a HCANN 5.1.0 containing this fix (not sure a 6 is needed for that but I don't really mind if some of you prefe

Re: [hibernate-dev] Should LiteralExpression support Enum?

2018-11-02 Thread Guillaume Smet
is should be supported for Critera queries as well. > > > > On Mon, Oct 8, 2018 at 5:30 AM Guillaume Smet > wrote: > >> Hi, >> >> We had an interesting test case posted this week-end, namely >> https://github.com/hibernate/hibernate-orm/pull/2562/files . &g

Re: [hibernate-dev] Boolean with null values and SAP SQL Anywhere

2018-11-02 Thread Guillaume Smet
think a setting makes sense to control this. > > Honestly though, not sure this has a big compatibility impact. > > On Fri, Nov 2, 2018 at 10:00 AM Guillaume Smet > wrote: > >> Hi, >> >> Quite some time ago, someone opened >> https://hibernate.atlassian.ne

[hibernate-dev] Boolean with null values and SAP SQL Anywhere

2018-11-02 Thread Guillaume Smet
Hi, Quite some time ago, someone opened https://hibernate.atlassian.net/browse/HHH-12850 stating that null values were not supported for Booleans with SAP SQL Anywhere. This is due to the fact that null values are not supported for bits and we should use a tinyint. Interestingly enough, it was fi

Re: [hibernate-dev] JIRA self-registration of users

2018-11-02 Thread Guillaume Smet
Hi, Not sure it's related but when I go to JIRA on my mobile phone (probably not logged in), I have a popup asking to log in that I have to close. Sometimes it reappears once again when I close it. I don't have this behavior when using Firefox on my laptop, even when signed out but that might exp

[hibernate-dev] [ORM] RowSelection#definesLimit() looking weird

2018-10-26 Thread Guillaume Smet
Hi, RowSelection#definesLimit() [1] is defined as: public boolean definesLimits() { return maxRows != null || (firstRow != null && firstRow <= 0); } The firstRow <= 0 condition looks exactly like the opposite condition I would have used intuitively. Tests pass with either conditi

Re: [hibernate-dev] Getting automatically removed from the list for "excessive bounces"?

2018-10-24 Thread Guillaume Smet
FWIW, I also received these emails and apparently Chris too as we talked about it. I wasn't sure of who to contact for this sort of issues. We are using GMail too. I tried to take a look at the Mailman administration page to see if I could get a hand on one of those bounce messages but to no avai

[hibernate-dev] NoORM IRC meeting minutes

2018-10-23 Thread Guillaume Smet
Hi, Here are the minutes of our IRC meeting: 15:20 < jbott> Meeting ended Tue Oct 23 13:20:49 2018 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) 15:20 < jbott> Minutes: http://transcripts.jboss.org/meeting/irc.freenode.org/hibernate-dev/2018/hibernate-dev.2018-10-23

Re: [hibernate-dev] Introducing a "none" BytecodeProvider

2018-10-22 Thread Guillaume Smet
On Sun, Oct 21, 2018 at 9:48 PM Sanne Grinovero wrote: > > I think it goes without saying but we still need to have ORM working > without enhancement, considering how many bugs we have related to enhanced > classes. > > I didn't understand thist last sentence. Could you please clarify? > Even if

Re: [hibernate-dev] Introducing a "none" BytecodeProvider

2018-10-18 Thread Guillaume Smet
Hi, On Thu, Oct 18, 2018 at 1:33 PM Sanne Grinovero wrote: > > Regarding "BasicProxyFactory", Guillaume and I had to fight with this > think a few weeks ago, I think. If I remember correctly, it's used in > particular to instantiate abstract classes (!) during bootstrap. It seems > to be needed

Re: [hibernate-dev] CriteriaBuilder, aggregation and types

2018-10-16 Thread Guillaume Smet
Test added to your PR. It passes now. On Tue, Oct 16, 2018 at 10:02 AM Guillaume Smet wrote: > Fabio put together a test in his PR: > https://github.com/hibernate/hibernate-orm/pull/2568/files#diff-ab60fb95866b43def421ef53163885ccR1 > > On Tue, Oct 16, 2018 at 4:38 AM Steve Ebers

Re: [hibernate-dev] CriteriaBuilder, aggregation and types

2018-10-16 Thread Guillaume Smet
e this? > > On Mon, Oct 15, 2018 at 7:50 AM Guillaume Smet > wrote: > >> OK, ping me when you're ready! >> >> On Mon, Oct 15, 2018 at 1:39 PM Steve Ebersole >> wrote: >> >>> Let's discuss on Hip Chat in a few after I have woken up a

Re: [hibernate-dev] CriteriaBuilder, aggregation and types

2018-10-15 Thread Guillaume Smet
OK, ping me when you're ready! On Mon, Oct 15, 2018 at 1:39 PM Steve Ebersole wrote: > Let's discuss on Hip Chat in a few after I have woken up and had some > coffee :) > > > On Mon, Oct 15, 2018, 6:02 AM Guillaume Smet > wrote: > >> Hi, >> >>

Re: [hibernate-dev] CriteriaBuilder, aggregation and types

2018-10-15 Thread Guillaume Smet
to be done for *all* the Expressions containing nested expressions. Either that or we simplify the Renderable contract to have only one render() method and a parameter defining the context. That would allow to avoid all these changes. Thoughts? -- Guillaume On Thu, Oct 11, 2018 at 4:01 PM Gui

  1   2   3   4   5   6   7   >