Mark this as deprecated - as discussed. Should use FlushMode.Never.
[castle.git] / ActiveRecord / Changes.txt
blob6427d4f4af45616e213368856cd6ac658a3f0684
1 Release Candidate 2
2 ===================
4 - Mark SessionScope.Dispose(true) overload as deprecated. FlushMode.Never is the new black. 
6 - Added support for property-ref to BelongsTo (many-to-one)
8 - Added support for CompositeUserType properties in nested classes
10 - Added ActiveRecordBase.Asc/Desc(params string[] propertyNames) methods to allow convenient specification of sort order.
12 - Applied Oleg Snurnikov's patch fixing AR-178
13   "SessionScopeWebModule fails with HybridWebThreadScopeInfo"
15 - Applied Artur Grzegorzewicz's patch fixing AR-177
16   "Parameterless overload of ActiveRecordStarter.Initialize"
18 - Added RegisterAssemblies to ActiveRecordStarter
20 - Relaxed the need for Types that represent database boundaries to extend
21   from ActiveRecordBase.  Following AR-160 changes.
23 - Applied Michael Thomas' patch fixing AR-165
24   "UniqueKey property on BelongsToAttributed does not cause generation of unique-key 
25    attribute in associated many-to-one xml element"
27 - Applied Lee Henson's patch fixing AR-167
28   "A CompositeKey class with multiple Equals() overloads throws exception"
30 - Applied Michael Thomas' suggestion to fix AR-170
31   "Indeterministic crashes when creating the NHibernate Mapping"
33 - Applied Lee Henson's patch fixing AR-172
34   "Support for collection-type attribute on HasMany"
36 - Applied Gautier's patch fixing AR-173
37   "Add a type parameter to the methods : CreateSchema, DropSchema, 
38   GenerateCreationScript and GenerateDropScript"
40 - Fixed AR-174
41   "GenerateCreationScripts and GenerateDropScripts generate the scripts for only one database"
43 - Applied Mike Thomas' suggestion to make AR work with multiple databases without the
44   ARBase usage. This fixes AR-160
46 - Added support for SaveOrUpdateCopy() which facilities working with detached objects.
48 - Applied Tim Haines' patch adding the ability to verify if the models match the db 
49   structure. This can be done by setting the "verifyModelsAgainstDBSchema" attribute to true on
50   the ActiveRecord configuration node, or using the method VerifySchema on ActiveRecordStarter
52 - Applied Lee Henson's patch change Exists implementation to use ISession.Get 
53   This is required for lazy loaded classes as the old implementation would always 
54   return true for them.
56 - Applied patch by David N. Godfrey that
57   - Refactored ActiveRecord to rely on Castle.Components.Validator to perform validations
58   - Fixed an old behavior where ActiveRecord didn't notify the session scope about sessions
59     that were invalidated due to database errors. 
61 - Pushed processing of configuration into InPlaceConfigurationSource so both
62   ActiveRecord and ActiveRecordFacility could handle it in one place.
64 - Fixed AR-151
65   "XmlGenerationVisitor.MakeCustomTypeAtt doesn't support generic types"
67 - Applied Matthew Robinson's patch fixing AR-152
68   "Incorporation of subselect fetch strategy"
70 - Added the CompositeUserTypeAttribute and allowed the use of NHibernate's ICompositeUserType (AR-128)
72 - Applied the Marc-André's tests patch (AR-136).
74 - Applied Simon Laroche's patch fixing AR-141
75   "Support for NHibernate nested-composite-element"
77 - Fixed the Validation for Generic types (AR-122 and MR-237)
79 - Fixed working with Lazy objects.
81         Classes that are marked with [ActiveRecord(Lazy = true)] break in the EnsureInitialized function with the exception:
83         Castle.ActiveRecord.Framework.ActiveRecordException: 
84         You have accessed an ActiveRecord class that wasn't properly initialized. The only explanation is that the call to ActiveRecordStarter.Initialize() 
85         didn't include CProxyTypeCastle_ActiveRecord_Tests_ModelVeryLazyObjectModel_NHibernate_ProxyINHibernateProxy1 class
87 - Applied Andrew Denysenko's patch fixing AR-142 
88   "Allow setting "batch-size" on collections"
90 - Applied Roy Tate's patch fixing AR-143 
91   "XmlGenerationVisitor generates incomplete XML mapping 
92    for BelongsTo with composite key"
94 - AR-140 - Patch to allow  "The <component> element allows a <parent> subelement that maps a property of the component class as a reference back to the containing entity."
97 -       Applying commutative patch from Roy Tate: AR-133, AR-139, AR-138
98         ActiveRecordMultiQuery, ActiveRecordCriteriaQuery, CriteriaHelper, CountQuery.
100 - AR-129: Applied patch by John Hurrell
101   "Implement NHibernate's "foreign-key" Attribute"
103 - AR-130: Fixed
104   "BelongsTo attribute does not support UniqueKey"
106 - AR-135: Applied patch from Rafael Steil - better error message when using non interface type for an association.
108 - AR-134: Applied patch from Kristofer Goss. Can now use [Field] on [Nested] types.
110 - AR-131 Applied patch Dave Godfrey. Using [Fetch] to specify the fetch strategy NHibernate will use. Note that this [Obsolete] the OuterJoin property on BelongsTo, in favor of the Fetch property.
112 - Added RawXmlMappingAttribute base class, which can be used to give Active Record additional mapping from external source. 
113   This functionality was added to support rare cases that Active Record do not support (mapping an entity from a 3rd party assembly, etc).
114   Prefer to use the standard Active Record features over this.
116 - Applied John Hurrell's patch fixing AR-94
117   "ScalarQuery<T> on an empty table creates a null reference exception"
119 - Applied Ernst Perpignand's fixing AR-126
120   "Collection of dependent objects"
121   
122   Quoting 'patch implementing collection of dependent objects as per Hibernate documentation section 7.2'
124 - Fixed AR-125
125   "Cannot use webservices or XmlSerializer on classes derived from ActiveRecordValidationBase because of IDictionary PropertiesValidationErrorMessage"
127 - Applied Patrick Earl's patch, adding event ModelCreated that allows to re-configure the model before 
128   generating the XML for NHibernate.
130 - Added HqlNamedQuery attribute and allowed to use the Import attribute at the assembly level
132 - Applied Brian Romanko's patch fixing AR-104
133   "IsUniqueValidator does not work properly with nullable primary keys"
135 - Add Count(ICriterion[] criteria) overrides to ActiveRecordMediator and ActiveRecordMediator.Generic (original patch from Andy W. Dobbels)
137 - Fixed AR-120 
138   "Add support for the <Operation>AndFlush family of methods to ActiveRecordMediator"
140 - Applied Jan Persson's patch fixing AR-122
141   "Problems validating inherited properties when using generics"
143 - Applied Edward Kreis' patch fixing AR-124
144   "ActiveRecord OneToOne attribute's "constrained" parameter doesn't appears in a NHibernate mappings"
146 - Applied John Hurrell's patch fixing AR-123 
147   "Additional OnFlush functionality"
149 - Exposed some IValidator's properties.
151 - Renamed IActiveRecordQuery.Target to IActiveRecordQuery.RootType
153 - Added SetRange to ProjectionQuery<,>
155 - Made HasMany a bit smarter when dealing with Map elements. 
157     AR now can guess the IndexType, the MapType and the Table name from the IDictionary<,> property.
158     (DotNet 2 only.)
160 - AR-118 added NoSetter.LoweCase property access option.
162 - Fixed AR-117 "ActiveRecordBase CRUD Methods Ignore SessionScope FlushMode"
164     The operations Save, Create, Delete, Update will not flush the session anymore
165     The operations SaveAndFlush, CreateAndFlush, DeleteAndFlush, UpdateAndFlush will
167 - Removed HqlBasedQuery.Count operation as it didn't work for complex queries
169 - Fixed AR-110 "Support rollback on TransactionScope Dispose without commit."
170   
171   Now you can create a TransactionScope defining the behavior
172   if the dispose is reached and neither a votecommit nor voterollback was called
174 - Applied Andrew Peters' (see AR-105) with the following changes
176         - [breaking change] Renames ActiveRecordBase.CountAll to ActiveRecordBase.Count 
177           as several overloads are by criteria and IMHO Count is a better, more general name.
179         - Adds an overload of Count that accepts an ICriterion[] - Modified CountQuery 
180           to use NHibernate 1.2 Projections
182         - Reimplements (http://support.castleproject.org//browse/AR-100) so that it uses 
183           the new Count overload instead of FindAll.
185         - Filled in as many missing doc comments as I could before my eyes hurt :-)
187         - Renamed "criterias" to "criteria" in method signatures - "criterias" is not a word.
189         - Reformatted code. 
191 - Fixed AR-115 Exists always returns True for lazily-proxied classes
192   Changed FindByPK to use Get/Load according to its parameters.
194 - Included PrimaryKeyType.Custom and property CustomGenerator:Type
195   allowing one to supply its own generator
197 - Included PrimaryKeyType.Counter and PrimaryKeyType.Increment
199 - Applied patch from Drew Burlingame 
200   Add ActiveRecordBase<T>.Exists(params ICriterion[] criterias) 
201   Method also added to ActiveRecordBase.
203 - Applied patch by Andrew Peters fixing AR-97
204   "Pluralization of table names"
205   
206   This patch introduces the pluralizeTableNames attribute on the configuration
207   which, if set to true, pluralizes the ActiveRecord types tables where no name
208   was specified.
209   
210   For example:
211   
212   [ActiveRecord]
213   public class Student : ActiveRecordBase<Student>
214   
215   The table name will be infered as 'Students'
216   
218 - Applied patch by Ernst Naezer fixing AR-93
219   "Scaffolding / ARdatabind crash when Typeof is not supplied in the HasMany attribute."
221 - Applied Lee Henson's patch fixing AR-88
222   "Move GetFieldOrPropertyValue from ConfirmationValidator to AbstractValidator"
224 - Applied Lee Henson's patch fixing AR-86
225   "Expose DetachedCriteria on ActiveRecordBase<T>.SlicedFindAll"
227 - Fixed AR-84:  ActiveRecord TransactionScope should export interface to set IsolationLevel
228   Now you can specify the isolation level when you create a TransactionScope
230 - Applied Carlos Ble's patch adding Replicate support to ActiveRecordBase
232 - Moved ProjectionQuery and ScalarProjectionQuery to Castle.ActiveRecord.Queries, with the rest of the queries.
234 - Added untyped projection support, using just ProjectionQuery<Post>, which uses object[] tuples.
236 - Added real projection support, which allows the following code:
237 ProjectionQuery<Post, PostTitleAndId> proj = new ProjectionQuery<Post, PostTitleAndId>(
238         Projections.Property("Title"), Projections.Property("Id"));
239 ICollection<PostTitleAndId> posts = proj.Execute();
240 foreach(PostTitleAndId titleAndId in posts)
242         PostsList.Add( new ListItem(titleAndId.Title, titleAndId.Id) );
243         
246 - Renamed ProjectionQuery<T> ScalarProjectionQuery<T>, in preperation for real projections.
248 - Added DetachCrietia support in ARBase<T>, which allows integration with NQG, and in general enables taking advantage of the full criteria API.
249    Improved methods are FindOne, FindAll, FindFirst
250    
251 - Move to used NHibernate 1.2 rev #2352
253 - Applied Josh Robb's patch adding a check for isWeb=true on the Session module.
255 - Returned to the default lazy false behavior.
257 - Will automatically initialize entities when loading outside of scope.
259 - Removed IModelNode since it was no longer of any value.
261 - Added XML Documentation to all public/ protected methods
263 - Moved to using NHibernate 1.2 beta 1
264   IEntityPersister instead of IClassPersister
265   I had some issues with Nullables.dll support, but mainly because the hard coded version number.
266   Different DB Tests failed because of the way NHibernate changed transaction handling (more thorough cleansing of them), I manually saved the transaction executed, and they tests pass now.
267   
268   I added type guessing to ISet<> (set), IList<> (bag), ICollection<> (bag), IDictionary<>(map)
269   
270   The nicest new feature IMO is this:
271   
272   ProjectionQuery<Blog, int> proj = new ProjectionQuery<Blog, int>(Projections.RowCount());
273   int rowCount = proj.Execute();
274   Assert.AreEqual(1, rowCount);
277 Release Candidate 1
278 ===================
280 - Changed name of mapping files generated when isDebug=true. They now follow the NHibernate convention of name.hbm.xml
282 - Refactored: CompositeKey is not a class level attribute anymore
283   (minor breaking change)
285   Instead of
287     [PrimaryKey]
288     public SomeClass Id { get/set }
289     
290   You must use
292     [CompositeKey]
293     public SomeClass Id { get/set }
294   
296 - Added support for queries using the SQL language instead of HQL, 
297   on classes derived from HqlBasedQuery (SimpleQuery, ScalarQuery, etc).
299 - Added ActiveRecordModel.GetModels(), which returns an array containing every registered ActiveRecordModel.
301 - Fixed AR-53
302   "Unique key on multiple columns"
304   Introduced UniqueKey on PropertyAttribute and FieldAttribute
305   
306 - Introduced the following properties on PropertyAttribute and FieldAttribute:
308   - Index
309   - SqlType
310   - Check
312 - Fixed AR-78 
313   "Allow users to specify autoImport"
314   
315   Use the property UseAutoImport on ActiveRecordAttribute to control auto-import
317 - Resynched ActiveRecordAttribute with NHibernate <class> mapping. Added:
319   - SelectBeforeUpdate
320   - Polymorphism
321   - Mutable
322   - BatchSize
323   - Locking
325 - Fixed AR-31
326   "Create property CustomPersister or Persister (Type) on ActiveRecordAttribute"
327   
328   Added Persister property to ActiveRecordAttribute
330 - Applied Marc-André's patch fixing AR-79
331   "ValidateIsUnique not working with TransactionScope"
333 - Added XmlIgnore to IDictionary field on ARValidationBase
335 - Added support for generic abstract base class for a type hierarchy per discussions with Don
336   Morrison on IRC. The Generic Abstract Base class must conform to all the previous rules to 
337   implement an abstract base class in a type hierarchy.
339   When initializing the class using the ActiveRecordStarter, you must use syntax similar to the
340   following:
342     ActiveRecordStarter.Initialize( GetConfigSource(),
343       typeof(Model.GenericModel.Entity<>), 
344       typeof(CompanyEntity), 
345       typeof(PersonEntity));
347   Please see the GenericJoinedSubClassTestCase.cs for an example.
349   All rules about covariance and contravariance still apply.
351 - Applied Michael Morton's patch adding support to NHibernate's INamingStrategy. 
352   This allow one to associate an implementation of INamingStrategy
353   through an attribute 'namingstrategytype' on activerecord config node
355 - Applied suggestion from Gokhan Altinoren fixing AR-77
356   "VisitPrimaryKey fails to generate correct <generator> xml 
357   element for PrimaryKeyType.Identity when the system culture is set to Turkish"
359 - Applied Michael Morton's patch fixing AR-76
360   "SemanticVerifierVisitor Issue With NHibernate User Types"
362 - Refactored CompositeKey support. Now instead of using 
364     [PrimaryKey]
365     public SomeClass Id { get/set }
366   
367     [CompositeKey]
368     public class SomeClass { ...
369   
370   You should use
372     [CompositeKey]
373     public SomeClass Id { get/set }
374         
375   The old way is still supported though.
377 - Applied Freyr Magnússon's patch fixing AR-75 
378   "SemanticVerifierVisitor causing fauly xml when using composit key"
380 - Added support for "ColumnPrefix" on [Nested] attribute. This change allows
381   a better usage of components, such as:
383     public class Name {
384       private String first, last;
385       
386       [Property("first_name")] public string First { ... }
387       [Property("last_name")] public string Last { ... }
388     }
389     
390     [ActiveRecord("children")]
391     public class Child {
392       private Name name, fatherName, motherName;
393       
394       /* maps to database columns: first_name and last_name */
395       [Nested] Name Name { ... }
396       
397       /* maps to database columns: father_first_name and father_last_name */
398       [Nested(ColumnPrefix="father_")] Name FatherName { ... }
399       
400       /* maps to database columns: mother_first_name and mother_last_name */
401       [Nested(ColumnPrefix="mother_")] Name MotherName { ... }
402     }
404 - Review OneToOneAttribute test case, added one more unit test
406 - Removed OuterJoin attribute from OneToOneAttribute, replaced by Fetch property
408 - Added PropertyRef to OneToOneAttribute
410 - Applied patch to patch from josh robb - FindAllByProperty now handles null values internallly.
412 - Applied patch from josh robb - FindAllByProperty now handles null values internallly.
414 - Applied Freyr Magnússon's patch fixing misbehave related to abstract classes that defines different
415   database boundaries: "ActiveRecordStarter Initialize method assembply overloads fail 
416   to add derived base types from config"
418 - Applied josh robb's patch "small fixup for length 
419   validator error messages where there is only a minimum or maximum specified"
421 - Fixed AR-73: "Dynamic type adding after initialization"
423 - Added some logging. That's just a start: the idea is to increase AR verbosity 
424   in order to reduce the need of debugging to diagnose problems.
426 - Refactored ActiveRecordStarter.Initialize to use ActiveRecordSectionHandler.Instance
428 - Introduced ActiveRecordSectionHandler.Instance to avoid repetitive code.
429   Now, instead of
430   
431   IConfiguration source = (IConfiguration) ConfigurationSettings.GetSection("activerecord");
432   
433   (or similar) you can use
434   
435   IConfiguration source = ActiveRecordSectionHandler.Instance;
436   
437   Bare in mind that it looks for a section named "activerecord" on the configuration
438   file associated with the AppDomain, and throws an exception if it cannot be found.
440 - Applied Marc-Andre's patch fixing AR-68
441   "Make ActiveRecordValidation.ValidationErrorMessages virtual to simplify localisation"
443 - Added SessionScope.Current static property to gain access to the
444   current ISessionScope implementation
446 - Changed ISessionScope:
447     Added FlushAction property
448     Added Flush method to allow people to have more control on when to flush
450 - Applied patch by Michael Morton <mmorton@wickednite.com>. Quoting explanation:
452 Since the generic base class varies with the type parameter 
453 (i.e. ActiveRecordBase<One> is not the same as ActiveRecordBase<Two>) 
454 there is no easy way to specify multiple configurations using the 
455 "type=" attribute.  There is also no easy way to create multiple 
456 subclasses as the documentation suggests for when using the non 
457 generic base class.
459 However, there is an easy fix for this.  Even though, for example, 
460 these two base types are "different", ActiveRecordBase<One> and 
461 ActiveRecordBase<Two>, they share the same generic type definition, 
462 namely "ActiveRecordBase`1".  With a small change to the function 
463 "GetRootType" in "SessionFactoryHolder.cs" to make it look at the 
464 generic type definition when dealing with a generic type, instead 
465 of the generic type itself, you can once again easily access multiple databases.
467 Usage:
468 You can now create multiple base types for each of your databases, such as...
470 class MyBaseOne<T> : ActiveRecordBase<T> { }
471 class MyBaseTwo<T> : ActiveRecordBase<T> { }
473 ... and then specify config for each by using the "type=" attribute like so ...
475 <config type="MyBaseOne`1, MyAssembly">
476 </config>
477 <config type="MyBaseTwo`1, MyAssembly">
478 </config>
480 Any subclasses of those will then get the correct configuration 
481 settings.  I have been using this change in my own builds for a 
482 couple weeks now and it seems to be working ok.  I have not 
483 written any tests specifically for it, yet, but wanted to get 
484 it out there in case anyone was interested.
486 - Applied patch by Brian Romanko <me@brianromanko.com> allowing the use 
487   of different type for a Nested type (what NHibernate refers as a Component)
489 - Fixed AR-65: ActiveRecordBase<T> prevent users from using type inheritance
490   Refactored ActiveRecordBase<T> to extend ActiveRecordBase
491   Refactored ActiveRecordMediator<T> to extend ActiveRecordMediator
492   Could not do the same thing for the validation<T>
494 - Removed dependency on the Nullables library.
496 - Added native support for .NET 2.0 Nullables.
498 - Applied Brian Romanko <me@brianromanko.com> patch fixing enum support
500 - Fixed AR-62: DifferentDatabaseScope not switching between databases
502 - Introduced HybridWebThreadScopeInfo which, as the name implies, 
503   uses both strategies to handle scope storage. Useful only for some complex scenarios
505 - Added support for RelationType.List.
507 - Simplified Exists<PkType> method on ActiveRecordBase<T>.
509 - Fixed AR-46 - OneToOne Attribute Does Not Support Specifying a Target Type
510   Added property MapType to OneToOne attribute
512 - Added ActiveRecordStarter.ResetInitializationFlag. Useful for test cases 
513   that invoke Initialize multiple times
515 - Fixed AR-52 - Dont allow one to invoke Initialize more than once
517 - Added some flexibility into ActiveRecord Queries. They are now mutable,
518   which means we now have methods like 'SetParameter', 'SetParameterList' and
519   'SetRange'; and the 'Query' property is now read-write.
521 - Added support for query modifiers in ActiveRecord Queries. Any object implementing
522   IQueryModifier can be added to an ActiveRecordBaseQuery, using the 
523   (protected) 'AddModifier' method. Parameters and query ranges 
524   are implemented as query modifiers.
526 - Fixed AR-39: Added virtual to IsValid on ActiveRecordValidationBase/<T>
528 - Fixed AR-45: Added BindingFlags.NonPublic to DefaultBindingFlags on ActiveRecordModelBuilder
530 - Added Element to RelationAttribute, now can map relations of simple types
531    Usage:
532          [HasMany(typeof(string), "ItemId", "Elements", Element = "Name")]
534 - Applied Antonio's patches 
535   See http://forum.castleproject.org/posts/list/457.page and 
536       http://forum.castleproject.org/posts/list/566.page
538 - Added Debug to IConfiguration Source. If set then XmlGenerationVisitor will save nhibernate mapping files to the AppDomain.BaseDirectory. 
539   Usage: if you're the XmlConfigurationSource or the Section add the isDebug="true" attribute
541 - Added support to CompositeKeys as Foreign Keys (kudos to G. Richard Bellamy)
543   BelongsToAttribute - Added CompositeKeyColumns property.
544   HasAndBelongsToManyAttribute - Added CompositeKeyColumnKeys and CompositeKeyColumnRefs.
545   HasManyAttribute - Added CompositeKeyColumnKeys.
546   VersionAttribute - Added support for UnsavedValue.
547   SemanticVerifierVisitor - Added checks to ensure the composite key attributes are used properly.
548   XmlGenerationVisitor - Added output to support mapping the composite key attributes, as well as the unsaved-value attribute for Version.
550   In general, the changes are motivated by the need to have AR map to 
551   legacy data, where composite keys are used as both primary and foreign 
552   keys. The current AR support for CompositeKeys does not support 
553   associations, this patch does.
555   There are some caveats when using this, which are driven by the NH 
556   implementation. An assigned identifier (like all CompositeKeys and 
557   many string PrimaryKeys) cannot be used to determine whether an instance 
558   is detached or transient - since it's assigned by the application, it's 
559   never null. Therefore, you must use another strategy, NH will misbehave 
560   around the way it persists the instance to the database. That is why the 
561   VersionAttribute had to have the support for UnsavedValue - the UnsavedValue 
562   property of the Version is used by NH to determine the state of the instance.
564   For a discussion of the appropriate mappings and usage, see "Hibernate in Action," pgs. 330 - 335.
566 - Added SessionScopeWebModule which hooks BeginRequest and EndRequest initializing and 
567   destructing a SessionScope properly. In order to use it add to httpModules section 
568   (web.config):
569   
570   <system.web>
571     <httpModules>
572       <add name="ar.sessionscope" type="Castle.ActiveRecord.Framework.SessionScopeWebModule, Castle.ActiveRecord" />
573     </httpModules>
574   </system.web>
576 - Added lifecycle methods that can be overriden:
578   . OnSave
579   . OnUpdate
580   . OnLoad(id)
581   . OnDelete
583 - Applied patch from Ahmed Ghandour <aghandour@rydexinvestments.com> adding the methods
584   FetchCount and Exists to ActiveRecordBase
586 - Applied patch from Dave Godfrey fixing nested classes with relations problems (http://forum.castleproject.org/posts/list/457.page)
588 - Fixed a stack overflow exception when using IsUnique inside a session scope.
590 - You can now apply IsUnique to a property that also has PrimaryKey on it without problem.
592 - Resolved IsUnique bug with ActiveRecordValidationBase<> (it was non functional)
594 - Resolved test bugs with IsUnique for .net 1 and .net 2.
596 - Refactored query support:
597   - Introduced generic interface IActiveRecordQuery<T>, extending IActiveRecordQuery, for strongly-typed Execute() method support;
598   - Added IActiveRecordQuery.Enumerate(), for memory-intensive queries;
599   - Introduced HqlBasedQuery, decoupling ActiveRecordBaseQuery from HQL usage;
601 - Added ValidateCreditCard validation attribute.
603 - Added ValidateLength validation attribute.
605 - Added support for .Net 2.0 Connection Strings in the config file, using this method:
607 <activerecord>
608         <add key="hibernate.connection.connection_string" value="ConnectionString = ${ConnectionStringKey}" />
609 </activerecord>
611 <connectionStrings>
612         <add name="ConnectionStringKey" connectionString="The Connection String"/>
613 </connectionStrings>
615 This allows to take advantage of the connection string encryption as well as manage them using the built in tools.
617 - Added Exists<PkType>(PkType id) support to allow for checking of an object's existance 
618   in the datastore.
620 - Brought ActiveRecordBase.Generic inline with ActiveRecordBase feature wise.  
621   Public Static Methods are now present on all ActiveRecordBase.Generic objects for common tasks such as Find, FindAll, etc.
623   <This is a breaking change.>
624   
625 - Added support for NHibernate dynamic-update, dynamic-insert to ActiveRecordAttribute
627 - Simplified NHibernate markup generation for testing
629   Attributes are now written in one of two ways. Tags that have both an open and close 
630   will have no space at the end of the attributes on the opening tag, while tags that 
631   have no contents (<tag />) will be written with one space after the last attribute.
632   
633   Examples:
634   
635   <openclose attrib="test" attrib2="test"></openclose>
636   
637   <noclosetag attrib="test"/>
639 - Added ActiveRecordValidationBase<> to support validation on Generic AR classes
641 - Updated DeleteAll(Type targetType, IEnumerable pkValues) to support non int primary keys
643 - Add more hookable methods.
645 - Refactored Validation support to use NHibernate.IValidatable
647 - Brought ActiveRecordMediator.Generic inline with ActiveRecordMediator.  This is a breaking 
648   change (removal of a few methods/renaming of a few existing).
650 - Add import support (kudos to Dan Burnea)
651   [ActiveRecord, Import(typeof(ImportClassRow), "ImportClassRow")]
652   public class ImportClass : ActiveRecordBase
654 beta 3
655 ======
657 - Added FindAllByProperty, FindFirst and FindOne
659 - Added DeleteAll(type, where) (kudos to G. Richard Bellamy)
661 - Applied patch from Josh Robb. Added support for hooks on ActiveRecordBase<T>.
663 - DifferentDatabaseScope: so you can open a session using a different dbconnection
664   and persist your object model. Very experimental version
666 - Fixed: Support for multiple databases was completely broken.
668 - An implementation of ISessionFactoryHolder can be specified through the configuration, attribute sessionfactoryholdertype
669   on the config node.
671 - Added: ActiveRecordBase<T> - a generic form a ActiveRecordBase which relieves the need to re-write
672   all the base static methods to hide the type parameter and cast the result. Generics do it for you.
674 - Added: ActiveRecordStarter.CreateSchemaFromFile(filename) as an alternative to CreateSchema. 
676 - Added: Support for composite keys - composite key class must be serializable and implement both Equals and GetHashCode.
677   Not complete support, missing the NHibernate key-many-to-one element in the composite key.
678   
679 - Added: Support for Lazy loading class using BelongsTo. Will throw if there is a non virtual property that
680   also BelongsTo().
682 - Closed: (AR-24) ValidationException must contain the validation error messages
684 - Support for fields in addition to properties
686 - Added [Any], [Any.MetaValue] and [HasManyToAny] attributes.
688 - Small improvement on ActiveRecordModelBuilder (less intensive on IsDefined/GetCustomAttribute)
690 - IThreadScopeInfo introduced. Two implementations: ThreadScopeInfo and WebThreadScopeInfo. 
691   ThreadScopeInfo is the default implementation. You can use WebThreadScopeInfo by simply using 
692   isWeb="true" on the configuration node:
693   
694   <config isWeb="true">
695     ..
696   
697   Or you can provide your own implementation specifying the full type name
699   <config threadinfotype="my.threadinfotype, my.assembly">
700     ..
702 beta 2
703 ======
705 - Transaction support: lots of minor fixes
707 - Added support for map relations. 
708   Necessary to specify Index and IndexType on the HasMany (or HasAndBelongsToMany)
710 - IsUnique validator fix
711   
713 Version 0.0.1.5
714 ===============
715   
716   Inner workings fully rewritten, better test cases coverage
718   Added SlicedFindAll
721 Version 0.0.1.4
722 ===============
724   Implemented support for Joined Subclasses
726   Implemented initial support for validations
729 Version 0.0.1.3
730 ===============
732   Applied patch from John Morales (support for idbags)
735 Version 0.0.1.2
736 ===============
738   Applied patch from John Morales (support for sets)
740   Applied suggestion and fixes from "jianxiao jiang" <jiangjianxiao@gmail.com> (NHibernateDelegate)
743 Version 0.0.1.1
744 ===============
745   
746   Applied patch from Luiz César Kuriki <luizck@gmail.com> in order to support NHibernate's Component feature
747   
748   Applied modification suggested by Andrew Hallock and Craig Neuwirt in order to support HasOne relations.
751 Version 0.0.1.0 
752 ===============
754   Released (not changes to track yet)