[hibernate-commits] Hibernate SVN: r13387 - annotations/tags/v3_0_0_Alpha3.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Aug 15 20:26:44 EDT 2007


Author: epbernard
Date: 2007-08-15 20:26:44 -0400 (Wed, 15 Aug 2007)
New Revision: 13387

Added:
   annotations/tags/v3_0_0_Alpha3/changelog.txt
Log:
Move annotations tags/annotations_v30alpha3 to the new structure (v3_0_0_Alpha3)

Copied: annotations/tags/v3_0_0_Alpha3/changelog.txt (from rev 13386, tags/annotations_v30alpha3/HibernateExt/metadata/changelog.txt)
===================================================================
--- annotations/tags/v3_0_0_Alpha3/changelog.txt	                        (rev 0)
+++ annotations/tags/v3_0_0_Alpha3/changelog.txt	2007-08-16 00:26:44 UTC (rev 13387)
@@ -0,0 +1,74 @@
+Hibernate Annotations Changelog
+===============================
+
+3.0alpha3 (28-02-2005)
+----------------------
+* HBX-116 Support for Where clause in classes and collections @Where(clause="")
+* HBX-115 Support for class proxying configuration: @Proxy(lazy=false, proxyClassName="my.Interface")
+* HBX-88 Support for hibernate type abstraction through @Type (only on basic properties for now)
+* HBX-108 Support @BatchSize(size=n) for entities and collections
+* HBX-107 implements @org.hibernate.annotations.Entity
+* HBX-103 handle abstract classes
+* HBX-83 precision & scale support for column (Bogdan Ghidireac)
+
+3.0alpha2 (25-01-2005)
+----------------------
+* HBX-61 Support for @UniqueConstraint (except primaryKey=true)
+* HBX-60 Support for a proper @TableGenerator (using MultipleHiLoPerTableGenerator)
+* HBX-63 Support @GeneratorTable
+* HBX-68 Add declarative configuration of annotated classes
+* HBX-74 Rollback the HB-1315 fix: dialect no longer have to be set in hibernate.properties
+
+
+Hibernate-annotations-3.0alpha1 based on the EJB3 Early Draft 1 (6.01.2005)
+---------------------------------------------------------------------------
+* Support for EJB3 annotations:
+ - @Transient
+ - @Column (not primaryKey)
+ - @JoinColumn (referencedColumnName - only for a reference to a PK, not primaryKey)
+ - @Version
+ - @Basic
+ - @Entity
+ - @Table (not uniqueConstraints)
+ - @AccessType
+ - @Id
+ - @CascadeType
+ - @FetchType
+ - @GeneratorType (NONE, IDENTITY, TABLE, SEQUENCE)
+ - @TableGenerator (with scope visibility)
+ - @SequenceGenerator (with scope visibility, does not support initialValue() and allocationSize())
+ - *not* @GeneratorTable (will have to write a new TableHiloGenerator, but it can wait)
+ - @ManyToOne (not optional)
+ - @OneToMany (Set and Collection, generics version or not, JoinColumn not guessed)
+ - @OneToOne
+     but not optional
+     no composite PK/FK
+ - @ManyToMany
+ - @AssociationTable (Has to be on both sides)
+ - @Inheritance
+ - @InheritanceType (has to be defined on every classes of the hierarchy for JOINED strategy,
+                     not very clear about the TABLE_PER_CLASS strategy)
+ - @DiscriminatorColumn
+ - @DiscriminatorType
+ - @InheritanceJoinColumn
+ - @InheritanceJoinColumns
+     this annotation for Composite PK Entities has to be explicit, I do not respect the implicit semantic of the EJB3 spec
+ - @SecondaryTable (@OneToMany @JoinColumn(secondaryTable="..." does not work yet due to H3 core issue HHH-36
+ - @SecondaryTables
+     this annotation for Composite PK Entities has to be explicit, I do not respect the implicit semantic of the EJB3 spec
+ - @DependentObject
+ - @Dependent
+ - @DependentAttribute (only for basic properties as per the spec)
+ - @Id in conjunction with @DependentObject (composite primary keys)
+ - @JoinColumns in conjunction with @ManytoOne, @OneToMany, @ManytoMany
+      - note that the composite FK columns have to be in the same table (no != secondary tables). This is probably a weird case and certainly a not recommanded one.
+
+Still missing or incomplete:
+ - use of referencedColumnName for column other than the PK ones (HX-62)
+ - uniqueConstraints (HBX-61)
+ - @GeneratorTable (HBX-63)
+ - @OneToOne and composite PK, and composite FK (HBX-44, HBX-56)
+ - repect semantic of @TableGenerator (HBX-60)
+ - support for initialValue and allocationSize in @SequenceGenerator (HBX-59)
+ - implicit FK definition should respect the EJB3 semantic (HBX-55)
+ - better semantic of cascade (HBX-47)
\ No newline at end of file




More information about the hibernate-commits mailing list