[hibernate/hibernate-orm] 129530: HHH-12857 Avoid using a static ByteBuddy object
by GitHub
Branch: refs/heads/5.3
Home: https://github.com/hibernate/hibernate-orm
Commit: 129530e464a406c97dcf3e0df31214f937449f53
https://github.com/hibernate/hibernate-orm/commit/129530e464a406c97dcf3e0...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2018-08-02 (Thu, 02 Aug 2018)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/EnhancerImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/BasicProxyFactoryImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/ByteBuddyState.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/BytecodeProviderImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/ProxyFactoryFactoryImpl.java
M hibernate-core/src/main/java/org/hibernate/proxy/pojo/bytebuddy/ByteBuddyProxyFactory.java
A hibernate-core/src/main/java/org/hibernate/proxy/pojo/bytebuddy/ByteBuddyProxyHelper.java
M hibernate-core/src/main/java/org/hibernate/proxy/pojo/bytebuddy/SerializableProxy.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/ByteBuddyBasicProxyFactoryTest.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/EnhancerWildFlyNamesTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/bytebuddy/EnhancerWildFlyNamesTest.java
R hibernate-core/src/test/java/org/hibernate/test/proxy/bytebuddy/ByteBuddyBasicProxyFactoryTest.java
Log Message:
-----------
HHH-12857 Avoid using a static ByteBuddy object
In the end, it does not change anything as the BytecodeProvider is still
static but it helps as a general cleanup for the following commits.
Commit: fdf19f17b40f10db085605f91baf7ddf75096285
https://github.com/hibernate/hibernate-orm/commit/fdf19f17b40f10db085605f...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2018-08-02 (Thu, 02 Aug 2018)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/EnhancerImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/BasicProxyFactoryImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/ByteBuddyState.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/BytecodeProviderImpl.java
A hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/HibernateMethodLookupDispatcher.java
M hibernate-core/src/main/java/org/hibernate/proxy/pojo/bytebuddy/ByteBuddyProxyHelper.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/GenerateProxiesTest.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/HibernateMethodLookupDispatcherTest.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/SimpleEntity.java
Log Message:
-----------
HHH-12857 Rewrite getDeclaredMethod() calls in static initializers
We rewrite them to run them as privileged blocks.
Commit: 5150fd5d606468b66e1e3832c8684eae620164d1
https://github.com/hibernate/hibernate-orm/commit/5150fd5d606468b66e1e383...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2018-08-02 (Thu, 02 Aug 2018)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/EnhancerImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/ByteBuddyState.java
M hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/SimpleEntity.java
Log Message:
-----------
HHH-12857 Reuse the TypePool created in EnhancerImpl
Commit: d8a1c9911750898269bf3f51dd69d32d5955270f
https://github.com/hibernate/hibernate-orm/commit/d8a1c9911750898269bf3f5...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2018-08-02 (Thu, 02 Aug 2018)
Changed paths:
M gradle/libraries.gradle
Log Message:
-----------
HHH-12877 Upgrade ByteBuddy to 1.8.15
Compare: https://github.com/hibernate/hibernate-orm/compare/c9de4b8ce7b0...d8a1c99...
**NOTE:** This service has been marked for deprecation: https://developer.github.com/changes/2018-04-25-github-services-deprecation/
Functionality will be removed from GitHub.com on January 31st, 2019.
6 years, 4 months
[hibernate/hibernate-orm] d95b36: HHH-12857 Avoid using a static ByteBuddy object
by GitHub
Branch: refs/heads/master
Home: https://github.com/hibernate/hibernate-orm
Commit: d95b36ffb6cea2337d6a0280c86d82912ae585c8
https://github.com/hibernate/hibernate-orm/commit/d95b36ffb6cea2337d6a028...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2018-08-01 (Wed, 01 Aug 2018)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/EnhancerImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/BasicProxyFactoryImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/ByteBuddyState.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/BytecodeProviderImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/ProxyFactoryFactoryImpl.java
M hibernate-core/src/main/java/org/hibernate/proxy/pojo/bytebuddy/ByteBuddyProxyFactory.java
A hibernate-core/src/main/java/org/hibernate/proxy/pojo/bytebuddy/ByteBuddyProxyHelper.java
M hibernate-core/src/main/java/org/hibernate/proxy/pojo/bytebuddy/SerializableProxy.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/ByteBuddyBasicProxyFactoryTest.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/EnhancerWildFlyNamesTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/bytebuddy/EnhancerWildFlyNamesTest.java
R hibernate-core/src/test/java/org/hibernate/test/proxy/bytebuddy/ByteBuddyBasicProxyFactoryTest.java
Log Message:
-----------
HHH-12857 Avoid using a static ByteBuddy object
In the end, it does not change anything as the BytecodeProvider is still
static but it helps as a general cleanup for the following commits.
Commit: dff202ded9efc06fb5904d31562e8b8b4e20c98b
https://github.com/hibernate/hibernate-orm/commit/dff202ded9efc06fb5904d3...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2018-08-01 (Wed, 01 Aug 2018)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/EnhancerImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/BasicProxyFactoryImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/ByteBuddyState.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/BytecodeProviderImpl.java
A hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/HibernateMethodLookupDispatcher.java
M hibernate-core/src/main/java/org/hibernate/proxy/pojo/bytebuddy/ByteBuddyProxyHelper.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/GenerateProxiesTest.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/HibernateMethodLookupDispatcherTest.java
A hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/SimpleEntity.java
Log Message:
-----------
HHH-12857 Rewrite getDeclaredMethod() calls in static initializers
We rewrite them to run them as privileged blocks.
Commit: 6a3ed33627fb37185e4646ed49aed1a07ec33cb9
https://github.com/hibernate/hibernate-orm/commit/6a3ed33627fb37185e4646e...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2018-08-01 (Wed, 01 Aug 2018)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/EnhancerImpl.java
M hibernate-core/src/main/java/org/hibernate/bytecode/internal/bytebuddy/ByteBuddyState.java
M hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/SimpleEntity.java
Log Message:
-----------
HHH-12857 Reuse the TypePool created in EnhancerImpl
Commit: 0e2657d0bb1956061d574ecbdb1cc41b50ed4642
https://github.com/hibernate/hibernate-orm/commit/0e2657d0bb1956061d574ec...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2018-08-02 (Thu, 02 Aug 2018)
Changed paths:
M gradle/libraries.gradle
Log Message:
-----------
HHH-12877 Upgrade ByteBuddy to 1.8.15
Compare: https://github.com/hibernate/hibernate-orm/compare/349bd2649c08...0e2657d...
**NOTE:** This service has been marked for deprecation: https://developer.github.com/changes/2018-04-25-github-services-deprecation/
Functionality will be removed from GitHub.com on January 31st, 2019.
6 years, 4 months
[hibernate/hibernate-ogm] fd52ce: OGM-1501 Add support for MongoDB ReadConcern
by GitHub
Branch: refs/heads/master
Home: https://github.com/hibernate/hibernate-ogm
Commit: fd52ce42e51002ff42aba38d4d169c6ede24683f
https://github.com/hibernate/hibernate-ogm/commit/fd52ce42e51002ff42aba38...
Author: Aleksandr Mylnikov <aleksandr_mylnikov(a)epam.com>
Date: 2018-08-01 (Wed, 01 Aug 2018)
Changed paths:
M mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/MongoDBDialect.java
M mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/MongoDBProperties.java
M mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/configuration/impl/MongoDBConfiguration.java
A mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/ReadConcern.java
A mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/ReadConcernType.java
A mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/impl/ReadConcernConverter.java
A mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/impl/ReadConcernOption.java
M mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/navigation/MongoDBEntityContext.java
M mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/navigation/MongoDBGlobalContext.java
M mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/navigation/MongoDBPropertyContext.java
M mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/navigation/impl/MongoDBEntityContextImpl.java
M mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/navigation/impl/MongoDBGlobalContextImpl.java
M mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/options/navigation/impl/MongoDBPropertyContextImpl.java
M mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/configuration/impl/MongoDBConfigurationTest.java
A mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/test/options/readconcern/GolfCourse.java
A mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/test/options/readconcern/GolfPlayer.java
A mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/test/options/readconcern/ReadConcernAnnotationTest.java
A mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/test/options/readconcern/ReadConcernConfiguredProgrammaticallyTest.java
A mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/test/options/readconcern/ReadConcernPropagationTest.java
Log Message:
-----------
OGM-1501 Add support for MongoDB ReadConcern
Commit: fd5ec7c055af81608eb966b531151a7c85304832
https://github.com/hibernate/hibernate-ogm/commit/fd5ec7c055af81608eb966b...
Author: Aleksandr Mylnikov <aleksandr_mylnikov(a)epam.com>
Date: 2018-08-01 (Wed, 01 Aug 2018)
Changed paths:
M mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/test/options/readconcern/GolfPlayer.java
M mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/test/options/readconcern/ReadConcernPropagationTest.java
M mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/test/options/readpreference/ReadPreferencePropagationTest.java
M mongodb/src/test/java/org/hibernate/ogm/datastore/mongodb/utils/MockMongoClientBuilder.java
Log Message:
-----------
OGM-1501 Tests for ReadConcern implementation
Compare: https://github.com/hibernate/hibernate-ogm/compare/d47454f5c0b5...fd5ec7c...
**NOTE:** This service has been marked for deprecation: https://developer.github.com/changes/2018-04-25-github-services-deprecation/
Functionality will be removed from GitHub.com on January 31st, 2019.
6 years, 4 months