root / elixir / trunk / CHANGES @ 434

Revision 434, 22.5 kB (checked in by ged, 4 years ago)

changelog

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