Version 2.006002
[catagits/Catalyst-Controller-DBIC-API.git] / Changes
1 Revision history for Catalyst-Controller-DBIC-API: {{ $dist->version }}
2
3 {{ $NEXT }}
4
5 2.006002  2014-08-26 12:31:27+02:00 Europe/Vienna
6  - Fix missing Data::Printer test requirement
7
8 2.006001  2014-08-25 18:27:26+02:00 Europe/Vienna
9  - Fix links to ::Request::Context
10  - Add support for the -and, -not and -or operators (RT93864)
11
12 2.005001  2014-01-13 21:43:59+01:00 Europe/Vienna
13  - Fixed test failures with JSON 2.90 (RT#90188, thanks Samuel Kaufman!)
14  - Fixed generate_rs to set model to contents of stash->{class} if present
15    (thanks Alex Howarth)
16  - Use Catalyst's http method matching for REST instead of
17    ActionRole, whose feature went into core in 5.90013, and
18    MatchRequestMethod, whose feature went into 5.90020
19  - Documentation improvements
20
21 2.004004 2012-11-21T12:20:41Z Europe/Vienna
22  - Fixed test failures in t/[rest,rpc]/item.t on newer HTTP::Message
23    versions
24  - Don't wrap the SQLite test schema DDL queries in a transaction to
25    suppress DBIx::Class warnings
26  - Added diagnostic messages to tests that trigger DBIx::Class warnings
27
28 2.004003 2011-12-19T14:41:59Z Europe/Vienna
29  - Fixed test failure in generic.t with Moose > 2.02
30
31 2.004002 2011-10-24T15:48:55Z Europe/Vienna
32  - Use the column accessor instead of set_column when inserting new objects
33  - Allow setting the result_class to undef to prevent the usage of
34    HashRefInflator
35
36 2.004001 2011-08-19T16:17:53Z Europe/Vienna
37  - Changed stored_model and stored_result_source attributes to methods for
38    ACCEPT_CONTEXT/Catalyst::Component::InstancePerContext compatibility
39
40 2.003002 2011-05-09T12:30:01Z Europe/Vienna
41  - Added has_errors method
42  - Fixed tests to succeed with newer DBIx::Class and Moose versions
43  - Fixed controller instantiation failures with Moose 2 in relation to
44    prefetch
45
46 2.003001 2011-02-16T17:52:37Z Europe/Vienna
47  - Use JSON instead of JSON::Any to get rid of the CPAN Testers failures
48    when only JSON::Syck is available
49
50 2.002004 2011-01-13T19:22:20Z Europe/Vienna
51  - Renamed Visitor to Validator::Visitor to conform with
52    Data::DPath::Validator and moved it into a separate file
53  - Fixed failure because of Data::DPath >=0.41 by not using
54    MooseX::Role::BuildInstanceOf for the validator attributes (RT#64673)
55  - Added result_class and stash_key attributes to enable their
56    configuration in the controller (RT#63686)
57
58 2.002003 2010-09-16T10:44:40Z Europe/Vienna
59  - Added REST and RPC delete_bulk tests
60  - Fixed RPC delete_bulk not working at all
61  - Added REST and RPC update_bulk tests
62  - Removed useless RPC index action
63  - Fixed static configured page attribute not being used (RT#56226)
64  - Test use_json_boolean true
65  - Fixed search attribute generation for nonexistent relationships
66  - Remove trailing newlines from error messages
67
68 2.002002 2010-08-03T14:40:50Z Europe/Vienna
69  - Fixed search for related columns overwriting existing params in
70    generate_column_parameters
71  - Use column accessor for updating an existing object instead of passing
72    the new values to update. This enables the column accessors to do
73    additional work (for example with method modifiers).
74  - Fixed t/rpc/list.t error message regex to pass with Moose version >=1.05
75  - Fixed pod coverage and added a test for it
76
77 2.002001 2010-04-01T01:41:11Z Europe/Berlin
78  - PLEASE THOROUGHLY TEST AS SOME BEHAVIOR MAY HAVE BEEN ALTERED SUBTLY
79    WHEN DEALING WITH BULK VS SINGLE ACTIONS
80  - Remove debugging code and other noise from tests
81  - Fixed some typos and code cleanups
82  - Added possibility to fetch a single object by id using 'item'
83  - Added item_root attribute which defaults to 'data' and is used as data
84    root for 'item'
85  - Break out bulk actions into their own methods for RPC
86  - Restore identifer vs. no identifer for REST chains
87  - Chain dispatching has now been fixed to not be as hackish as before
88  - Shift around where the current resultset is set, setup() now does
89    /nothing/ by default other than be a chain anchor
90  - Tests added for updating related keys via REST
91  - generate_rs is now used to get the default resultset inside
92    inflate_request
93  - No longer uses Catalyst::Action::REST to do dispatching instead uses
94    ActionRole and MatchRequestMethod
95
96 2.001003 2010-02-12T19:01:56Z America/Chicago
97  - Fill out some coercions to allow more complex search criteria (like sort
98    order)
99  - Promote the helper functions into full methods
100  - Allow iterative customization by breaking down the save_objects into
101    several discrete steps
102  - Make sure those steps also include $c
103
104 2.001002 2010-02-09T01:01:57Z America/Chicago
105  - Fixed missing requirement for MooseX::Types::Structured
106  - Fixed MooseX::Aliases usage (we don't any more)
107  - Object inflation during end was broken out into its own method:
108    each_object_inflate
109  - Enable offset based paging
110
111 2.001001 2010-02-07
112  - THIS RELEASE GUARANTEES TO BREAK BACKWARDS COMPATIBILITY
113  - Merge create and update into update_or_create
114  - object is much advanced now, identifier can be omitted and data_root in
115    the request is interpreted
116  - Because of the above one object or several is now possible for update or
117    create
118  - Create and update object validation now happens iteratively
119  - Creates and updates can be mixed inside a single bulk request
120  - All modifying actions on the database occur within an all-or-nothing
121    transaction
122  - Much of the DBIC search parameter munging is properly moved to the
123    RequestArguments role in the form of a trigger on 'search' to populate
124    'search_parameters' and 'search_attributes' which correspond directly to
125    ->search($parameters, $attributes)
126  - Error handling is now much more consistent, using Try::Tiny everywhere
127    possible
128  - Tests are now modernized and use JSON::Any
129  - Extending is now explicitly done via Moose method modifiers
130  - The only portion of the stash in use is to allow runtime definition of
131    create/update_allows
132  - list is now broken down into several steps:
133    + list_munge_parameters
134    + list_perform_search
135    + list_format_output
136    + row_format_output (which is just a passthrough per row)
137  - Search can now take an array of hashrefs to give the ability to use the
138    default 'OR' 
139  - By default search_parameters is an ArrayRef[HashRef] which is pertinent
140    to list_munge_parameters
141  - More thorough documentation of the various bits and pieces.
142  - Documentation now uses Pod::Weaver and Plugin::PodWeaver (weaver.ini
143    added)
144  - The distribution is now managed by Dist::Zilla
145  - And some more likely forgotten
146
147 1.004002 2010-01-14
148  - Implement 'as' as a complement to 'select'
149  - CGI::Expand'ed search parameters are now also JSON decoded + test
150  - Fixed pod for parameters using a json string which shouldn't be
151    surrounded by single quotes
152  - Use next instead of NEXT in RPC
153  - Moved sub object from RPC/REST to Base to DRY This will break your code
154    if you subclass from REST and had relied on the action name 'object'
155  - Check for defined objects before returning them for create/update
156
157 1.004001 2010-01-04
158  - Allow for more complex prefetch_allows (multiple keys in hash)
159  - Skip non-existant parameters in deserialization
160  - Fixed whitespace to use spaces instead of tabs
161  - Fixed pod to not use the config attributes from before 1.004
162  - Fixed prefetch_allows check to properly handle nested attrs + test
163
164 1.004000 2009-12-22
165  - Moosify
166  - Move validation for *_exposes/*_allows to Data::DPath::Validator
167  - Reorganize internals to use Moose and roles
168  - Allow maximum configuration for what request parameters are named
169  - Properly handle JSON boolean values
170  - Earlier and more consistent validation of configuration and request
171    parameters
172
173 1.003004 2009-12-09
174  - Database errors are also handled for searches + tests
175  - Totalcount isn't included in the response if a db error occurs while
176    fetching data
177  - Converted no_plan tests to done_testing (required Test::More 0.88)
178
179 1.003003 2009-11-16
180  - Database errors are properly handled + test
181  - Fixed isa redefined warnings
182  - Fixed bug preventing compat with future Catalyst::Action::Deserialize
183    versions
184
185 1.003002 2009-07-22
186  - Added totalcount to paged list responses
187  - Fixed some tests weren't run in t/rpc/list.t
188  - Fixed wrong setup_dbic_args_method error message
189
190 1.003001 2009-07-17
191  - Minor fix to prevent failing test
192
193 1.003000 2009-05-19
194  - Added prefetch support
195  - Refactored to ensure all request params accept JSON, CGI::Expand or
196    standard params
197  - Doc improvements
198
199 1.002000 2009-03-18
200  - Better error handing when unable to parse search arg
201  - Added setup_dbic_args_method config option
202  - Added list_search_exposes config option
203  - Removed duplicate tests in t/rpc/list.t and t/rest/list.t
204  - Fixed searches on columns which have a rel with the same name and vice
205    versa
206  - Added search by json
207  - Added pagination support
208
209 1.001000 2008-07-23
210  - Added setup_list_method configuration flag (jshirley)
211  - Added support for setting config params in stash
212  - Added list_grouped_by, list_count and list_ordered_by config attributes
213  - Fixed bug with behaviour of list_returns
214
215 1.000002 Unknown
216  - Fixed lack of deserialization under RPC
217
218 1.000001 2008-06-29
219  - Improved docs
220
221 1.000000 2008-06-28
222  - Released