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