root / elixir / tags / 0.7.1 / CHANGES

Revision 518, 25.2 kB (checked in by ged, 4 years ago)

release time

Line 
10.7.1 - 2009-11-16
2
3New features:
4- Entities can now be declared "abstract" so that they do not create a table,
5  etc... This allows, among others, an entity to inherit from multiple abstract
6  classes (patch from Stéphane Klein, closes #89).
7- Added a new collection which can resolve entities relative to the current
8  entity, for example "..other_module.Class" (based on patches from Johannes
9  Janssen, closes #93).
10- Added a new entity option "resolve_root", which allows one to specify the
11  root module where your entities are defined. The string will be prepended
12  to all "absolute" entity paths. It can also be used on a per-entity basis.
13  This feature is based on a patch from Johannes Janssen, see #93.
14
15Changes:
16- using_options_defaults and using_table_options statements can be used several
17  times within the same class (closes #70).
18
19Bug fixes:
20- Fixed custom base classes and versioned extension when used with zope
21  interfaces (closes #98, patch from Valentin Lab)
22- Fixed having relationships in custom base classes (based on patch
23  by Stéphane Klein)
24
250.7.0 - 2009-10-01
26
27Please see http://elixir.ematia.de/trac/wiki/Migrate06to07 for detailed
28upgrade notes. If you are upgrading an application with existing data from an
29earlier version of Elixir, you are STRONGLY ADVISED to read them!
30
31New features:
32- Added a new statement 'using_options_defaults' which can be used
33  on a custom base class to set default values for the options of all its
34  subclasses. For example, this makes it possible to have all classes
35  inheriting from your custom base class use some custom options without
36  having to set it individually on each entity, nor modify
37  options.options_defaults.
38- The local_colname and remote_colname arguments on ManyToMany relationships
39  can now also be used to set custom names for the ManyToMany table columns.
40  This effectively replace the column_format on ManyToMany relationships which
41  is now deprecated. Change based on a patch from Diez B. Roggisch.
42- Added (or rather fixed and documented) a "table" argument on ManyToMany
43  relationships to allow using a manually-defined Table (closes #44).
44- Added a "schema" argument on ManyToMany relationships to be able to create
45  the ManyToMany table in a custom schema and not necessarily the same schema
46  as the table of the "source" entity (patch from Diez B. Roggisch).
47- Added a "table_kwargs" argument on ManyToMany relationships to pass any
48  extra keyword arguments to the underlying Table object (closes #94).
49- Added a new "target_column" argument on ManyToOne relationships so that you
50  can target unique but non-primary key columns. At the moment, this only works
51  if the target column is declared before the ManyToOne (see ticket #26).
52- Added new "column_names" argument to the acts_as_versioned extension,
53  allowing to specify custom column names (inspired by a patch by
54  Alex Bodnaru).
55- Made M2MCOL_NAMEFORMAT option accept a callable, so that more complex naming
56  generation can be used if so desired.
57- Added two new extensions (contributed by Alex Bodnaru)
58  - "perform_ddl" allows to execute one or several DDL statements upon table
59    creation.
60  - "preload_data" allows to insert data into the entity table just after it
61    has been created.
62- EntityCollection gained a working extend method
63
64Changes:
65- Moved class instrumentation to a separate function: instrument_class
66- Moved all methods of the "Entity" base class, to the "EntityBase" class, so
67  that people who want to provide their own base class but don't want to loose
68  all the methods provided by "Entity" can simply inherit from EntityBase
69  instead of copy-pasting the code for all its methods.
70- Renamed remote_side and local_side ManyToMany arguments to remote_colname and
71  local_colname respectively to not collide with the remote_side argument
72  provided by SA (it doesn't make much sense on ManyToMany relationships but
73  still).
74- Delete Elixir properties in the setup phase rather than as soon as they are
75  attached to their class. It makes it possible to access them or refer to them
76  after the class is defined (but before setup).
77- Deprecated act_as_list extension in favor of SQLAlchemy's orderinglist
78  extension (closes #53).
79- Made manually defined mapper options take precedence over Elixir-generated
80  ones. Not very useful yet since most are expecting Column objects.
81- Default table_options (defined in options_defaults['table_options']) are now
82  also used for ManyToMany tables (closes #94).
83- Provide our own Session.mapper equivalent to avoid SQLAlchemy 0.5.5+
84  deprecation warning. This mapper autosave object instances on __init__ unless
85  save_on_init=False is passed as a mapper argument (closes #92).
86
87Bug fixes:
88- Fixed Elixir to work with the future SQLAlchemy 0.6 (trunk as of 6377).
89- Changed the pattern used by default to generate column names for
90  self-referencial ManyToMany relationships so that the meaning of
91  bidirectional self-referential relationships does not depend on the order of
92  declaration of each side (closes #69). See upgrade notes for details.
93- Changed slightly the pattern used to generate the name of the table for
94  bidirectional self-referential ManyToMany relationships so that it doesn't
95  depend on the order of declaration of each side (closes #19).
96  See upgrade notes for details.
97- default EntityCollection raise an exception instead of returning None when
98  trying to resolve an inexisting Entity from outside of another entity (for
99  example through EntityCollection.__getattr__
100- Fixed the case where you specify both "primaryjoin" and "colname" arguments
101  (useless in this case, but harmless) on a ManyToOne relationship of an
102  autoloaded entity.
103- Fixed bug which broke the "identity" (Entity) option
104- Fixed documentation about local_side and remote_side arguments being
105  required if the entity containing the relationship is autoloaded, when it is
106  only required if the relationship is self-referencial, and primaryjoin or
107  secondaryjoin as not been specified manually.
108- Added missing documentation for the "filter" argument on OneToMany
109  relationships.
110- Fixed the act_as_list extension's move_to_bottom method to work on MySQL
111  (closes #34).
112- Fixed event methods not being called when they are defined on a parent class.
113  (introduced in release 0.5.0).
114- Added workaround for an odd mod_python behavior (class.__module__ returns a
115  weird name which is not in sys.modules).
116- tablename, remote_colname, local_colname, schema and table_kwargs can now be
117  defined on either side of a ManyToMany relationship and will propagate to
118  the other side if that other side doesn't specify anything for that argument.
119  Also added an assertion to catch the case where the same/mirror
120  argument is specified on both sides but with different values.
121- Fixed filter argument on OneToMany relationship leaking the filter to the
122  unfiltered relationship.
123- Fixed encrypted extension to not encrypt several times an instance attributes
124  when that instance is flushed several times before being expunged from the
125  session.
126- Fixed using to_dict with a ManyToOne relationship in the "deep" set and that
127  relationship being None in the entity being converted.
128
1290.6.1 - 2008-08-18
130
131New features:
132- Allow ManyToOne relationships to use manually created fields as their
133  "supporting column". This means that the columns can be customized without
134  resorting to using the ugly "column_kwargs" (patch from Jason R. Coombs,
135  closes #39).
136- Extra args and kwargs to Synonym and ColumnProperty are forwarded to their
137  underlying constructs. This allows for example deferred ColumnProperties.
138- Added a more helpful assertion message when inverse relationship types don't
139  match.
140
141Changes:
142- Removed support for the deprecated "with_fields" syntax
143- Entity.__init__ calls Entity.set instead of duplicating its functionality
144
145Bug fixes:
146- Fixed the "Target resolves to several entities" exception message to actually
147  include the target name.
148- Renamed the on_reconstitute method decorator to reconstructor, to track the
149  corresponding change in SA's trunk.
150
1510.6.0 - 2008-07-18
152
153Please see http://elixir.ematia.de/trac/wiki/Migrate05to06 for detailed
154upgrade notes.
155
156New features:
157- Fields in a custom base class are added to all their children.
158- Added two new methods on the base entity: from_dict and to_dict, which can
159  be used to create (or output) a whole hierarchy of instances from (to) a
160  simple JSON-like dictionary notation (patch from Paul Johnston,
161  closes ticket #40).
162- Added experimental (!) support for concrete table inheritance (both
163  polymorphic or not). Concrete polymorphic inheritance requires SQLAlchemy
164  0.4.5 or later.
165- Moved the "entity to string" mapping and resolving code to the (newly
166  created) EntityCollection class (which stores lists of entities). This
167  allows one to provide a custom mapping method if needed. The default class
168  also overrides the __getattr__ method, providing and handy way to get at your
169  entities. See http://elixir.ematia.de/trac/browser/elixir/tags/0.6.0/tests/test_collections#L58
170- Added new "identity" option which can be used to set a custom polymorphic
171  identity for an entity. It also accepts a callable so that you can generate
172  the identity name automatically from the class itself.
173- Added __setattr__ method on Metaclass so that you can add properties
174  slightly more easily after class definition (but *before* setup_all):
175    class A(Entity):
176        pass
177    A.name = Field(String(32))
178- Added add_table_column, add_mapper_property and add_mapper_extension helper
179  methods in EntityBuilders.
180- Added full_tablename property on EntityDescriptor (includes schema name if
181  any).
182- Added on_reconstitute event/method decorator. Only works with SA 0.5.
183- Added support for viewonly relationships (OneToMany and OneToOne).
184- Added support for filtered OneToMany relationships. Produce viewonly
185  relations. See http://elixir.ematia.de/trac/browser/elixir/tags/0.6.0/tests/test_o2m.py
186  for an example.
187- Added support for callables for some arguments on relationships: primaryjoin,
188  secondaryjoin and remote_side. It means those can be evaluated at setup time
189  (when tables and their columns already exist) instead of definition time.
190
191Changes:
192- Default "target entity resolving code" changed slightly. It now uses a global
193  collection keyed on the entity name. This means that entities can refer to
194  other entities in a different module simply with the target entity name
195  instead of its full path. The full path is only required when there is an
196  ambiguity (ie when there are two classes with the same name in two different
197  modules). Closes #9.
198- Added support for SQLAlchemy 0.5, and dropped support for version 0.3 and
199  earlier.
200- The default session (elixir.session) uses sessionmaker() instead of
201  create_session(), which means it has now the following characteristics:
202    * autoflush=True
203    * autocommit=False (with SA 0.5 -- equivalent to transactional=True with
204      SA 0.4)
205    * autoexpire=True (with SA 0.5).
206- removed objectstore and other SA 0.3 (or older) support code.
207
208Bug fixes:
209- Fixed multi-table inheritance when using a non default schema (closes #38)
210- Fixed ManyToOne relationships using 'key' kwarg in their column_kwargs
211  (patch by Jason R. Coombs)
212- Fixed inheritance with autoloaded entities: when using autoload, we
213  shouldn't try to add columns to the table (closes tickets #41 and #43).
214- Fixed acts_as_list extension with autoloaded entities (patch from maqr,
215  closes ticket #52).
216- Fixed ColumnProperty to work with latest version of SQLAlchemy (O.4.5 and
217  later)
218- Fixed ManyToMany relationships when not using the default schema
219  (patch from Diez B. Roggisch, closes ticket #48)
220
221Misc:
222- Added AUTHORS list. If you are missing from this list, don't hesitate to
223  contact me.
224
2250.5.2 - 2008-03-28
226
227New features:
228- Added an optional `check_concurrency` keyword argument to the versioning
229  extension, supporting the usage of SQLAlchemy's built-in optimistic
230  concurrency check.
231
232Changes:
233- Made Elixir python 2.3 compatible again (based on patches from
234  Jason R. Coombs)
235
236Bug fixes:
237- Fixed act_as_list extension to work with DBMS that require subselects to be
238  aliased (patch by Alice McGregor)
239- Fixed the versioning extension so that the history table is updated within
240  the current transaction (patch from and closes ticket #35).
241
2420.5.1 - 2008-02-07
243
244New features:
245- Added a new elixir plugin for managing entities as (ordered) lists.
246- Added a `column_format` keyword argument to `ManyToMany` which can be used
247  to specify an alternate format string for column names in the mapping table.
248- Added support for custom base classes which inherit from another class (ie
249  not directly from object).
250- Added an alternate (nicer) syntax to define synonym properties.  This syntax
251  has a more limited scope, except that it can refer to properties defined in
252  a parent entity. This is based on a patch from Alexandre da Silva.
253
254Changes:
255- Added check so that using an inexisting column in an order_by or other
256  column-name based argument raises an exception.
257- The polymorphic_identity kwarg in using_mapper_options is not overriden
258  anymore by the one generated by Elixir (patch from Ben Bangert).
259- Moved the format of the multi-table inheritance column to a constant in
260  options (so that it can be changed globally).
261- The foreign key constraint of the column in a multi-table inheritance is
262  configured with a cascade rule.
263
264Bug fixes:
265- A child entity doesn't inherit anymore its parent entity statements (such as
266  options) if it doesn't use any statement itself.
267- Made inheritance work for custom base classes (closes #25).
268- Fixed the inverse relationship matching when the inverse relationship is
269  defined in a parent Entity (thanks to Alexandre da Silva).
270- Fixed bug in setup_entities (it always used the global entity list and not
271  the list given as argument).
272- Fixed the versioning extension not appropriately handling versioned
273  entities with onupdate events (patch from Remi Jolin, closes #29).
274- Fixed videostore example (patch from Jason R. Coombs, closes #31).
275
2760.5.0 - 2007-12-08
277
278Please see http://elixir.ematia.de/trac/wiki/Migrate04to05 for detailed
279upgrade notes.
280
281New features:
282- Added set method on base Entity (set attributes using kwargs)
283
284Changes:
285- Autosetup defaults to False ! (please look at those upgrade notes!)
286- Polymorphic defaults to True (inheritance is polymorphic by default).
287- Removed one of the autosetup triggers altogether: there is no "fake" mapper
288  registered in SQLAlchemy's mapper_registry anymore, so if you try to
289  access the class mapper directly (not through the 'mapper' attribute on
290  the class), before the setup phase happens, it won't work. This was done
291  because of a change in SQLAlchemy trunk (future SA 0.4.2) which broke that
292  piece of code (and prevented to use autosetup at all). Since that code
293  was a hack in the first place, instead of doing some even uglier hackery,
294  I got rid of it altogether.
295- Moved some format strings to constants in options, so that one can change
296  them if he wants to.
297- Allow overriding primary_key columns on autoloaded entities (closes tickets
298  #20 and #22)
299- Columns created by ManyToOne relationships can now optionally (through
300  column_kwargs) *not* create an index (ie it's not harcoded anymore).
301  Suggestion by Jason R. Coombs.
302
303Bug fixes:
304- Fixed a nasty bug which prevented inheritance to work correctly when using
305  the attribute syntax in many cases.
306- Fixed associable extension to work with SQLAlchemy trunk (future 0.4.2).
307- Fixed an incompatibility with zope.interfaces.
308- Tweaked the initialization sequence again (in fact revert an older change)
309  which prevented to reuse class properties of one class in other (subsequent)
310  classes.
311- Fixed our tests to work with SA trunk (future 0.4.2) (unicode data + use of
312  deprecated attributes)
313
3140.4.0 - 2007-10-29
315
316Please see http://elixir.ematia.de/trac/wiki/Migrate03to04 for detailed
317upgrade notes.
318
319New features:
320- Implemented a new syntax to declare fields and relationships, much closer to
321  what is found in other Python ORM's. The with_fields syntax is now
322  deprecated in favor of a that new syntax. The old statement based (has_field
323  et al.) syntax is still available though (and will remain so for quite some
324  time). This was done with help from a patch by Adam Gomaa.
325- Implemented polymorphic single-table inheritance as well as polymorphic and
326  non-polymorphic multi-table (aka joined table) inheritance.
327- Added ext sub-package for additional Elixir statements.
328- Added associable extension for generating polymorphic associations with
329  Elixir statements.
330- Added versioning extension to keep track to all changes to your entities by
331  storing them in a secondary table.
332- Added encryption extenstion to encrypt/decrypt some fields data on the fly
333  when writing to/reading from the database.
334- Added support for synonym properties.
335- Added shortcut syntax to define column_properties.
336- Added a .query attribute on all entities. The old .query() syntax is still
337  available.
338- Added support to add any SQLAlchemy property on your mapper, through the
339  GenericProperty class (as well as the has_property statement). These can
340  work even if they rely on the entity columns (an thus need them to be
341  defined before the property can be declared). See tests/test_properties.py
342  for examples.
343- Added support for "manual session management" (ie you can now define an
344  entity with "using_options(session=None)" and it won't use any
345  SessionContext extension, nor receive the "query" attribute.
346- Made the statement system more powerfull.
347
348Changes:
349- The setup time was changed. That is the table and mapper are not created as
350  soon as the class is defined, but rather when first used, or when explicitly
351  calling the setup function (recommended). This also allowed us to reorder
352  the setup process and allows, among others to use a ManyToOne-generated
353  column as a primary key, to use unique constraints on those columns, to
354  order by those columns and so on...
355- Made Elixir work with both SQLAlchemy 0.4 and 0.3.10 (with help from a patch
356  by Ants Aasma).
357- Moved away from assign_mapper, now all assign_mapper-provided methods are on
358  the Entity class. Now, if people don't like them, they have the option to
359  simply provide another base class.
360- Default objectstore is now a ScopedSession when working on SQLAlchemy 0.4.
361  It means that it's not wrapped in an Objectstore object at all. This means,
362  that depending on the version of SA you are using, you'll get a slightly
363  different behavior.
364- Relationships to other classes can now also be defined using the classes
365  themselves in addition to the class namees. Obviously, this doesn't work for
366  forward references.
367- Classes defined inside a function can now have relationships to each other.
368- Added default __init__ method on entities so that subclasses can override it
369  and still have the "set attribute by keyword" behavior by calling super()
370- Added "through" and "via" keyword arguments on relationships and has_field
371  statement, to proxy values through relationships (uses association_proxy)
372- Made EntityMeta public, so that people can actually define their own base
373  class.
374- Changed the order of relationship kwargs processing so that computed kwargs
375  can be overridden by kwargs manually passed to the statement. This should
376  only be used if you know what you are doing.
377- Added onupdate kwarg to BelongsTo relationships for consistency with the
378  ondelete kwarg
379- Added ondelete and onupdate kwargs for use with has_and_belongs_to_many
380  to apply on delete clauses to foreign key constraints on the m2m table.
381- Columns of the intermediary table of an has_and_belongs_to_many relationship
382  are now marked as primary keys.
383- Reworked how entities look for primary keys on related entities. This
384  enables one "normal" entity (fully defined in Elixir) to refer to an entity
385  which is autoloaded.
386- Added translation (from column name to column object) of the primary_key
387  mapper option so that it can actually be used. This allows to have entities
388  without any primary key defined at the table level.
389- Added the possibility to give a custom name for ManyToOne constraints
390  (patch from and closes ticket #16)
391- Dropped support for the old threadlocal SA extension (which doesn't even exist
392  anymore in SA 0.4)
393
394Bug fixes:
395- Reworked/cleaned tests so that they don't leak stuff to other tests (both at
396  the method level and module level) anymore. Uses nosetest's module level
397  fixture.
398- Fixed relationships to entities whose primary_key field has been defined
399  with a "key" argument (based on a patch by Paul Johnston).
400- Fixed some buggy tests.
401- Fixed relationships to tables using a schema (patch by Neil Blakey-Milner)
402- Made inverse relationships use backrefs. This fixes the "bidirectional
403  coherency" problem some people had before doing a flush. (based on a patch
404  from Remi Jolin).
405
4060.3.0 - 2007-03-27
407- Made the provided metadata not threadlocal. This could break things for you
408  in some rare case. Please see the (newly created) FAQ file for details about
409  this.
410- Added support for autoloading/reflecting databases with
411  has_and_belongs_to_many relationships. The tablename argument is now
412  optional, but still recommended, otherwise you'll have to use the same exact
413  name for your intermediary table than the one generated. You also _have to_
414  specify at least one of either local_side or remote_side argument.
415- Added support for the "version_id_col" option on entities. This option adds
416  a column to the table which will be used to prevent concurrent modifications
417  on any row of the entity's table (i.e. it will raise an error if it happens).
418- Made the colname argument optional for belongs_to relationships in
419  autoloaded entities. It is only required to specify it if you have several
420  belongs_to relationships between two entities/tables.
421- Applied patch from "Wavy" so that columns of a table are in the same order
422  as they were declared (this only works for the has_field statement).
423- Applied patch from Isaac Csandl to add an "ondelete" argument to
424  belongs_to relationships. The content of that argument is forwarded to the
425  foreign key constraint.
426- Foreign key names generated by belongs_to relationships use column names
427  instead of relation names in case we have a relation with the same name
428  defined in several entities inheriting from the same entity using single-
429  table inheritance (and we set a custom column name in one of them to avoid
430  a column-name conflict).
431- Using invalid options on entities will now raise an exception
432- Added __version__
433- Use an explicit metaclass for entities, so that people can define their own
434  base class.
435- Changed the approach to reflecting/autoloading belongs_to relationships.
436  This shouldn't change anything to how it's used but allowed me to factor
437  some code with has_and_belongs_to_many relationships.
438- The tablename option can now be given a callable so that people can provide
439  their own function to get the table name for an entity. The tablename option
440  can now also be set globally (using the options_defaults dictionary). Of
441  course, this only makes sense for the callable usecase.
442
443- Fixed bug preventing having entities without any statement.
444- Fixed documentation for belongs_to relationships (the arguemnt is "required",
445  not "nullable").
446- Fixed typo which broke the use_alter argument on belongs_to relationships.
447- Fixed inheritance unit test to pass SQLAlchemy type check on relations
448  (introduced in SA 0.3.6)
449- Fixed wrong field length in autoload test (it was not noticeable with sqlite).
450- Actually make the code python 2.3 compatible (Robin's patch was based on
451  0.1.0 while I had introduced more decorators in the trunk in the mean time).
452
453- Made some PEP8 tweaks in many places. Used the pep8 script provided with
454  Cheesecake.
455- Some cleanup/useless code removal
456
4570.2.0 - 2007-02-28
458- Applied patch from Robin Munn to make the code python 2.3 compatible
459- Per a suggestion on the mailing list, look at the calling stack frame to
460  ensure that we apply statements to the proper class.  We now attach the
461  statement list to the class itself, rather than attaching it to a global
462  list that is neither threadsafe, nor safe when doing nested class
463  definition.  Also added a test to validate that this works.
464- implemented singletable non-polymorphic inheritance
465- added support to pass non-keyword arguments to tables. You just pass
466  them to the using_table_options statement and they will be forwarded to the
467  table along with the keyword arguments. This can be used to set table
468  constraints.
469- added support for deferred columns (use the "deferred" keyword argument on
470  fields)
471- added a "required" keyword argument on fields and BelongsTo
472  relationships. This is the opposite of the "nullable" SA argument.
473- added a "column_kwargs" keyword argument to BelongsTo relationships
474  to forward any keyword argument directly to the SA Column.
475- added support for the use_alter and constraint_kwargs kwargs on BelongsTo
476  relationships (forwarded to SA ForeignKeyConstraint).
477    -> removed the systematic use_alter on BelongsTo relations since it
478       can now be specified only when needed.
479    -> removed it from HasAndBelongsToMany relations, since I think a
480       circular foreign key dependency can't happen with those relations.
481- fixed foreign key names on MySQL (and possibly other) databases by
482  making sure the generated name is unique for the whole database, and not
483  only for the table on which it applies.
484- corrected some docstrings
485
4860.1.0 - 2007-02-12
487initial release
Note: See TracBrowser for help on using the browser.