1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
|
Revision history for Perl module RT::Client::REST
0.60 Wed May 6 2020 "Dean Hamstead" <dean@fragfest.com.au>
- PR#25 GH#23 Fix get_attachments_metadata
- PR#24 GH#22 Fix get_attachments_metadata
0.59 Mon May 4 2020 "Dean Hamstead" <dean@fragfest.com.au>
- Worked around what appears to be a bug in PodChecker in perl 5.20
- Adjusted travis and dist.ini
- No functional changes
0.58 Thu Apr 30 2020 "Dean Hamstead" <dean@fragfest.com.au>
- RT118729 correct bug when "not set" is in textA
- PR#19 Report UA, URI, and better errors when you opt in. Thanks @melmothx
0.57 Tue Apr 28 2020 "Dean Hamstead" <dean@fragfest.com.au>
- PR#21 Add SLA and SLADisabled attributes which appeared in RT 4.4.3
0.56 Mon Dec 24 2018 "Dean Hamstead" <dean@fragfest.com.au>
- Fix for GH#18 (more fixes)
0.55 Sat Dec 08 2018 "Dean Hamstead" <dean@fragfest.com.au>
- Fix for GH#18
0.54 Mon Nov 12 2018 "Dean Hamstead" <dean@fragfest.com.au>
- Fixes for whitespace handling in attachments RT127607
- Fix edgecase for handling 401's RT127288
0.53 Mon Nov 05 2018 "Dean Hamstead" <dean@fragfest.com.au>
- Fix some tests on Windows
- Various coding changes internally
- Expose CC Addresses and Admin CC Addresses on Queues
0.52 Fri Apr 06 2018 "Dean Hamstead" <dean@fragfest.com.au>
- Fix up lots of Pod Critic complaints
- Fix up lots of Perl Critic complaints
- Use Dist-Zilla for releases
- Remove Pod, tests and other files that Dist-Zilla provides
- Adjust git repo slightly
- Note: no functional changes
0.51 Tue Feb 27 2017 "Dmitri Tikhonov" <dmitri@cpan.org>
- Add method to retrieve attachment metadata. Thanks Oriol Soriano.
- Fix filename parsing bug in get_attachment_ids(). Thanks djstauffer.
0.50 Fri Dec 11 2015 "Sarvesh Das" <sarveshd@opmbx.org>
- Added the 'disabled' attribute to RT::Client::REST::Group and
RT::Client::REST::Queue to match the addition in RT 4.2.2 --
commit 7557633. Thanks Tom.
- Allow a trailing forward slash in the server URI --
RT#97621. Thanks Marco Pessotto.
- Tests in 82-stringify.t are skipped with LWP::UserAgent 6.04
which has buggy read timeout -- commit da577af. Thanks Marco
Pessotto.
- Fixed warning `Unescaped left brace in regex is deprecated'
in perl 5.22 -- RT#106795. Thanks Mike Andrews.
- Fixed documentation for RT::Client:REST::search() in POD --
RT#98160.
- Removed MYMETA* files from distribution -- RT#108083
0.49 Sat May 10 2014 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
- This module is now all covered by the Perl Artistic License:
GPL is gone. This was done with permission from the original
author of the command-line `rt' utility, Abhijit Menon-Sen.
- Support custom fields that contain '#' in their name. Patch
contributed by Ryan Niebur in RT#83856 -- thanks!
- Documented get_links() -- RT#68673.
- All tests now correctly run on Windows -- RT#81872.
- All tests now correctly run on OpenBSD -- RT#95223.
0.48 Wed Apr 30 2014 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
- Fixed POD bug in 0.47 -- `logger' attribute and method of
RT::Client::REST was not documented and this caused POD
coverage test to fail. While at it, made it a developer-only
test. This way, these types of issues do not cause all
cpantesters to fail.
0.47 Wed Apr 30 2014 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
- Support redirects on login, RT#92371.
- Skip failing test 83-attachments.t on OpenBSD while we investigage
why it fails. Track this issue in RT#95223.
0.46 Sat Apr 26 2014 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
This release only fixes several tests, there are no functional changes.
Dmitri Tikhonov <dtikhonov@yahoo.com>
- Skip some tests on Windows and with buggy LWP::UserAgent.
Marco Pessotto
- Bumped version for next release (+ fixed version number in POD)
0.45
Marco Pessotto
- Fixed uploading preventing objects to be stringified (RT#88919)
- Added option to get undecoded attachments (RT#90112)
- Added test 82-stringify.t (fails with 0.44 before the RT#88919 fix)
- Added test 83-attachments.t to illustrate and check RT#90112
0.44
Damien Krotkine
- Add URI in the prereqs
Dave Lambley
- Add support for parsing RT dates and returning a datetime object.
(RT#73920 + RT#76658)
Gregor Hermann (Debian Perl Group)
- Doc improvement (RT#74191)
Darren Duncan
Doc improvement for timeout (RT #78133)
richardgmcmahon@gmail.com
Doc improvement for show method (RT #78439)
Miquel Ruiz
Fix for submitting non latin-1 strings to RT
0.43
Miquel Ruiz <mruiz@cpan.org>
- Added support for groups via new class RT::Client::REST::Group
Tests and examples also added.
Roman Plesll <RPLESSL@cpan.org>
- Fix for ticket merges (RT #62405)
Stuart Browne <stuart.browne@ausregistry.com.au>
- Accept question mark in custom field names (RT #70631)
T Pascal <t_pascal@zennet.com>
- Patch for different link types (RT #68673)
Jose Luis Martinez <jlmartinez@capside.com>
- Skip timeout tests on Windows (RT #70225, RT #35770)
- Fix 'priveleged' (renamed to 'privileged') method on RT::Client::REST::User
- Add missing disabled, nickname, lang, contactinfo and signature methods to
RT::Client::REST::User
- Clean up the API for retrieving links. Patch from T.Pascal is missing some
cases like links that are URLs. This feature is not documented as it's
considered experimental.
- Refactor login method to accept any type of field name (not just username
and password)
0.42
False release. See 0.43
- support for groups via new class RT::Client::REST::Group
- Fix for ticket merges
- Accept question mark in custom field names
0.41
Tomas Doran <bobtfish@bobtfish.net>
- Make version number a string to avoid length of version number changing
at 0.X0 releases (as this breaks distro packages)
- Update META.yml to the 0.4 META spec.
- Include repository metadata to make it easier for people to contribute
to the module.
- Change from ExtUtils::MakeMaker to Module::Install (I'm sure you can
generate the correct information with EU::MM, I just don't know how
offhand).
- Add Test::More as a test_requires to help distros which split it out
of their core perl package (RT#45150)
0.40
Jerrad Pierce <jpierce@cpan.org>
- #38710, more user attributes
- #39868 & #42391, Alter CF parsing to accomodate 3.8 as well as 3.6
This required tweaks to Forms as well as Object.
- #38591 & #43844, Add requestor attribute to Ticket so that autoreplies
are sent to users under RT3.8
0.37 Fri Aug 15 2008 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
- Fri Aug 15 2008 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
Improvement: reorganized exceptions, made
RT::Client::REST::Object::Exception a subclass of
RT::Client::REST::Exception. What this means is that now any native
exception thrown by RT::Client::REST code can be caught by catching a
generic RT::Client::REST::Exception class. Added tests to ticket and
attachment tests scripts to verify the behavior. I have been meaning
to do this for a while now.
Fixed an error in RT::Client::REST::Ticket POD. Bug 36814.
0.36 Sat May 10 2008 "Damien Krotkine" <dams@cpan.org>
- Sat May 10 2008 "Damien Krotkine" <dams@cpan.org>
Bug 35692 and 35146 : added test and fix.
0.35 Tue Apr 15 2008 "Damien Krotkine" <dams@cpan.org>
- Tue Mar 04 2008 "Damien Krotkine" <dams@cpan.org>
Bug 34917 : applying patch from Andreas J. Koenig.
remove unneeded Encode
0.34 Tue Mar 04 2008 "Damien Krotkine" <dams@cpan.org>
- Mon, 03 Mar 2008 "Damien Krotkine" <dams@cpan.org>
added Encode prerequist
0.33 Fri Feb 29 2008 "Damien Krotkine" <dams@cpan.org>
- Fri, 01 Feb 2008 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
Fixed a typo.
Updated POD; no code changes.
s/dtikhonov@vonage.com/dtikhonov@yahoo.com/
- Tue, 29 Jan 2008 "Damien Krotkine" <dams@cpan.org>
Decode data from REST from the proper encoding to Perl internal.
Thanks to "Sébastien Aperghis-Tramoni" <sebastien@aperghis.net>
- Fri, 25 Jan 2008 "Damien Krotkine" <dams@cpan.org>
Add dirty custom fields handling. Without it, cf are always submitted,
included void ones, which may (and does on rt.cpan.org) conflict with
custom fields rules on the server (e.g. a custom field value cannot be
empty)
0.32 Sun Dec 23 2007 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
- Fixed bug 31827 -- allow to specify custom fields at creation time.
Method 'cf' can now take a hash reference that has a list of custom
fields and their values.
- Fixed bug 31828: allow to specify ticket content at creation time.
Methods RT::Client::REST->create and RT::Client::REST::Ticket->store
now take optional 'text' parameter.
0.31 Fri May 25 2007 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
! lib/RT/Client/REST.pm
* Fixed 'VERSION' section of POD to print the correct version.
! lib/RT/Client/REST/Ticket.pm
! lib/RT/Client/REST/User.pm
* Fixed SYNOPSYS in POD to reflect reality. No code changes.
! lib/RT/Client/REST/Queue.pm
* CPAN.RT #27267 - fixed POD. No code changes.
! Makefile.PL
* Added 'LICENSE' option.
0.30 Sat May 19 2007 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
! lib/RT/Client/REST.pm
* CPAN.RT #27201 -- if one login fails, subsequent logins should
fail as well.
0.29 Thu May 17 2007 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
! lib/RT/Client/REST/Object.pm
* Do not validate values received from the server (from_form
method).
0.28 Fri Apr 27 2007 "Dmitri Tikhonov" <dtikhonov@yahoo.com>
This is a bug fix release.
! lib/RT/Client/REST/Ticket.pm
* CPAN.RT #25185 -- fixed typos in attribute validation specs.
! lib/RT/Client/REST.pm
* CPAN.RT #26528 -- fixed a typo in method 'get_transaction_ids'
! examples/show_ticket.pl
* Added code to display all custom fields.
+ t/99-kwalitee.t
* Kwalitee is spelled... vanity?!
! TODO
* Removed a couple of old items.
Special thanks to Damien Krotkine (Dams) who found and provided
patches for both bugs.
0.27 Tue Oct 3 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
This is a small release to fix warnings and a couple of documentation
errors.
! lib/RT/Client/REST.pm
* Fixed SYNOPSIS (CPAN RT 21314).
* Upped $VERSION to 0.27.
! lib/RT/Client/REST/Object.pm
* Fixed code to avoid a possible 'undefined value' warnings from
tests.
* Fixed up POD (annocpan note #989).
! t/35-db.t
* Changed from 'no_plan' to plan 20 tests.
! t/22-ticket.t
* Added test to verify properties of list attributes.
0.26 Tue Aug 15 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
! lib/RT/Client/REST.pm
* Match either $res->content or $res->message for the timeout
message; this depends on version of HTTP::Response installed on
the system. Discovered when timeout tests threw wrong exceptions
on an old box.
! README
* Reworded some things.
0.25 Wed Aug 9 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
Added support for basic HTTP authentication.
! lib/RT/Client/REST.pm
* Added support for using basic HTTP authentication with the help
of a callback provided via method "basic_auth_cb".
* Use our own UA class (subclass of LWP::UserAgent).
! t/10-core.t
* More tests.
+ lib/RT/Client/REST/HTTPClient.pm
* Subclass of LWP::UserAgent to add some methods.
+ examples/report-bug-to-cpan.pl
* Report a bug to CPAN rt.
! examples/show_ticket.pl
* Removed ticket-modifying code.
! MANIFEST
* Added new files.
! TODO
* More stuff to do.
0.24 Tue Aug 8 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
! lib/RT/Client/REST.pm
* Added 'timeout' attribute to the object. If specified, overrides
the default used by LWP::UserAgent.
! lib/RT/Client/REST/Exception.pm
* Added RT::Client::REST::RequestTimedOutException.
! 91-pod-coverage.t
* RT::Client::REST now has improved POD.
! MANIFEST
* Added new files.
! TODO
* Added 'write user manual' item.
+ t/80-timeout.t
* Test timeout exceptions.
+ README
* Added README file.
0.23 Fri Aug 4 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
! lib/RT/Client/REST.pm
* API change -- added 'login' method.
! lib/RT/Client/REST/SearchResult.pm
* API change -- 'object' instead of 'retrieve'.
! lib/RT/Client/REST/Object.pm
* Added support for transparency and a bunch of other goodies.
See POD.
! lib/RT/Client/REST/Attachment.pm
! lib/RT/Client/REST/Ticket.pm
* Modified to conform to changed APIs.
! examples/*.pl
* Modified to adhere to new APIs.
+ t/35-db.t
* Test auto* goodies.
+ t/91-pod-coverage.t
* Test POD coverage.
! t/10-core.t
! t/20-object.t
! t/40-search.t
* Updated with new tests, methods, APIs, etc.
! MANIFEST
* Added new test files.
0.22 Fri Aug 4 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
! lib/RT/Client/REST/Object.pm
* Modified behavior. Now list attribute methods return lists,
not array references.
* Fixed the way comma-separated values are split when parsing forms.
* Updated POD.
! Makefile.PL
* Added dependency on Test::Exception, so that automated CPAN tests
don't fail.
! lib/RT/Client/REST.pm
* Updated POD.
* Upped VERSION.
* No code changes.
! examples/edit_ticket.pl
* Modified to support setting list attributes.
0.21 Thu Aug 3 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
! lib/RT/Client/REST.pm
* Added support for attachments.
! lib/RT/Client/REST/Ticket.pm
* Updated POD.
! lib/RT/Client/REST/Exception.pm
* Added exception RT::Client::REST::CannotReadAttachmentException.
* Jump version to 0.17 so that CPAN indexer does not bitch.
! t/22-ticket.t
* Added test for RT::Client::REST::CannotReadAttachmentException.
0.20 Wed Aug 2 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
Added support for queues.
! lib/RT/Client/REST.pm
* Modified method "show()" to accept non-numeric IDs for objects
of type 'queue'.
+ lib/RT/Client/REST/Queue.pm
+ t/25-queue.t
* Queue support.
+ examples/show_queue.pl
+ examples/create_user.pl
+ examples/list_tickets.pl
* More examples.
! MANIFEST
* Added new files.
0.19 Wed Aug 2 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
! lib/RT/Client/REST.pm
* Fixed a bug in 'create' and 'edit' -- introduced in 0.14 when
APIs changed. (Note to self - need a full-blown test suite).
0.18 Wed Aug 2 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
! lib/RT/Client/REST.pm
! t/10-core.t
* Added methods 'take', 'untake', and 'steal'.
* If attribute 'server' is unset,
RT::Client::REST::RequiredAttributeUnsetException will be thrown
when a REST method is called.
! lib/RT/Client/REST/Exception.pm
* Added exceptions:
* RT::Client::REST::RequiredAttributeUnsetException
* RT::Client::REST::AlreadyTicketOwnerException
! lib/RT/Client/REST/Object.pm
! t/20-object.t
* Added convenience assertions methods:
* _assert_rt_and_id
* _assert_rt
* Added assertions to methods 'retrieve', 'store', and 'count'.
! lib/RT/Client/REST/Object/Exception.pm
* Added exceptions:
* RT::Client::REST::Object::NoopOperationException
* RT::Client::REST::Object::RequiredAttributeUnsetException
! lib/RT/Client/REST/Ticket.pm
! t/22-ticket.t
* Added methods 'take', 'untake', and 'steal'
* Added assertions in a couple of places
* Fixed up POD.
+ examples/take_ticket.pl
* Taking a ticket.
! MANIFEST
* Added new example.
0.17 Tue Aug 1 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
+ lib/RT/Client/REST/Transaction.pm
+ t/24-transaction.t
* Added transaction object.
+ examples/show_transaction.pl
+ examples/list_transactions_rt.pl
+ examples/list_transactions.pl
* Some more examples.
! lib/RT/Client/REST/Ticket.pm
* Added method "transactions()".
! lib/RT/Client/REST.pm
! t/10-core.t
* Added methods "get_transaction_ids()" and "get_transaction()"
! lib/RT/Client/REST/Attachment.pm
* After retrieving values, set everything to not dirty.
* Fixed up POD.
! MANIFEST
* Added new files.
0.16 Tue Aug 1 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
Added support for user object; other minor changes.
+ lib/RT/Client/REST/User.pm
+ t/21-user.t
* Added user object.
+ examples/show_user.pl
+ examples/edit_user.pl
* Examples of the user APIs.
! lib/RT/Client/REST.pm
* If method "show()" is called to retrieve an object of type "user",
'id' parameter does not have to be numeric.
! lib/RT/Client/REST/Exception.pm
* Added RT::Client::REST::UnauthorizedActionException
* Method _rt_content_to_exception() now returns a ready-to-throw
exception with message set to massaged text from RT server.
! MANIFEST
* Added new files.
0.15 Tue Aug 1 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
! lib/RT/Client/REST/Ticket.pm
* Fixed up POD.
! lib/RT/Client/REST.pm
* Upped $VERSION to 0.15 -- no code changes.
0.14 Tue Aug 1 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
+ lib/RT/Client/REST/Attachment.pm
+ examples/list_attachments.pl
+ examples/show_attachment.pl
+ t/23-attachment.t
* New attachment representation.
! lib/RT/Client/REST/Ticket.pm
! t/22-ticket.t
* Added method "attachments()".
! lib/RT/Client/REST/SearchResult.pm
! t/40-search.t
* Changed APIs to be more flexible -- pass a closure to retrieve
objects.
! lib/RT/Client/REST/Object.pm
* Modified to work correctly with new REST.pm and SearchResult.pm APIs.
! lib/RT/Client/REST/Object/Exception.pm
* Added RT::Client::REST::Object::IllegalMethodException
! examples/show_ticket.pl
* Catch and display exceptions.
! lib/RT/Client/REST/Exception.pm
* Added several exceptions.
* Added POD.
! lib/RT/Client/REST.pm
! t/10-core.t
* Modified "show()" and "edit()" methods to only accept a single ID.
This is needed in order to correctly throw exceptions -- one object
at a time, please.
* Added methods "get_attachment_ids()" and "get_attachment()".
* Removed list of exceptions (see Exception.pm docs).
* Various small updates to POD.
! MANIFEST
* Added the new files.
0.13 Mon Jul 31 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
Added searching APIs.
! lib/RT/Client/REST/Object.pm
* Added methods 'search' and 'count'.
* Updated POD.
+ lib/RT/Client/REST/SearchResult.pm
* This class is an OO representation of search results.
+ t/40-search.t
* Tests for RT/Client/REST/SearchResult.pm
+ examples/search_tickets.pl
* Example of a search.
! lib/RT/Client/REST.pm
* Added method 'search'.
* Modified POD to reflect latest changes.
! t/10-core.t
* Added test for method 'search'.
! lib/RT/Client/REST/Exception.pm
* Added RT::Client::REST::InvalidQueryException
* Added $VERSION
! lib/RT/Client/REST/Object/Exception.pm
* Added two exceptions:
* RT::Client::REST::Object::InvalidSearchParametersException
* RT::Clite::REST::Object::InvalidAttributeException
! TODO
* Search has been implemented.
! MANIFEST
* Added search-related files.
0.12 Tue Jul 25 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
Refactoring and improvement continues. Still very much beta.
! lib/RT/Client/REST/Ticket.pm
* Added methods 'comment' and 'correspond'.
* Added attribute 'last_updated'.
* Added POD.
! t/22-ticket.t
* Added tests for new methods and attributes.
! lib/RT/Client/REST.pm
* Added 'cc' and 'bcc' support to 'comment' and 'correspond' methods.
* Refactoring: moved forms functions and exceptions into their own files.
* Fixed POD (s/=end/=cut/).
* Throw 409 RT errors (syntax errors), since this client is not
interactive.
+ lib/RT/Client/REST/Exception.pm
* Refactoring: moved forms functions and exceptions into their own files.
* Mapped 'does not exist' to ObjectNotFound exception.
* Added RT::Client::REST::UnknownCustomFieldException.
+ lib/RT/Client/REST/Forms.pm
* Refactoring: moved forms functions and exceptions into their own files.
! lib/RT/Client/REST/Object.pm
* When creating an object, update $self with the new id.
* Added support for fetching and updating custom fields.
* Added method 'cf' for custom field manipulation.
* Added POD.
! t/20-object.t
* Added test for 'cf' method.
+ t/90-pod.t
* Added POD tests using Test::Pod.
! examples/edit_ticket.pl
! examples/show_ticket.pl
* Now rtserver is $ENV{RTSERVER} by default.
+ examples/create_ticket.pl
+ examples/comment_on_ticket.pl
+ examples/edit_custom_field.pl
* More examples.
! Makefile.PL
* Added dependency on Params::Validate.
! MANIFEST
* Updated to reflect new tests, examples, and classes.
+ TODO
* Added TODO file.
0.11 Sat Jul 22 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
! lib/RT/Client/REST.pm
* Make $VERSION a string so that 'make tardist' works as
expected (i.e. version 0.10 instead of 0.1).
0.10 Sat Jul 22 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
Started working on new APIs; new objects and file structure.
0.06 Wed Jul 12 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
* Method 'create' now returns numeric ID of the new object.
* RT::Interface::REST is no longer a requirement. If it is not
installed, embedded copy of auxiliary methods is used.
* Added tests.
0.05 Thu Apr 20 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
* Added RT::Client::REST::CouldNotCreateObjectException
0.04 Wed Apr 19 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
* Removed old print statements
0.03 Wed Apr 19 2006 "Dmitri Tikhonov" <dtikhonov@vonage.com>
This is the initial release.
# vim:sts=2:sw=2:et:ft=changelog:
|