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