forked from pycontribs/jira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
2044 lines (1229 loc) · 61 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
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
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changelog
=========
Upcoming release (unreleased changes)
-------------------------------------
- Fix #194 Exception AttributeError: "'NoneType' object has no attribute
'version_info'" [Long Vu]
- Added template_name parameter to create_project to be able to specify
template directly, and fix issues where function cannot find suitable
project name. [Kovalenko]
- Fix #157. [John T. Wodder II]
- Delete Issue Link Bug Fix. [Dilshan Rajapakse]
- Add documentation for attachments. [Grigory Chernyshev]
- Add documentation for watchers. [Grigory Chernyshev]
- Added docset building to the documentation build. [Sorin Sbarnea]
- Adopted django versioning implementaion. [Sorin Sbarnea]
- Merge branch 'develop' of github.com:pycontribs/jira into develop.
[Sorin Sbarnea]
- Merge remote-tracking branch 'upstream/develop' into develop. [John T.
Wodder II]
- Make the sections numbered again. [John T. Wodder II]
- Add section headers for each class in the API docs. [John T. Wodder
II]
- Split up documentation into multiple pages. [John T. Wodder II]
- Added virtualenv usage to Makefile. [Sorin Sbarnea]
- Sorted the project name duplication error with the tests. [Sorin
Sbarnea]
- Simplified setup Exception code in tests. [Sorin Sbarnea]
- Attempt to keep py26 compatibility. [Sorin Sbarnea]
- Log JiraError details on console for Travis. [Sorin Sbarnea]
- Removed requests-kerberos requirements as it was breaking docs. [Sorin
Sbarnea]
- Fixed assert in test_search_users_maxresults. [Sorin Sbarnea]
- Updated and moved requirements into one place. [Sorin Sbarnea]
- Ci maintenance. [Sorin Sbarnea]
- Merge branch 'develop' of github.com:pycontribs/jira into develop.
[Sorin Sbarnea]
- Update index.rst. [Daniel Jonsson]
- Added requires.io badge. [Sorin Sbarnea]
- Resolved #137 by removing the check for project key from the client
app. [Sorin Sbarnea]
- Switched to local travis_after_all.py. [Sorin Sbarnea]
- Flake8 fixes. [Sorin Sbarnea]
- Travis: Remove `on` inside afte_deploy as is not supported. [Sorin
Sbarnea]
- Fixed two broken tests and many other warnings. [Sorin Sbarnea]
- Attempt to fix travis publishing and the missing URLs for the uploaded
releases. Also should start uploading dev release to pypitest. [Sorin
Sbarnea]
- Allows us to call delete_project() with Project object instance.
[Sorin Sbarnea]
- Experimental change for testing error handling. [Sorin Sbarnea]
- Fixed linting and enabled build of develop branch pn travis. [Sorin
Sbarnea]
- Switched to smart versioning for develop branch. [Sorin Sbarnea]
- Added docs badge. [Sorin Sbarnea]
- Flake8 fixes (lots) [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- Add missing issues report methods. [Lionel Cuevas]
- Used to get xml in response to backup progress, now getting json. [Guy
Matz]
- Added functionality for backing up from Cloud version. [Guy Matz]
- Tried to make release 1.0.6. [Sorin Sbarnea]
- Improved release.sh. [Sorin Sbarnea]
1.0.4 (2016-03-16)
------------------
- Remove wrong parameter in release.sh. [Sorin Sbarnea]
- Test rsa key. [Sorin Sbarnea]
- Adds support for Kerberos auth. [Tuukka Mustonen]
- Changed linkId to id for consistency. [bakkeby]
- Correcting tabs vs spaces. [bakkeby]
- Adding functionality to allow deletion of issue links. [bakkeby]
- Updated PyCharm logo as they also removed the old one when they
rebranded it. [Sorin Sbarnea]
- Resolves issue where incompleted_issues() was failing for missing key;
'incompletedIssues' corrected to 'issuesNotCompletedInCurrentSprint'
[casahome2000]
- Configured minimal versions for pep8 related packages. [Sorin Sbarnea]
- Fixed the version check for invalid request. [Sorin Sbarnea]
- Logged the initial JSON response for templates when they do not
contain the expected format. This should help us identify what happens
while running tests on Travis. [Sorin Sbarnea]
- Changed api version calls to use "latest" instead of 2. [Sorin
Sbarnea]
- Should fix the inconsistent failures with watchers tests. [Sorin
Sbarnea]
- Swiched back to the use of logging module directly instead of a
variable. [Sorin Sbarnea]
- Implemented a special retry mechanism for serverInfo REST call in
order to workaround bug https://jira.atlassian.com/browse/JRA-59676.
[Sorin Sbarnea]
- Repaired delete_project() as it seems not to be working on JIRA 6.x.
[Sorin Sbarnea]
- Fixed few others broken unittests. [Sorin Sbarnea]
- Reworked the way we log warnings and errors, now we use the named
logger "jira". [Sorin Sbarnea]
- Removed duplicate python versions from setup.py. [Sorin Sbarnea]
- Removed pypi version badge as is useless. [Sorin Sbarnea]
- More unittest fixes, now they should finally pass after months of
having many of them broken. [Sorin Sbarnea]
- Implemented __eq__ for Version resource. [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- Request JSON payloads to avoid the problem described in
https://jira.atlassian.com/browse/JRA-38551. [Vladimir Vysotsky]
- Badge cleanup. [Daniel Lawrence]
- Fixed many of the broken unittests. Disabled some uneeded logging for
running unittests. [Sorin Sbarnea]
- Assign_issue() now returns errors. [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- (Minor) Fix UniversalResourceTests.test_pickling_resource() - Work
with the raw dict instead of pickling the whole resource and running
into issues with PropertyHolder. [Sham Chukoury]
- (#158) Fix initialisation of resources.Issue when raw is passed in.
[Sham Chukoury]
- Fix conflict markers from merge. [Achim Herwig]
- Fixed problems found during tests execution. [Paweł Stankowski]
- Merge branch 'pr/147' [Sorin Sbarnea]
- Merge branch 'master' into pr/147. [Sorin Sbarnea]
- Exclude tests working with users - not understood why they fail now.
[Achim Herwig]
- Skip tests that rely on specifics of the standard Jira if a non-
standard Jira is used. [Achim Herwig]
- Add correct treatment of "issuetype" parameter. [Achim Herwig]
- Fix whitespace and allow for python3. [Achim Herwig]
- Fix call of Resource._get_url(). [Achim Herwig]
- Adapt project template search to new structure. [Achim Herwig]
- Clean up string detection: string_types. [Fil Mackay]
- Remove superfluous self parameter. [Fil Mackay]
- Fixed bugs found in new JIRA API. [Paweł Stankowski]
- Linting plus initial work on enabling local testing using the
atlassian-sdk. [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- Do not run prerelease as part of the standard test run. Instead run it
after inside after_success. [David Black]
- Add new option 'agile_rest_path', which may be used to select new
public JIRA Agile API. [Paweł Stankowski]
- Small improvements. [Paweł Stankowski]
- Added JIRA._fetch_pages function and used it in all functions using
pagination and extended ResultList class. [Paweł Stankowski]
- Fix setup.py's setup_requires and requirements.txt. [Shatil Rafiullah]
- Update release.sh. [cgrandsjo]
- Added type hints to Issue class. [Paweł Stankowski]
- Move optional filemagic line to requirements-opt. [Shatil Rafiullah]
- Do not try to recover if we're not going to do the retry. [Alek
Mierzwicki]
- Gh-global-rank field is obsolete. [Josh Friend]
- Ensure JIRA class has _rank field. [Josh Friend]
- Restore missing delay in ResilientClient and & implement exponentional
backoff. [Nick Baggott]
- Cover python 3.5. [Fil Mackay]
- Py3 compatible string test. [Fil Mackay]
- Redundant if test in split. [Fil Mackay]
- Test for clauseNames presence. [Fil Mackay]
- Items for py3 compat. [Fil Mackay]
- Added option for ignoring existing users on user_add. [Sorin Sbarnea]
1.0.3 (2015-10-11)
------------------
- Fix #93: ability to retrieve custom fields by their JQL names. [Sorin
Sbarnea]
- Websudo fix when used with .netrc files. [Sorin Sbarnea]
- Added support for the type parameter on create_project, as this is
required for JIRA 7. [Sorin Sbarnea]
- Moved JIRAError to exceptions. [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- Issue 118 Add ability to send email notification when creating a new
user. [Chris Kast]
- Merge branch 'release/1.1.0-1' [Jason Dugdale]
- HOTFIX in test; pass two elements into set properly. [Jason Dugdale]
- Merge tag '1.1.0' into develop. [Jason Dugdale]
- Merge branch 'release/1.1.0' [Jason Dugdale]
- Add __hash__ and __eq__ methods to User class to allow user objects to
be added to a Set correctly. [Jason Dugdale]
- Fixup: Correctly cope with Requests object truthiness... [Daniel
Fortunov]
- Bugfixes for ResilientSession retry logic. [Daniel Fortunov]
- Moved raise_on_error to resilientsession. [Sorin Sbarnea]
- Documentation improvements, fixed one test. [Sorin Sbarnea]
- Fixed #123 by enabling change of sprint state. [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- Python > 3.1 do not need `ordereddict` package. [Alex Turbov]
- Removed dead code. [Sorin Sbarnea]
- Issue 112 - sendEmail kwarg doesn't work when calling add_user method.
[Chris Kast]
- Minor fixes to jirashell issues #100, #102, and #66, and tweaks fix
from d5856742771890ad18165197f6bc7eb3ff8cd086. The oauth_dance and
print_tokens options specified in jirashell.ini configuration file are
now correctly parsed as boolean values and OAuth with pre-
authenticated access_token and access_token_secret (skipping
oauth_dance) is fixed. OAuth options are now minimally validated for
completeness, so #66 is fixed, allowing for basic_auth without causing
issue #102 as the merged commit
d5856742771890ad18165197f6bc7eb3ff8cd086 did previously. [Milo
Minderbinder]
- Merge remote-tracking branch 'upstream/master' [Milo Minderbinder]
- Fix issue #100 - The problem is that 'oauth_dance' should be an
optional option argument, if it is not set, or if it is set to false,
a valid use case still exists where OAuth should be used if the user
supplies access_token and access_token_secret through command line or
configuration file options. This would be the case if the user had
already authenticated externally with OAuth and had valid,
authenticated tokens to pass to jirashell. [Milo Minderbinder]
- Attempt to fully automate the release and tagging of git based on what
is released. [Sorin Sbarnea]
- Change test to use simple regex. [Danny Cheung]
- Update self.issue_1.key to self.issue_1. [Danny Cheung]
- Update test and assert to use arrays. [Danny Cheung]
- Add unit test for adding issue to sprint. [Danny Cheung]
- Refactor method of retrieving custom field info. [Danny Cheung]
- Perform dynamic lookup of custom field id for Sprint field. [Danny
Cheung]
- Workaround for adding an issue to a sprint. [Danny Cheung]
- Fixed #88 so now groups are returned as a sorted list of strings.
[Sorin Sbarnea]
1.0.1 (2015-07-15)
------------------
- Attempt to fully automate the release and tagging of git based on what
is released. [Sorin Sbarnea]
0.50 (2015-07-15)
-----------------
- Enabled new travis builders as we do not need sudo. Fixed iteritems()
which doesn't work anymore with py34. Increased version to v0.50.
[Sorin Sbarnea]
0.49 (2015-07-15)
-----------------
- Attempt to fix the unittest and to eliminate warnings from the test
executions. [Sorin Sbarnea]
- Merge branch 'coddingtonbear-allow_remotelinks_if_no_applicationlinks'
[Sorin Sbarnea]
- Merge branch 'allow_remotelinks_if_no_applicationlinks' of
https://github.com/coddingtonbear/jira into coddingtonbear-
allow_remotelinks_if_no_applicationlinks. [Sorin Sbarnea]
- Minor change to cause a new build to be triggered. [Adam Coddington]
- Don't always set oauth flag, to prevent oauth mode from always being
enabled, even if basic auth is requested. [Matthew Gabeler-Lee]
- Fix jirashell.py for non-oauth authentication. [Daniel Fortunov]
- Merge branch 'awurster-patch-1' [Sorin Sbarnea]
- Merge branch 'patch-1' of https://github.com/awurster/jira into
awurster-patch-1. [Sorin Sbarnea]
- Adding add_simple_link() [Andrew Wurster]
- Fix JIRAError to correctly include full details. [Daniel Fortunov]
- Merge branch 'fastcat-issue-65' [Sorin Sbarnea]
- Merge branch 'issue-65' of https://github.com/fastcat/jira into
fastcat-issue-65. [Sorin Sbarnea]
- Add support to Issue.update to use the update key, and make some
common forms of updates easier. [Matthew Gabeler-Lee]
- Merge branch 'fikander-master' [Sorin Sbarnea]
- Merge branch 'master' of https://github.com/fikander/jira into
fikander-master. [Sorin Sbarnea]
- Includes are now relative to jira package. [Tomasz Kustrzynski]
- Added myself AIP support. [Tomasz Kustrzynski]
- JWT authentitcation support for Atlassian Connect. [Tomasz
Kustrzynski]
- Jirashell configured via jirashell.ini didn't allow no-oauth
authentication. [Tomasz Kustrzynski]
- Fill in the current maintainer information. [David Black]
- Merge branch 'geoghegan-patch-1' [Sorin Sbarnea]
- Merge branch 'patch-1' of https://github.com/geoghegan/jira into
geoghegan-patch-1. [Sorin Sbarnea]
- Honor fullname arg in add_user. [Nick Geoghegan]
- Merge branch 'tuenti-master' [Sorin Sbarnea]
- Merge branch 'master' of https://github.com/tuenti/jira into tuenti-
master. [Sorin Sbarnea]
- Add update_filter to client. [Oscar]
- JIRA Issue 80 - delete project fails to delete. [Martin Proffitt]
- Fixed naming error in the documentation. [Thorsten Heymann]
- Add attachment content streaming. [Ian Unruh]
- Make `python setup.py test` work without first needing to install any
dependencies. [David Black]
0.48.1 (2015-04-23)
-------------------
- Bumping patch version number to 0.48.1. [Adam Coddington]
- Do not prevent users from adding remote links if we are not able to
fetch applicationlinks. [Adam Coddington]
- Fixed mimetype issue with Jira attachment. MultipartEncoder sent
attachment in 'text/plain' mode which caused issues with pdf files.
See images 3 images from images directory, after the change, mimetype
was identified correctly. [Vesa Laakso]
- Now travis should publish both sdist and wheel. Also included
changelist. [Sorin Sbarnea]
0.48 (2015-04-14)
-----------------
- Attempt to appease Travis. [Josh Tilles]
- Restore issue transitions by fixing some flubs. [Josh Tilles]
0.47 (2015-04-11)
-----------------
- Increaded version to 0.47. [Sorin Sbarnea]
- Implemented worklog tests and fixed worklog and timetracking. [Sorin
Sbarnea]
- Now Travis should release only if all jobs do succeed. [Sorin Sbarnea]
- Sorted the decoding of the json response. [Sorin Sbarnea]
- Increased version number to v0.45 but in the future this should be
done automatically on each release. [Sorin Sbarnea]
- Minor Travis fix for py3 build. [Sorin Sbarnea]
- Removed the pretest phase as now everyone should be able to run the
tests. [Sorin Sbarnea]
- Implemented a prerelease stage that will prevent running the tests on
travis for already released versions. This is needed in order to
enable future automatic releases. [Sorin Sbarnea]
- Fix for #28 : broken permalinks. [Sorin Sbarnea]
- Removed the secured credentials from Travis because they do not work
with pull requests. See http://docs.travis-ci.com/user/pull-requests/
From now on everybody should be able to run the tests, lets hope that
the OnDemand server will be able to cope with the tests. [Sorin
Sbarnea]
- Validated .travis.yml. [Sorin Sbarnea]
- Fix #38 so the code will also work with PyInstaller. [Sorin Sbarnea]
- Workaround for py34 weakref issue from
https://github.com/kennethreitz/requests/issues/2303. [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- Fix atlassian header. [bruno-mendes-movile]
- Added Citrix to credits, changed default documentation theme and
documented the BountySource usage. [Sorin Sbarnea]
- Bugfix in Travis config file which seems not to fail fast on multiple
script commands. [Sorin Sbarnea]
0.43 (2015-03-31)
-----------------
- V0.43 release which fixes pickle bug. [Sorin Sbarnea]
- #46 Experimental drop of custom getstate/setstate in Resource that was
preventing Pickle from restoring the objects properly (_options).
[Sorin Sbarnea]
- Added sdist to release. [Sorin Sbarnea]
0.42 (2015-03-31)
-----------------
- Commented `git add RELEASE` [Sorin Sbarnea]
- V0.42 minor fix regarding release script tagging. [Sorin Sbarnea]
- Added flattr button. [Sorin Sbarnea]
- Allow OAuth dance to ignore ssl certificate. [Dave Collins]
- V0.41 that enabled new unitises and fixes #44.
- V0.40 - new release with small bug fixes. [Sorin Sbarnea]
- Added an exception in case the just added attachment has size=0 so we
can debug the weird case of empty attachments. [Sorin Sbarnea]
- Marked the pickle test as xfail and some pep8. [Sorin Sbarnea]
- Update client.py. [Fabio Oliveira Silva]
- Update client.py. [Fabio Oliveira Silva]
- Finished initial baseline label test. Added test for issue #32 that
looks for an exception from a bad label with spaces. [Matt Studley]
- Added initial label unit test. [Matt Studley]
- Merge branch 'master' of https://github.com/pycontribs/jira. [Mark
LaPerriere]
- Issue add_field_value should use Resource update function.
[marcelslotema]
- Raise an AttributeError if a requested attribute doesn't exist within
self or self.raw. This is a bug fix to ensure calls to hasattr return
false when the attribute doesn't exist. [bardal]
- No need to take the tuple lookup hit with one item. [Mark LaPerriere]
- Make it more clear about what we're doing to support pickling. [Mark
LaPerriere]
- Add tests for pickling resources. [Mark LaPerriere]
- Enabling the pickling of resources. [Mark LaPerriere]
- V0.39: minor bug fixings. [[email protected]]
- Merge branch 'master' of github.com:pycontribs/jira.
- Update client.py. [Fabio Oliveira Silva]
- Fixing #23 bug: startDate in create_version()
- Corrected source URL inside the documentation. [Sorin Sbarnea]
- Updated the link to documentation. [Sorin Sbarnea]
- Removed upload_sphinx from release. [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- Update index.rst. [bardal]
- V0.38 which should work well on intranets. [Sorin Sbarnea]
- Now the version check should take up to 2 seconds and should not
prevent loading if it fails. [Sorin Sbarnea]
- V0.37 release. [Sorin Sbarnea]
- Fixed error with last merge. [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira into
sargentstudley-add_user. [Sorin Sbarnea]
- Give users ability to disable update check. [Nicholas Jones]
- Merge branch 'sargentstudley-add_user' of github.com:pycontribs/jira
into sargentstudley-add_user. [Sorin Sbarnea]
- Merge branch 'add_user' of https://github.com/sargentstudley/jira into
sargentstudley-add_user. [Sorin Sbarnea]
- Merge branch 'add_user' of https://github.com/sargentstudley/jira into
sargentstudley-add_user. [Sorin Sbarnea]
- - Added tests to flesh out User and Group CRUD operations. - Added
add_group method to client. - Added remove_group method to client. -
Rewrote add_user_to_group to use REST API - Added
remove_user_from_group to client. [Matt Studley]
- Removed a test that is not needed anymore. [Sorin Sbarnea]
- Repaired 3 additional tests. [Sorin Sbarnea]
- Added the first tests for JIRA Agile. Also this should fix the
Issue.update() [Sorin Sbarnea]
- Deprecated GreenHopper class and moved all methors into JIRA. Other
plugins should use the mixin pattern to add their methods. [Sorin
Sbarnea]
- Allowing to pass Issue() instances instead of id/keys to issue()
[Sorin Sbarnea]
- Optimized the check_update code so it checks version only once. Fixed
the comments tests. [Sorin Sbarnea]
- Py26 and py3 compatibility updates. [Sorin Sbarnea]
- Changed the way we load the version in setup.py in order to properly
perform coverage. Also added fallback on add_attachment for the case
where we do not have the filestreamer module. [Sorin Sbarnea]
- Added ordereddict dependency that is required for py26 compatibility
improved the random password complexity to avoid falure from server
side. [[email protected]]
- Changed number of retries to 5 unless jira is running on localhost,
when it will use 1. [[email protected]]
- Merge branch 'master' of github.com:pycontribs/jira.
- Fix resource _load incorrect argument. [Oleksandr Allakhverdiyev]
- Pep8. [[email protected]]
- This should fix UserAdministrationTests and make them run on Travis
too. [[email protected]]
- Merge remote-tracking branch 'upstream/master' into add_user. [Matt
Studley]
- Attempt to improve the retry mechanism. Will default to 3 for normal
usage and 10 for running the tests. [Sorin Sbarnea]
- Reworked tests of votes so they should not randomly fail anymore.
[Sorin Sbarnea]
- Fixed failure of add_attachment test when using retry was triggered.
This was caused by the file stream. Now it will get a new file stream
if the initial post fails. [Sorin Sbarnea]
- - Created unit test class for user administration - Created add_user
unit test. [Matt Studley]
- Fixed create_issue() which was broken due to project being passed
wrongly. [Sorin Sbarnea]
- Increased verbosity in order to debug some CI failings. [Sorin
Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- Fix ResourceLeak warning with CPython3. [Vadim Markovtsev]
- Updated tests to prevent failure to upload attachment with Python 3.
[Sorin Sbarnea]
- Now HTTP codes 502,503,504 do retry. [Sorin Sbarnea]
- Configured default max_retries to 3. [Sorin Sbarnea]
- Fixed add_attachments which now is able to stream the files,
preventing size limitation bugs. [Sorin Sbarnea]
- Improved tests. [Sorin Sbarnea]
- Improved tests. [Sorin Sbarnea]
- README.rst: syntax highlighting. [Marc Abramowitz]
- README.rst: Make valid on PyPI. [Marc Abramowitz]
- README.rst: Double back quotes, fix links. [Marc Abramowitz]
- Added a new test for failed authentication Made test_attachment more
verbose Added export of coverage data into xml format. [Sorin Sbarnea]
- Implemented travis_after_all so we release only once. [Sorin Sbarnea]
- Test changes towards getting them passing on Travis too. [Sorin
Sbarnea]
- Additional travis compatibility changes. [Sorin Sbarnea]
- Additional travis compatibility changes. [Sorin Sbarnea]
- Additional travis compatibility changes. [Sorin Sbarnea]
- Additional travis compatibility changes. [Sorin Sbarnea]
- Disabled xdist plugin in order to execute on travis. [Sorin Sbarnea]
- Major changes to unittests in order to make them pass on Travis.
[Sorin Sbarnea]
- Added new icons to README page. [Sorin Sbarnea]
- Autopep8. [Sorin Sbarnea]
- Merge branch 'master' of bitbucket.org:bspeakmon/jira-python. [Sorin
Sbarnea]
- Merged in taquart/jira-python/taquart/fixing-the-commentupdate-
example-1420064736261 (pull request #73) [Sorin Sbarnea]
- Fixing the comment.update() example. [taquart]
- Merged in rowanthorpe/jira-python/fix-configparser-to-match-v3-import
(pull request #71) [Sorin Sbarnea]
- Fix configparser usage to match v3-compat import. [Rowan Thorpe]
- Merged in evers/jira-python (pull request #72) [Sorin Sbarnea]
- Fix issue.add_field_value, fixes #144. [Ronald Evers]
- Dont forget raise_on_error if not autofixing. [Ronald Evers]
- Merged in franciscoruiz/jira-python/franciscoruiz/removed-print-
statement-from-greenhopper-1417788172609 (pull request #69) [Sorin
Sbarnea]
- Removed 'print' statement from Greenhopper.sprints_by_name. [Fran
Ruiz]
- Merged in mejoe/jira-python/completed_points (pull request #68) [Sorin
Sbarnea]
- Add sum of completed issues for a board/sprint. [Joe McBride]
- Merged in simonventuri/jira-python/yosemite-six-fix (pull request #66)
[Sorin Sbarnea]
- Fix html_parser import from six.moves. [Simon Venturi]
- Merged in misa/jira-python (pull request #62) [Sorin Sbarnea]
- Add a fields keyword arg; regular keyword arguments will take
precedence. [Mihai Ibanescu]
- Reverting commit 5f4c4a4, added an update method for Comment for fix
#53. [Mihai Ibanescu]
- Merged in rmelhem/jira-python (pull request #67) [Sorin Sbarnea]
- Added support for client-side SSL with HTTP-Basic session. [Rafic
Melhem]
- Merged in bunkerbewohner/jira-python (pull request #63) [Sorin
Sbarnea]
- Bugfix of KeyError in JIRA.add_remote_link during check of application
links. [Mathias Kahl]
- Merged in rawfalafel/jira-python/fix/validate-search-query (pull
request #61) [Sorin Sbarnea]
- Add option to disable query validation. Part of the REST api.
[rawfalafel]
- Fixing #53 Unable to update a comment. [[email protected]]
- Fix for #112 : added startDate, released and archived to
create_version() [[email protected]]
- Fixed #96 by documenting how to update components.
- Fixing #81 by removing requests_oauth from the package.
- Fixing #61 - documenting how to get support on jira-python.
- Assured that RELEASE file that contains the changelog is updated when
making new releases. [[email protected]]
- Added upload_docs and switch to usage of default GPG signature. [Sorin
Sbarnea]
- Added wheel deployment. [Sorin Sbarnea]
0.33 (2015-01-05)
-----------------
- Removal of gevents as it is incompatible with Python 2.7.8 and because
we can use requests threading for the same purpose. [Sorin Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira.
- Navicat does not have https (sic!) :) [Sorin Sbarnea]
- Updated image links. [Sorin Sbarnea]
- Updated Navicat Logo. [Sorin Sbarnea]
- Update README.rst. [Sorin Sbarnea]
- Update README.rst. [Sorin Sbarnea]
- Fixes #2. [Gervasio Marchand]
- Implemented username rename for JIRA 6.0.0+ [[email protected]]
0.32 (2014-09-17)
-----------------
- V0.32 is fixing #132 decoding errors on several cases, cased by the
wrong usage of response.content instead of response.text, first one
being binary. [[email protected]]
- Pep8 tests still not working. [Bogdan Marchis]
- Pep8 moved to setup.cfg few other fixes, should pass pep8 now. [Sorin
Sbarnea]
- Merge branch 'master' of github.com:pycontribs/jira. [Sorin Sbarnea]
- Removed pep8 from test cases. [Bogdan Marchis]
- V0.31 merge with bitbcket copy. [Sorin Sbarnea]
- Pep8 work + forced py.test to run on single thread. [Sorin Sbarnea]
- All the tests are now generic. [Bogdan Marchis]
- Run tests from UserTests. [Bogdan Marchis]
- Run job only with the class SearchTests. [Bogdan Marchis]
- Added a few tests from ProjectTests. [Bogdan Marchis]
- Generalised a few other tests. [Bogdan Marchis]
- Another run. [Bogdan Marchis]
- Add_worklog does not work for python2.6. [Bogdan Marchis]
- One more run. [Bogdan Marchis]
- Run again without IssuesTests. [Bogdan Marchis]
- Added general tests for IssueTests. [Bogdan Marchis]
- Tests for travis. [Bogdan Marchis]
- General tests for filters. [Bogdan Marchis]
- Some changes for general projects. [Bogdan Marchis]
- Probably fixing CI with jenkins. [[email protected]]
- Added travis_wait. [[email protected]]
- All working for python2.7 (for the moment) [Bogdan Marchis]
- Updated tests for the new added projects. [Bogdan Marchis]
- Pep8 + added py34 in addition to py33, one of them must be tested.
- Made autopep8 optional. [[email protected]]
- Removed --upgrade from pip install. [[email protected]]
- Reorganized requirements, hoping to make the test easier and also to
reduce dependencies for installations. [[email protected]]
- Added timeouts to curl, should fix the travis issue, hopefully.
- Removed -n4 from tox until we find a solution for working with
fixtures with multiple threads, seems to be a design limitation with
py.test. [[email protected]]
- Added all the tests appart from 3 for which I don't have enough
permissions and those from remote_link. [Bogdan Marchis]
- Added tests from VersionTests. [Bogdan Marchis]
- Added tests from UserTests. [Bogdan Marchis]
- Added tests from ProjectTests. [Bogdan Marchis]
- Added 3 new classes. [Bogdan Marchis]
- Tests from Issue tests are now working. [Bogdan Marchis]
- Fixed some other test cases. [Bogdan Marchis]
- Other 15 test cases are working. [Bogdan Marchis]
- Tests for classes ResourceTest and ApplicationPropertiesTest are now
working. [Bogdan Marchis]
- Merge branch 'master' of github.com:pycontribs/jira.
- Merge branch 'master' of github.com:pycontribs/jira. [Bogdan Marchis]
- Some working tests from UniversalResourceTests. [Bogdan Marchis]
- ZZF-15731 #comment this should end-up in jira.
- Fix for test_issue_link(self) faild build #18.3.
- Fixed test_issue_link() [[email protected]]
- Merge commit 'ab39b68245a551d613aeeb1e9177248b67797a31'
- Updated user prefix. [Bogdan Marchis]
- Tests cleanup, enabled py34 in travis, added pretest before running
tests. [[email protected]]
- Merge branch 'master' of github.com:pycontribs/jira.
- Logging improvement, corrected doc build via tox, probably fixed a
deadlock with running unittests in parallel. [[email protected]]
- Logging improvement, corrected doc build via tox, probably fixed a
deadlock with running unittests in parallel. [[email protected]]
- Removed logging and fixed the test manager class.
- Added debug code for Travis failure as we were not able to replicate
same failure locally. [[email protected]]
- Disabled kill session for the moment as it seems to cause some strange
errors with unittests. [[email protected]]
- Added logging of fatal exceptions when initializing unit tests.
- Repairing unittests. [[email protected]]
- Repaired project create. [[email protected]]
- V0.29 added delete_board() [[email protected]]
- Fixed broken images. [[email protected]]
- CI enablement work. [[email protected]]
- Merge branch 'master' of github.com:pycontribs/jira.
- Update README. [Sorin Sbarnea]
- Added creatation time to log_work, documented accetable values for
assign_issue, converted few prints to use the logger.
- V0.28 fixed critial bug related tu unicode support (type(str(..))) and
initial work for enabling continous-integration with Travis and the
Atlassian provided on-demand JIRA test instance.