This repository has been archived by the owner on Jul 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog
178 lines (117 loc) · 5.31 KB
/
ChangeLog
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
Version 0.10.9
* Fix including nil comment fields in new comments [GH-19] (thanks @idris)
Version 0.10.8
* Fix RemoteAPI#add_worklog_and_auto_adjust_remaining_estimate (thanks @justfalter)
* Make JIRA::Worklog#start_date return a Time object instead of a DateTime object (thanks @justfalter)
Version 0.10.7
* Add RemoteAPI#issue_with_parent (thanks @softwarealliesadmin)
Version 0.10.6
* Add JIRAService.instance_with_token
Version 0.10.5
* Make jiraSOAP compatible with Ruby 1.8.7+ (thanks @wapcaplet)
Version 0.10.4
* Fix JIRA::Worklog#start_date typo (was start_data) (thanks @FDj)
Version 0.10.3
* Fix RemoteAPI#create_issue problem with setting a non-default reporter (thanks @toddtomkinson)
Version 0.10.2
* Fix RemoteAPIAdditions#custom_field_with_name (thanks @mpaclark)
Version 0.10.1
* Fix a documentation error with the new attachments API (thanks Vincent Beau)
Version 0.10.0
* Add RemoteAPI#add_attachments_to_issue_with_key (thanks @rjharmon)
* Add RemoteAPI#components_for_project_with_key (thanks @rjharmon)
* Fix a typo in RemoteAPI#progress_workflow_action (thanks Vincent Beau)
* Deprecate RemoteAPI#add_base64_encoded_attachments_to_issue_with_key (thanks @rjharmon)
* Remove deprecated methods from previous release
* Begin making the test suite public
Version 0.9.2
* Remove unneeded httpclient dependency
Version 0.9.1
* Fix a typo in the deprecation warning
Version 0.9.0
* Deprecate RemoteAPI#get_projects_without_schemes in favour of #projects
* Properly deprecate #get_ methods
* Add RemoteAPI#progress_workflow_action (thanks Lucas Jourdes)
* Add RemoteAPI#available_action (thanks Lucas Jourdes)
* Add extra documentation about updating fields (thanks Vincent Beau)
* Various small documentation updates and tweaks
Version 0.8.6
* Add extra documentation about updating cascading fields (thanks Lucas Jourdes)
Version 0.8.5
* Add missing alias for a predicate attribute (IssueProperty#sub_task?)
Version 0.8.4
* Fix indentation of example code in documentation
Version 0.8.3
* Fix a documentation link
Version 0.8.2
* Added Issue#custom_field for getting custom field values
* Added a file of examples, ported from jira4r
* Add setters to attribute aliases
* Added a forgotten deprecation
* Updated ChangeLog with changes from 0.8.1
* Updated ChangeLog with changes from 0.8.0 (sorry!)
Version 0.8.1
* Updated README and GettingStarted guide
Version 0.8.0
* Deprecated the #get_ from methods that start with #get_
* Alias #login to #log_in and #logout to #log_out
* Added RemoteAPI#permission_to_edit_comment?
* Added UserGroup and related RemoteAPI methods
* Added RemoteAPI#add_worklog (thanks @FDj)
* Added ability to initialize JIRA::FieldValue without an array (thanks @knut)
* Various documentation updates and tweaks
* Removed handsoap parsing abstraction (roflscale for parsing)
* Removed the YARD plugin in favour of YARD 0.7 DSL documenting stuff
* Fix setting the assignee during Issue creation (thanks @ssmiech)
Version 0.7.1
* Remove AOT compiled files from gem
Version 0.7
* Added YARD extension for documentation
* Removed URL class in favour of directly using underlying objects
* Added AOT compilation for MacRuby
* Moved RemoteAPI into the JIRA namespace
* Alias #get_favourite_filter to #get_favorite_filter
* Tweaked parsing logic more in preparation for the builder generalization
* Various documentation updates
* Removed jeweler development dependency
* Removed yardstick development dependency
* General tweaking of the rakefile, gemspec, gemfile, and .yardopts
Version 0.6.1
* Added RemoteAPIAdditions module for conveniences
* Fix duplicate dependancy listings
Version 0.6
* Added RemoteAPI#get_projects_without_schemes
* Added RemoteAPI#delete_project_avatar_with_id
* Added RemoteAPI#delete_project_with_key
* Added RemoteAPI#set_project_avatar_for_project_with_key
* Added RemoteAPI#set_new_project_avatar_for_project_with_key
* Added RemoteAPI#get_resolution_date_for_issue_with_id
* Added RemoteAPI#get_resolution_date_for_issue_with_key
* Added RemoteAPI#get_project_roles and friends
* Changed parsing logic (1.5-2x faster)
* Changed Scheme#type to return a Class constant
* Changed #color in JIRA::Priority to be formatted as an array
triple
* Alias #colour to #color in JIRA::Priority
* Changed instances of #lead to #lead_username
* Changed instances of #create_date to #create_time
* Changed instances of #last_updated to #last_updated_time
* Changed instances of #filename to #file_name
* Changed instances of #original_author to #author
* Changed instances of #reporter_name to #reporter_username
* Changed instances of #assignee_name to #assignee_username
* Consolidated Handsoap parsing extensions into NokogiriDriver
* Various documentation updates
Version 0.5
* Begin summarizing changes in a changelog
* Begin abstracting parts of JIRA model
* Fixed RemoteAPI#add_version_to_project_with_key
* Added RemoteAPI#get_server_configuration
* Changed use of factories to constructors in the model
* Changed FieldValue#id to FieldValue#field_name
* Changed CustomField to CustomFieldValue
* Changed User#name to User#username
* Changed Scheme#type to return the class name
* Changed some RemoteAPI method names to be more descriptive
* Changed Avatar#content_type to Avatar#mime_type
* Various documentation updates