All Versions
21
Latest Version
Avg Release Cycle
79 days
Latest Release
1250 days ago

Changelog History
Page 2

  • v5.2.3 Changes

    January 14, 2019

    🚀 NHibernate 5.2.3 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.2.3/
    📦 https://www.nuget.org/packages/NHibernate/5.2.3

    🚀 1 issue was resolved in this release.

  • v5.2.2 Changes

    January 06, 2019

    🚀 NHibernate 5.2.2 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.2.2/
    📦 https://www.nuget.org/packages/NHibernate/5.2.2

    🚀 3 issues were resolved in this release.

  • v5.2.1 Changes

    December 08, 2018

    🚀 NHibernate 5.2.1 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.2.1/
    📦 https://www.nuget.org/packages/NHibernate/5.2.1

    🚀 5 issues were resolved in this release.

  • v5.2.0 Changes

    December 03, 2018

    🚀 NHibernate 5.2.0 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.2.0/
    📦 https://www.nuget.org/packages/NHibernate/5.2.0

    🚀 157 issues were resolved in this release.

    Possible Breaking Changes
    • ⚡️ Entities having many non-readonly properties (including many-to-one) mapped to the same column will no more silently ignore the trouble till an insert or update is attempted. They will now cause the session factory built to fail. When mapping many properties to the same column, all of them excepted at most one should be mapped with insert="false" update="false".
    • Mappings mixing column elements and formula elements were taking into account only the formula elements. They will now take into account all elements.
    • Mappings mixing column elements and/or formula elements with a column attribute or a formula attribute were silently ignoring the attribute. They will now throw.
    • Mappings mixing a column attribute and a formula attribute were silently doing some best effort logic, either considering this as a two columns mapping, the second one being the formula (most cases), or only taking into account the formula (case of the <element> mapping). They will now throw.
    • 👀 NHibernate StringType has gained case-sensitivity and culture parameters. Previously it was ignoring parameters. This type may change its behavior for any mapping having defined parameters for this type. See #1833.
    • 👍 Mapping a dynamic component with a Hashtable property instead of an IDictionary is no more supported.
    • 👍 Querying a dynamic entity as a Hashtable instead of an IDictionary is no more supported.
    • With PostgreSQL, a HQL query using the bitwise xor operator ^ or bxor was exponentiating the arguments instead. It will now correctly apply the xor operator. (# operator in PostgreSQL SQL.)
    • Auto-generated constraint names will not be the same than the ones generated with previous NHibernate versions under .Net Framework. (Under .Net Core those names were anyway changing at each run.) The new ones will be the same whatever the runtime used for generating them.
    • Some generated PK names may change, if a table name has a quoting symbol at precise 13th character.
    • 🏗 The WcfOperationSessionContext has been removed from .Net Core and .Net Standard builds. See #1842.
    • Some classes, which were not serializing the session factory, do now serialize it. In case of cross-process serialization/deserialization, these session factories will need to be properly named, by setting the session_factory_name setting in the configuration used to build them. This may mainly affect users of a distributed second level cache, if their cache implementation uses binary serialization. Affected classes are: CacheKey, CollectionKey, EntityKey and EntityUniqueKey.
    • ⬆️ Some types cache representations have changed. Out-of-process second level caches should be cleared after upgrading NHibernate, if some of those types were cached. The concerned types are: CultureInfoType, TypeType, UriType, XDocType, XmlDocType.
    • Dialect.GetIdentitySelectString was called by the entity persisters with inverted parameter values: the table name in the column parameter, and the column name in the table parameter. No built-in dialects were using the parameter values. External dialects which were using it inverted (causing issues to collection persisters, which have always supplied them correctly) needs to be accordingly adjusted.
    • 👉 Users providing through an IObjectFactory some custom logic for instantiating value types will now need to supply their own result transformer if they were using AliasToBeanResultTransformer with value types, or their own entity tuplizer if they were using value types as entities.
    • 🚚 Users providing through an IObjectFactory some custom logic for instantiating their custom session contexts will have to implement ICurrentSessionContextWithFactory and add a parameterless public constructor to their custom context, and move their custom instantiation logic from IObjectsFactory.CreateInstance(Type, object[]) to IObjectsFactory.CreateInstance(Type).
    • Various *Binding classes of NHibernate will now always have their protected dialect field null. (These classes are not expected to be derived by users, as there is no way to use custom descendants with NHibernate.)
    • AbstractPersistentCollection.AfterInitialize does no more perform queued operations. Queued operations are now run by a later call to a new method, ApplyPendingOperations. Concrete custom implementations relying on the queued operations to be done by their base AfterInitialize will need to be changed accordingly.
  • v5.1.7 Changes

    January 19, 2020

    🚀 NHibernate 5.1.7 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.1.7/
    📦 https://www.nuget.org/packages/NHibernate/5.1.7

    🚀 1 issue was resolved in this release.

  • v5.1.6 Changes

    September 14, 2019

    🚀 NHibernate 5.1.6 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.1.6/
    📦 https://www.nuget.org/packages/NHibernate/5.1.6

    🚀 1 issue was resolved in this release.

    • #2172 Using DependentTransaction fails
  • v5.1.5 Changes

    March 24, 2019

    🚀 NHibernate 5.1.5 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.1.5/
    📦 https://www.nuget.org/packages/NHibernate/5.1.5

    🚀 3 issues were resolved in this release.

  • v5.1.4 Changes

    January 06, 2019

    🚀 NHibernate 5.1.4 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.1.4/
    📦 https://www.nuget.org/packages/NHibernate/5.1.4

    🚀 1 issue was resolved in this release.

  • v5.1.3 Changes

    June 10, 2018

    🚀 NHibernate 5.1.3 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.1.3/
    📦 https://www.nuget.org/packages/NHibernate/5.1.3

  • v5.0.8 Changes

    September 14, 2019

    🚀 NHibernate 5.0.8 is now released.

    🚀 For a list of resolved issues & pull requests, see the milestone or the release notes.

    Binaries are available on NuGet and SourceForge:
    https://sourceforge.net/projects/nhibernate/files/NHibernate/5.0.8/
    📦 https://www.nuget.org/packages/NHibernate/5.0.8

    🚀 1 issue was resolved in this release.

    • #2172 Using DependentTransaction fails