From: <hib...@li...> - 2006-03-17 09:58:30
|
Author: epbernard Date: 2006-03-17 04:58:25 -0500 (Fri, 17 Mar 2006) New Revision: 9645 Modified: trunk/HibernateExt/metadata/changelog.txt trunk/HibernateExt/metadata/readme.txt Log: release Modified: trunk/HibernateExt/metadata/changelog.txt =================================================================== --- trunk/HibernateExt/metadata/changelog.txt 2006-03-17 09:34:28 UTC (rev 9644) +++ trunk/HibernateExt/metadata/changelog.txt 2006-03-17 09:58:25 UTC (rev 9645) @@ -1,6 +1,57 @@ Hibernate Annotations Changelog =============================== +3.1beta9 Preview (17-03-2006) +----------------------------- +** Bug + * [ANN-16] - Annotations: composite pk with two manytoone not working + * [ANN-98] - Wrong unsaved-value strategy for IdClass entities + * [ANN-196] - sequence should increase by assocationSize rather than regular hilo + * [ANN-197] - table generator should stock hi * low_max instead of hi + * [ANN-211] - ClassValidator throws NPE during flush + * [ANN-230] - Id Annotation - bad example of GeneratedValue + * [ANN-234] - @NotNull syntax doesn't make join column null in conjunction with @OneToOne or @ManyToOne + * [ANN-236] - @OneToMany(mappedBy) cannot referenced an hbm file described entity + * [ANN-240] - @AttributeOverride only works in @Entity, not @MappedSuperclass + * [ANN-241] - @Index broken on property when no columnName is defined + * [ANN-253] - Do not raise unresolved type exception if targetEntity is defined on the association annotation + * [ANN-254] - References to invalid CascadeType.CREATE in documentation + * [ANN-255] - Validator problem with @Valid @Embedded objects + * [ANN-256] - Incorrect classloader used for ResourceBundle loading in JavaEE environment + * [ANN-257] - referencedColumnName is not recognized on a many-to-one to a composite primary key + * [ANN-258] - OneToOne annotation: Hibernate is not respecting the optional=true behaviour + * [ANN-266] - @Temporal on Calendar is not mapped properly + * [ANN-269] - doc error in example validation annotation + * [ANN-274] - @AttributeOverride ignored when defined on an @Entity having a @MappedSuperclass annotated with @IdClass + * [ANN-280] - Index not work + * [ANN-282] - @IdClass including @Id claims no identifier property rather than @Id not authorized + + +** Improvement + * [ANN-146] - @NotNull should be ignored for SINGLE_TABLE subclass properties + * [ANN-208] - Enable @Valid for Collections, Maps and Arrays + * [ANN-223] - Entity name should be the default for discriminator value (not the fqcn) + * [ANN-233] - @Email not documented + * [ANN-245] - Better doc on MapKey explaining that the column is shared between the key and the referenced property + * [ANN-262] - @org.hibernate.annotatios.Table.name remaned in @...Table.appliesTo + * [ANN-271] - Change @EntityResult(Class entityClass) ( was @EntityResult(String name) ) + * [ANN-272] - Remove TYPE @Target on @JoinColumn(s) + * [ANN-275] - Default discriminator column is DTYPE rather than TYPE + +** New Feature + * [ANN-15] - Use of @ManyToOne in a @EmbeddedId + * [ANN-226] - Allow Associations within an @Embeddable Class + * [ANN-259] - @OnDelete for @OneToOne and @ManyToOne (Radim Tlusty, Mat?j Kraus) + * [ANN-270] - Add @SqlResultSetMappings + * [ANN-273] - @AssociationOverride(s) similar to @AttributeOverride(s) + * [ANN-287] - Abstraction layer on top of reflection calls (Paolo Perrotta, Davide Marchignoli) + + +** Task + * [ANN-228] - Get rid of the compliance and limitation section in the doc. + * [ANN-239] - DefaultValidatorMessages_de.properties: translation errors + + 3.1beta8 Preview (20-01-2006) ----------------------------- ** Bug Modified: trunk/HibernateExt/metadata/readme.txt =================================================================== --- trunk/HibernateExt/metadata/readme.txt 2006-03-17 09:34:28 UTC (rev 9644) +++ trunk/HibernateExt/metadata/readme.txt 2006-03-17 09:58:25 UTC (rev 9645) @@ -1,9 +1,9 @@ Hibernate Annotations ================================================== -Version: 3.1 beta 8, 20.01.2006 +Version: 3.1 beta 9, 17.03.2006 -THIS RELEASE OF HIBERNATE ANNOTATIONS REQUIRES HIBERNATE 3.1.1 AND DOES NOT WORK -WITH HIBERNATE 3.0.x OR ANY OLDER VERSION OF HIBERNATE. +THIS RELEASE OF HIBERNATE ANNOTATIONS REQUIRES HIBERNATE 3.2alpha2 AND DOES NOT WORK +WITH HIBERNATE 3.1.x OR ANY OLDER VERSION OF HIBERNATE. Description |