forked from openshift/rhc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.spec
More file actions
3584 lines (3183 loc) · 169 KB
/
client.spec
File metadata and controls
3584 lines (3183 loc) · 169 KB
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
%define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
%define gemversion %(echo %{version} | cut -d'.' -f1-3)
Summary: OpenShift client management tools
Name: rhc
Version: 1.11.2
Release: 1%{?dist}
Group: Network/Daemons
License: ASL 2.0
URL: http://openshift.redhat.com
Source0: rhc-%{version}.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: ruby >= 1.8.5
BuildRequires: rubygems
Requires: ruby >= 1.8.5
Requires: rubygem-parseconfig
Requires: rubygem-httpclient
Requires: rubygem-test-unit
Requires: rubygem-net-ssh
Requires: rubygem-archive-tar-minitar
Requires: rubygem-commander
Requires: rubygem-open4
Requires: git
%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7
Requires: rubygem-net-ssh-multi
%endif
Obsoletes: rhc-rest
Provides: rubygem-rhc
BuildArch: noarch
%description
Provides OpenShift client libraries.
%prep
%setup -q
%build
for f in bin/rhc*
do
ruby -c $f
done
for f in lib/*.rb
do
ruby -c $f
done
%install
pwd
rm -rf $RPM_BUILD_ROOT
mkdir -p "$RPM_BUILD_ROOT/usr/share/man/man1/"
mkdir -p "$RPM_BUILD_ROOT/usr/share/man/man5/"
for f in man/*
do
len=`expr length $f`
manSection=`expr substr $f $len $len`
cp $f "$RPM_BUILD_ROOT/usr/share/man/man${manSection}/"
done
mkdir -p $RPM_BUILD_ROOT/etc/openshift
if [ ! -f "$RPM_BUILD_ROOT/etc/openshift/express.conf" ]
then
cp "conf/express.conf" $RPM_BUILD_ROOT/etc/openshift/
fi
LC_ALL=en_US.UTF-8
# Package the gem
gem build rhc.gemspec
mkdir -p .%{gemdir}
# Ignore dependencies here because these will be handled by rpm
gem install --install-dir $RPM_BUILD_ROOT/%{gemdir} --bindir $RPM_BUILD_ROOT/%{_bindir} --local -V --force --rdoc --ignore-dependencies \
rhc-%{version}.gem
# Copy the bash autocompletion script
mkdir -p "$RPM_BUILD_ROOT/etc/bash_completion.d/"
cp autocomplete/rhc_bash $RPM_BUILD_ROOT/etc/bash_completion.d/rhc
cp LICENSE $RPM_BUILD_ROOT/%{gemdir}/gems/rhc-%{version}/LICENSE
cp COPYRIGHT $RPM_BUILD_ROOT/%{gemdir}/gems/rhc-%{version}/COPYRIGHT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc LICENSE
%doc COPYRIGHT
%{_bindir}/rhc
%{_mandir}/man1/rhc*
%{_mandir}/man5/express*
%{gemdir}/gems/rhc-%{version}/
%{gemdir}/cache/rhc-%{version}.gem
%{gemdir}/doc/rhc-%{version}
%{gemdir}/specifications/rhc-%{version}.gemspec
%config(noreplace) %{_sysconfdir}/openshift/express.conf
%attr(0644,-,-) /etc/bash_completion.d/rhc
%changelog
* Tue Jul 02 2013 Adam Miller <admiller@redhat.com> 1.11.2-1
- Add net-ssh-multi as dependency on F19+ (kraman@gmail.com)
- Bug 978837 - Don't show stack trace if --ssh executable not found
(andy.goldstein@redhat.com)
- Webmock 1.12 breaks query parameter compatibility, can't dupe Symbol/Fixnum
when it tries to match a request signature. Lock to < 1.12 for now.
(ccoleman@redhat.com)
- fix typos (dmcphers@redhat.com)
* Tue Jun 25 2013 Adam Miller <admiller@redhat.com> 1.11.1-1
- bump_minor_versions for sprint 30 (admiller@redhat.com)
* Mon Jun 24 2013 Adam Miller <admiller@redhat.com> 1.10.6-1
- Merge pull request #411 from
smarterclayton/bug_976682_overly_aggressive_check_in_rhc
(dmcphers+openshiftbot@redhat.com)
- Display empty lines with prefix from ssh (ccoleman@redhat.com)
- Bug 976682 - Check for web carts was too aggressive (ccoleman@redhat.com)
* Thu Jun 20 2013 Adam Miller <admiller@redhat.com> 1.10.5-1
- Merge pull request #408 from anthonyfok/ask_password_chomp
(dmcphers+openshiftbot@redhat.com)
- Prevent ask_password from stripping whitespace (Take 2)
(anthony.t.fok@gmail.com)
* Wed Jun 19 2013 Adam Miller <admiller@redhat.com> 1.10.4-1
- Modify rhc ssh command to reject --limit values of < 1 (hripps@redhat.com)
- Merge pull request #407 from
smarterclayton/bug_965804_display_results_from_remove_cart
(dmcphers+openshiftbot@redhat.com)
- Bug 965804 - Display results when a cartridge or application is removed
(ccoleman@redhat.com)
* Tue Jun 18 2013 Adam Miller <admiller@redhat.com> 1.10.3-1
- Bug 975410 - rhc ssh limit option failing (jforrest@redhat.com)
* Mon Jun 17 2013 Adam Miller <admiller@redhat.com> 1.10.2-1
- Merge pull request #404 from smarterclayton/parallel_commands
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #401 from liggitt/bug_971328_results_messages
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #402 from jwforres/bug_974439_rhc_subcommand_with_dash
(dmcphers+openshiftbot@redhat.com)
- Review comments (ccoleman@redhat.com)
- Run in order on Ruby 1.8.7 (ccoleman@redhat.com)
- Merge pull request #405 from
jwforres/bug_974381_cartlist_verbose_missing_asterisk
(dmcphers+openshiftbot@redhat.com)
- Add spec test for various results messages formats (jliggitt@redhat.com)
- Bug 974439 - add testcase (jforrest@redhat.com)
- Bug 974381 - review feedback (jforrest@redhat.com)
- Bug 974381 - cartridge list -v missing asterisk on carts with usage cost
(jforrest@redhat.com)
- Bug 974439 - review feedback (jforrest@redhat.com)
- Missing coverage, better output handling (ccoleman@redhat.com)
- Bug 969390 - Only full stop triggers message (ccoleman@redhat.com)
- Implement a parallel SSH command helper 'rhc ssh --gears' which executes a
command against all gears of an app. Implement a quota display for 'rhc show-
app --gears quota' (ccoleman@redhat.com)
- When rounded, certain table cells can get extra whitespace
(ccoleman@redhat.com)
- Bug 974439 - fix rhc help issues (jforrest@redhat.com)
- Fix bug 971328 - new results message format (jliggitt@redhat.com)
- Merge pull request #400 from
smarterclayton/bug_963985_overhaul_rhc_app_create_output
(dmcphers+openshiftbot@redhat.com)
- Allow RHC extended to run. (ccoleman@redhat.com)
- Review feedback (ccoleman@redhat.com)
- Merge pull request #399 from smarterclayton/issue_390_handle_no_proxy
(dmcphers+openshiftbot@redhat.com)
- Ensure the return value is correct in Ruby 1.8.7 (ccoleman@redhat.com)
- Fix Ruby 1.8.7, test equality of strings (ccoleman@redhat.com)
- Bug 963985 - Overhaul how RHC app-create generates output
(ccoleman@redhat.com)
- Support NO_PROXY by defaulting to httpclient's support. This means non-
qualified URIs are no longer supported. (ccoleman@redhat.com)
- Added optional command argument to 'rhc app ssh' so you can run a command,
for example: (andy.goldstein@gmail.com)
- Updating RHC tests to work with F19 cartridge versions. Add psych as optional
gem dependency used only on F19 systems (kraman@gmail.com)
- Merge pull request #396 from smarterclayton/allow_direct_scale_value
(dmcphers+openshiftbot@redhat.com)
- Allow users to specify a direct scale value with rhc scale-cartridge php 5
(sets min and max) (ccoleman@redhat.com)
- Bug 970028 - Handle empty rows (ccoleman@redhat.com)
- Give users a warning about scaling being a long running operation, and an
additional bit of info on receive timeouts from set scale Handle ECONNRESET
Suppress incorrect warning about downloaded cart on post-install operations
(ccoleman@redhat.com)
* Thu May 30 2013 Adam Miller <admiller@redhat.com> 1.10.1-1
- bump_minor_versions for sprint 29 (admiller@redhat.com)
* Wed May 29 2013 Adam Miller <admiller@redhat.com> 1.9.6-1
- Merge pull request #393 from liggitt/bug_965923_trap_supported_signals
(dmcphers+openshiftbot@redhat.com)
- Fix bug 965923 - only trap PIPE if supported (jordan@liggitt.net)
- Merge pull request #392 from
liggitt/bug_967683_delete_domain_is_case_sensitive
(dmcphers+openshiftbot@redhat.com)
- Fix bug 967683 - make domain id matching case-insensitive
(jliggitt@redhat.com)
* Tue May 28 2013 Adam Miller <admiller@redhat.com> 1.9.5-1
- Fix bug 965923 - only trap supported signals (jliggitt@redhat.com)
* Thu May 23 2013 Adam Miller <admiller@redhat.com> 1.9.4-1
- Handle empty http proxy (ccoleman@redhat.com)
* Mon May 20 2013 Dan McPherson <dmcphers@redhat.com> 1.9.3-1
- Check for ENV presence (ccoleman@redhat.com)
- Support OPENSHIFT_CONFIG, which is the name of a file in the config directory
to load. Switch to using a centralized debug output mechanism vs. individual
classes caring. (ccoleman@redhat.com)
- Merge pull request #387 from
smarterclayton/string_format_cant_align_ansi_sequences
(dmcphers+openshiftbot@redhat.com)
- String ansi sequences aren't properly aligned by string format - revert to
doing it ourselves (ccoleman@redhat.com)
- Add downloadable cart info to RHC (ccoleman@redhat.com)
* Thu May 16 2013 Adam Miller <admiller@redhat.com> 1.9.2-1
- Bug 963419 - Don't check API versions, check client links
(ccoleman@redhat.com)
- Support for initial_git_url and downloadable cartridges should be tested
against the presence of an optional parameter on the link relation.
(ccoleman@redhat.com)
- Merge pull request #383 from jtharris/bugs/BZ958683
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #380 from smarterclayton/bug_960926_handle_pipe_closure
(dmcphers+openshiftbot@redhat.com)
- Use --exclude-remote when targeting a single gear. (jharris@redhat.com)
- Bug 960926 - Handle EPIPE gracefully with exit (ccoleman@redhat.com)
* Wed May 08 2013 Adam Miller <admiller@redhat.com> 1.9.1-1
- bump_minor_versions for sprint 28 (admiller@redhat.com)
* Wed May 08 2013 Adam Miller <admiller@redhat.com> 1.8.9-1
- Merge pull request #382 from jtharris/bugs/BZ958675
(dmcphers+openshiftbot@redhat.com)
- Wording change when no ports can be forwarded. (jharris@redhat.com)
* Wed May 08 2013 Adam Miller <admiller@redhat.com> 1.8.8-1
- Merge pull request #381 from smarterclayton/bug_960808_spelling_errors
(dmcphers+openshiftbot@redhat.com)
- Bug 960808 - Mispelling in command help (ccoleman@redhat.com)
- Fix personal cart up to match latest (ccoleman@redhat.com)
* Mon May 06 2013 Adam Miller <admiller@redhat.com> 1.8.7-1
- Cannot add cart to app (missing tests) (ccoleman@redhat.com)
- Merge pull request #376 from
smarterclayton/bug_959542_handle_empty_tables_better
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #375 from
smarterclayton/bug_959144_respect_disable_authorization_tokens_in_setup
(dmcphers+openshiftbot@redhat.com)
- Bug 959542 - Handle empty tables cleanly (ccoleman@redhat.com)
- Bug 959144 - Respect use_authorization_tokens=false in rhc setup
(ccoleman@redhat.com)
* Fri May 03 2013 Adam Miller <admiller@redhat.com> 1.8.6-1
- Merge pull request #374 from jtharris/bugs/BZ958668
(dmcphers+openshiftbot@redhat.com)
- Tail the correct log dir for db carts (jharris@redhat.com)
* Thu May 02 2013 Adam Miller <admiller@redhat.com> 1.8.5-1
- Merge pull request #370 from smarterclayton/support_external_cartridges
(dmcphers+openshiftbot@redhat.com)
- Rename "external cartridge" to "downloaded cartridge". UI should call them
"personal" cartridges (ccoleman@redhat.com)
- Merge remote-tracking branch 'origin/master' into support_external_cartridges
(ccoleman@redhat.com)
- Allow URLs to be passed to app creation and cartridge addition. Clean up a
few minor visual bugs, use the <verb>-<noun> form when referring to other
commands (ccoleman@redhat.com)
- Support custom cartridge URLs (ccoleman@redhat.com)
* Wed May 01 2013 Adam Miller <admiller@redhat.com> 1.8.4-1
- Merge pull request #371 from jtharris/features/Card39
(dmcphers+openshiftbot@redhat.com)
- Expand gear ssh url to handle gear not found. (jharris@redhat.com)
- --gear option for tail (jharris@redhat.com)
- --gear option for port-forward (jharris@redhat.com)
* Tue Apr 30 2013 Adam Miller <admiller@redhat.com> 1.8.3-1
- Merge pull request #373 from smarterclayton/test_enterprise_server
(dmcphers+openshiftbot@redhat.com)
- Support running test cases without certain users (ccoleman@redhat.com)
* Mon Apr 29 2013 Adam Miller <admiller@redhat.com> 1.8.2-1
- Bug 957105 - Should remove the useless info in the result message when domain
updated successfully (jforrest@redhat.com)
* Thu Apr 25 2013 Adam Miller <admiller@redhat.com> 1.8.1-1
- rhc show app --gear includes gear id and header (jharris@redhat.com)
- Gear info shows profile, status, carts, ssh (jharris@redhat.com)
- Merge pull request #367 from smarterclayton/bug_953802_change_community_url
(dmcphers+openshiftbot@redhat.com)
- Bug 953802 - Change community url to be correct (ccoleman@redhat.com)
- Bug 953767 - Arguments that are arrays should set the options to an array
(ccoleman@redhat.com)
- Nicer error message on invalid server URI. (jharris@redhat.com)
- Merge pull request #362 from smarterclayton/bug_952985_contextual_args_broken
(dmcphers+openshiftbot@redhat.com)
- Bug 952985 - Context arguments broken due to optional list changes
(ccoleman@redhat.com)
- bump_minor_versions for sprint 2.0.26 (tdawson@redhat.com)
* Tue Apr 16 2013 Troy Dawson <tdawson@redhat.com> 1.7.7-1
- Merge pull request #361 from jtharris/bugs/BZ928297
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #360 from smarterclayton/skip_nested_alias_load
(dmcphers@redhat.com)
- Merge pull request #359 from smarterclayton/bug_952047_header_mutates_string
(dmcphers+openshiftbot@redhat.com)
- API mismatch wording tweak (jharris@redhat.com)
- min_api is specified in rest_client call (jharris@redhat.com)
- Optional api version check for rest calls. (jharris@redhat.com)
- Aliases are being lazily executed on app list view, even though they don't
have to be. Clean up aliases retrieval to be based on capability, rather
than version. (ccoleman@redhat.com)
- Bug 952047 - SSH key doesn't detect duplicate because name is changed
(ccoleman@redhat.com)
* Mon Apr 15 2013 Adam Miller <admiller@redhat.com> 1.7.6-1
- Merge remote-tracking branch 'origin/master' into better_app_create_flow
(ccoleman@redhat.com)
- Fix tests, reorganize wizard slightly (ccoleman@redhat.com)
- During app create, try more aggressively to set the user up. Includes
setting up the base config, domain, and keys. Changes behavior of argument
parsing for app to be optional. (ccoleman@redhat.com)
* Sat Apr 13 2013 Krishna Raman <kraman@gmail.com> 1.7.5-1
- Merge pull request #358 from
smarterclayton/bug_951352_should_retry_key_on_bad_name
(dmcphers+openshiftbot@redhat.com)
- Bug 951352 - Retry the key name during the wizard flow (ccoleman@redhat.com)
- Merge pull request #355 from fabianofranz/master (dmcphers@redhat.com)
- Bug 951436 - handling Windows platform on paging (ffranz@redhat.com)
- Bug 951369 (ffranz@redhat.com)
- tito releasers update (bleanhar@redhat.com)
* Thu Apr 11 2013 Adam Miller <admiller@redhat.com> 1.7.4-1
- Merge pull request #352 from
smarterclayton/origin_ui_13_autocomplete_and_wrapping
(dmcphers+openshiftbot@redhat.com)
- Bug 949910 - Mark alter and destroy as deprecated aliases
(ccoleman@redhat.com)
- Generate separate switches for --[no-]-<...> switches in autocomplete
(ccoleman@redhat.com)
- Review fixes (ccoleman@redhat.com)
- Require 'delegate' for HighLine extensions (ccoleman@redhat.com)
- Add help search capability and 'rhc help commands' (ccoleman@redhat.com)
- Support HighLine 1.5.1 for now for RHEL (ccoleman@redhat.com)
- Failing test case (ccoleman@redhat.com)
- Add alias from 'authorization' to 'authorizations' (ccoleman@redhat.com)
- Reopen ansi escape sequences after wrapping (ccoleman@redhat.com)
- Cleanup option values for --app and --namespace, minor syntax tweaks
(ccoleman@redhat.com)
- Add Linux pager support for cartridges list and help (ccoleman@redhat.com)
- Tablify help output, add vastly improved root level help for commands. Fix
minor bugs in wrapping. (ccoleman@redhat.com)
- Autocomplete was not added to built gem (ccoleman@redhat.com)
- Disable paging for now (ccoleman@redhat.com)
- Separate HighLine extensions into their own class, use extension rather than
injection. Fix unit tests to properly isolate $terminal.
(ccoleman@redhat.com)
- Copy autocomplete into the home directory to ensure it's not lost
(ccoleman@redhat.com)
- Properly reset formatter after execution (ccoleman@redhat.com)
- Let RHEL/Fedora tests be run deliberately, fix ruby 1.8.7 test failure
(ccoleman@redhat.com)
- Fix help for aliases and secondary commands, change core help page to use
more readable forms (ccoleman@redhat.com)
- Move logout to root level (ccoleman@redhat.com)
- Add autocompletion instructions and a revised script to RHC. Expose 'rake
autocomplete' to generate a new version of the script. (ccoleman@redhat.com)
- Rogue puts used in error (ccoleman@redhat.com)
- All commands default to using dashes instead of spaces to separate them.
Help now displays dashed versions in preference to spaces form. Also
supports a reversed "verb-noun" construct for commands. (ccoleman@redhat.com)
* Wed Apr 10 2013 Adam Miller <admiller@redhat.com> 1.7.3-1
- Fix broken rhc_extended tests (ccoleman@redhat.com)
- Ruby 1.8 treats Integer(nil) as 0, and 1.9 treats it as nil. Switch to
default gracefully. (ccoleman@redhat.com)
* Mon Apr 08 2013 Adam Miller <admiller@redhat.com> 1.7.2-1
- Replace expect{}.should with expect{}.to in remaining spots, depend on
webmock 1.8 (ccoleman@redhat.com)
- Upgrade spec tests to passing, fix RSpec2 syntax errors, ensure randomized
tests pass correctly (ccoleman@redhat.com)
- Merge pull request #347 from smarterclayton/delete_unused_files
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #348 from smarterclayton/bug_928240_prevent_from_code
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #346 from
smarterclayton/bug_927425_use_authorization_tokens_not_strict_enough
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #345 from fabianofranz/master
(dmcphers+openshiftbot@redhat.com)
- Remove doc files from spec (ccoleman@redhat.com)
- Bug 928240 - --from-code is not supported on clients where the latest API
version is < 1.3 (ccoleman@redhat.com)
- Delete unused files (ccoleman@redhat.com)
- Bug 927425 - The use_authorization_tokens flag should be strict
(ccoleman@redhat.com)
- Merge pull request #344 from jtharris/bugs/BZ928357 (dmcphers@redhat.com)
- Bug 928210 - fixed remove alias for API <= 1.3 (ffranz@redhat.com)
- Tests allow multiple DB cartridges to be added. (jharris@redhat.com)
- Bug 928357 - rhc_extended tests (jharris@redhat.com)
* Thu Mar 28 2013 Adam Miller <admiller@redhat.com> 1.7.1-1
- bump_minor_versions for sprint 26 (admiller@redhat.com)
- removing old API doc (dmcphers@redhat.com)
* Wed Mar 27 2013 Adam Miller <admiller@redhat.com> 1.6.7-1
- Bug 924633 - now dealing with empty certificate and private key files
(ffranz@redhat.com)
- Bug 928210 - now handling server with no support to SSL certificates
(ffranz@redhat.com)
- Fixed tests (ffranz@redhat.com)
- REST API version is now 1.4 (ffranz@redhat.com)
- Small wording improvement (ffranz@redhat.com)
- Merge pull request #339 from smarterclayton/bug_924142_should_safe_read_file
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #337 from smarterclayton/update_to_new_plan_values
(dmcphers+openshiftbot@redhat.com)
- Wizard spec should be on FakeFS (ccoleman@redhat.com)
- Bug 924142 - Safely handle empty sshkey files (ccoleman@redhat.com)
- Merge pull request #340 from BanzaiMan/dev/hasari/bz920059
(dmcphers+openshiftbot@redhat.com)
- Fix Bug 920059 (asari.ruby@gmail.com)
- Merge pull request #338 from
smarterclayton/bug_924594_help_shouldnt_trigger_wizard
(dmcphers+openshiftbot@redhat.com)
- Bug 924594 - Any combination of help should never trigger wizard behavior
(ccoleman@redhat.com)
- Merge remote-tracking branch 'origin/master' into update_to_new_plan_values
(ccoleman@redhat.com)
- Rename 'MegaShift' to 'Silver' (ccoleman@redhat.com)
* Tue Mar 26 2013 Adam Miller <admiller@redhat.com> 1.6.6-1
- Merge pull request #336 from jtharris/bugs/BZ924863 (dmcphers@redhat.com)
- http_proxy ENV variable does not have to set protocol. (jharris@redhat.com)
* Mon Mar 25 2013 Adam Miller <admiller@redhat.com> 1.6.5-1
- Minor bug fixes (ffranz@redhat.com)
- Minor bug fixes and typos (ffranz@redhat.com)
- Minor bug fixes and typos (ffranz@redhat.com)
- Card #239: Added support to alias creation and deletion and SSL certificate
upload to the CLI (ffranz@redhat.com)
* Thu Mar 21 2013 Adam Miller <admiller@redhat.com> 1.6.4-1
- Updates to enable RHC extended tests to run on Fedora 18 (kraman@gmail.com)
* Mon Mar 18 2013 Adam Miller <admiller@redhat.com> 1.6.3-1
- Display the duration of http requests in the debug output
(ccoleman@redhat.com)
* Thu Mar 14 2013 Adam Miller <admiller@redhat.com> 1.6.2-1
- Merge pull request #332 from jtharris/highline_fix (dmcphers@redhat.com)
- Merge pull request #331 from BanzaiMan/dev/hasari/bz920028
(dmcphers@redhat.com)
- Always use color for mock highline. (jharris@redhat.com)
- This spec now passes. (asari.ruby@gmail.com)
- Bug 920028. (asari.ruby@gmail.com)
- Merge pull request #328 from
smarterclayton/unable_to_auth_when_tokens_missing
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #327 from jtharris/features/US2627
(dmcphers+openshiftbot@redhat.com)
- When user is contacting a non auth service with use_authorization_tokens
true, their credentials aren't passed to the server. Instead, they get in a
loop prompt. (ccoleman@redhat.com)
- Mark the failing spec as pending. (asari.ruby@gmail.com)
- Add spec for Bug 920028. (asari.ruby@gmail.com)
- Bug 918667 (jharris@redhat.com)
- Adding usage rate reminders. (jharris@redhat.com)
* Thu Mar 07 2013 Adam Miller <admiller@redhat.com> 1.6.1-1
- bump_minor_versions for sprint 25 (admiller@redhat.com)
* Wed Mar 06 2013 Adam Miller <admiller@redhat.com> 1.5.12-1
- Merge pull request #326 from smarterclayton/add_rhc_gears_call
(dmcphers@redhat.com)
- Add rhc app show --gears to display info about the gears
(ccoleman@redhat.com)
* Wed Mar 06 2013 Adam Miller <admiller@redhat.com> 1.5.11-1
- Wrap it up in paragraph (asari.ruby@gmail.com)
- Bug 917605 (asari.ruby@gmail.com)
- Bug 917457 (asari.ruby@gmail.com)
- Merge pull request #323 from smarterclayton/bug_915255_recreate_token
(dmcphers+openshiftbot@redhat.com)
- Bug 915255 - Correctly regenerate token when use_authorization_tokens is true
(ccoleman@redhat.com)
- Don't retry infinitely when in a loop (ccoleman@redhat.com)
* Tue Mar 05 2013 Adam Miller <admiller@redhat.com> 1.5.10-1
- Merge pull request #322 from
smarterclayton/bug_917728_rhc_should_invoke_setup_with_no_args
(dmcphers@redhat.com)
- Merge pull request #313 from smarterclayton/client_is_too_lazy
(dmcphers@redhat.com)
- Merge pull request #321 from BanzaiMan/dev/feature/add_commit_script
(dmcphers@redhat.com)
- Bug 917728 - rhc with no args should invoke setup if the express.conf file
does not exist (ccoleman@redhat.com)
- Extra debugging was breaking output (ccoleman@redhat.com)
- Get around FakeFS bug (defunkt/fakefs#177) (asari.ruby@gmail.com)
- httpclient is too lazy for auth, sending double the number of necessary
requests (ccoleman@redhat.com)
- add rspec test, but not working for now (misc@zarb.org)
- automatically deploy git hooks upon clone (misc@zarb.org)
* Mon Mar 04 2013 Adam Miller <admiller@redhat.com> 1.5.9-1
- Merge pull request #320 from
smarterclayton/bug_917721_catch_exceptions_in_ssh_key_parse
(dmcphers+openshiftbot@redhat.com)
- Bug 917721 - Don't let exceptions get raised from fingerprint tests
(ccoleman@redhat.com)
* Mon Mar 04 2013 Adam Miller <admiller@redhat.com> 1.5.8-1
- Merge pull request #319 from
smarterclayton/bug_917514_require_one_argument_to_authorization
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #318 from
smarterclayton/bug_915255_track_user_preference_for_auth
(dmcphers+openshiftbot@redhat.com)
- Bug 917514 - 'authorization delete' should require at least one token
(ccoleman@redhat.com)
- Bug 915255 - Track auth preference in the config (ccoleman@redhat.com)
- Update reference to rubygems.org to avoid warning (asari.ruby@gmail.com)
* Fri Mar 01 2013 Adam Miller <admiller@redhat.com> 1.5.7-1
- During output, defend against exceptions caused by bad apps
(ccoleman@redhat.com)
- Merge pull request #315 from BanzaiMan/dev/hasari/bz916122
(dmcphers+openshiftbot@redhat.com)
- Bug 916122: Avoid misleading port-forwarding specification for MySQL.
(asari.ruby@gmail.com)
- rhc_extended: Fixed find_application in rhc_helper (fotios@redhat.com)
* Thu Feb 28 2013 Adam Miller <admiller@redhat.com> 1.5.6-1
- Bug 916058 - Show error when auth token operation not supported
(ccoleman@redhat.com)
* Tue Feb 26 2013 Adam Miller <admiller@redhat.com> 1.5.5-1
- Bug 913375 - Tail should be logging all carts in the head gear
(ccoleman@redhat.com)
- Merge pull request #310 from smarterclayton/session_auth_support_2
(dmcphers+openshiftbot@redhat.com)
- Bug 915203 - Create token directory lazily (ccoleman@redhat.com)
- Merge remote-tracking branch 'origin/master' into session_auth_support_2
(ccoleman@redhat.com)
- Add authorization management commands and unit tests (ccoleman@redhat.com)
- Set a better client string on new tokens (ccoleman@redhat.com)
- Merge branch 'rhc_not_sending_version' into session_auth_support_2
(ccoleman@redhat.com)
- Bug 912606 - Guard against bad file input, fix bad md5sums
(ccoleman@redhat.com)
- Missed coverage of token loading in clean environment (ccoleman@redhat.com)
- Bug 910442 - Write config file without quotes (ccoleman@redhat.com)
- Bug 910630 - rhc app create broken against older servers
(ccoleman@redhat.com)
- Print out missed lines when the number is relatively low
(ccoleman@redhat.com)
- Allow tests to be run in reverse order by fixing cleanup problems
(ccoleman@redhat.com)
- Negotiate token auth with server and support logout (ccoleman@redhat.com)
* Mon Feb 25 2013 Adam Miller <admiller@redhat.com> 1.5.4-2
- bump Release for fixed build target rebuild (admiller@redhat.com)
* Mon Feb 25 2013 Adam Miller <admiller@redhat.com> 1.5.4-1
- Add support for ruby 2.0.0-p0, needed to preferentially use zlib
(ccoleman@redhat.com)
- Merge pull request #298 from BanzaiMan/dev/hasari/bz907742
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #308 from maxamillion/dev/admiller/new_brew_tags
(dmcphers+openshiftbot@redhat.com)
- new brew tag (admiller@redhat.com)
- Merge pull request #303 from kraman/origin_rhel_fixes
(dmcphers+openshiftbot@redhat.com)
- updates for rhel6.4 (admiller@redhat.com)
- Merge pull request #300 from fotioslindiakos/find_application
(dmcphers+openshiftbot@redhat.com)
- Using stub_one_application (fotios@redhat.com)
- Converted RHC::ApplicationNotFound exception to
RHC::Rest::ApplicationNotFound (fotios@redhat.com)
- Fix error messages to bring them in line with old values (fotios@redhat.com)
- Added options to find_application (fotios@redhat.com)
- Raise errors based on exit code (fotios@redhat.com)
- Fixed spacing for find_application calls (fotios@redhat.com)
- Changed function name and proper URI creation (fotios@redhat.com)
- Modified spec tests to use new client.find_application Added rest_spec tests
to ensure the client is using the proper find_application (fotios@redhat.com)
- Added find_application to rest_client (fotios@redhat.com)
- Fix name of oo-register-user (kraman@gmail.com)
- Use 'localhost' exclusively for local port forwarding. (asari.ruby@gmail.com)
* Wed Feb 20 2013 Adam Miller <admiller@redhat.com> 1.5.3-1
- RHC is not sending the API version after negotiation (ccoleman@redhat.com)
* Tue Feb 19 2013 Adam Miller <admiller@redhat.com> 1.5.2-1
- Fixed spec tests for checking colors (fotios@redhat.com)
* Thu Feb 07 2013 Adam Miller <admiller@redhat.com> 1.5.1-1
- bump_minor_versions for sprint 24 (admiller@redhat.com)
* Wed Feb 06 2013 Adam Miller <admiller@redhat.com> 1.4.7-1
- Merge pull request #297 from BanzaiMan/dev/hasari/bz907742
(dmcphers+openshiftbot@redhat.com)
- Bug 907742 (asari.ruby@gmail.com)
- Merge pull request #295 from BanzaiMan/bz903403 (dmcphers@redhat.com)
- Clean up (asari.ruby@gmail.com)
- Specs for RHC::Helpers.hosts_file_contains? (asari.ruby@gmail.com)
- Spec for Bug 903403. (asari.ruby@gmail.com)
- Tweak error message. (asari.ruby@gmail.com)
- Bug 903403 (asari.ruby@gmail.com)
* Tue Feb 05 2013 Adam Miller <admiller@redhat.com> 1.4.6-1
- Merge pull request #296 from
smarterclayton/bug_903057_use_system_path_for_errors
(dmcphers+openshiftbot@redhat.com)
- Bug 903057 - Use system_path for files (ccoleman@redhat.com)
* Mon Feb 04 2013 Adam Miller <admiller@redhat.com> 1.4.5-1
- Some stylistic tweaks - you don't need --dryrun because you can stub
themethods directly. Also fail fast on invalid arguments.
(ccoleman@redhat.com)
- fixing tests and code so that tests will pass using dryrun
(cdaley1981+github@gmail.com)
- making updates and writing tests for new rhc app ssh command
(cdaley1981+github@gmail.com)
- updating rhc app ssh command code (cdaley1981+github@gmail.com)
- added rhc app ssh <app> command to ssh into application
(cdaley1981+github@gmail.com)
- Fix cartridge steps broken by my commit (ccoleman@redhat.com)
* Fri Feb 01 2013 Adam Miller <admiller@redhat.com> 1.4.4-1
- Merge pull request #291 from
smarterclayton/search_cartridge_names_consistently
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #290 from jtharris/jenkins_fix
(dmcphers+openshiftbot@redhat.com)
- Allow more flexible searching (ccoleman@redhat.com)
- Search cartridge names more consistently across all commands
(ccoleman@redhat.com)
- Removing test-unit as a dependency. (jharris@redhat.com)
* Thu Jan 31 2013 Adam Miller <admiller@redhat.com> 1.4.3-1
- Merge pull request #287 from jtharris/features/US3159
(dmcphers+openshiftbot@redhat.com)
- Fixing infinite loop in cuke namespace check. (jharris@redhat.com)
- Removing rhc-* commands from spec. (jharris@redhat.com)
- Clearing out DNS and coverage for legacy commands. (jharris@redhat.com)
- Removing legacy rhc-* man pages. (jharris@redhat.com)
- Removing deprecated rhc- commands. (jharris@redhat.com)
* Tue Jan 29 2013 Adam Miller <admiller@redhat.com> 1.4.2-1
- Merge pull request #286 from BanzaiMan/dev/hasari/fix_rhc_extended
(dmcphers+openshiftbot@redhat.com)
- Fix RHC Extended test failures. (asari.ruby@gmail.com)
- Match the new min for scaled php cartridge (asari.ruby@gmail.com)
- Adding back cartridge storage functionality. (jharris@redhat.com)
* Wed Jan 23 2013 Adam Miller <admiller@redhat.com> 1.4.1-1
- bump_minor_versions for sprint 23 (admiller@redhat.com)
* Wed Jan 23 2013 Adam Miller <admiller@redhat.com> 1.3.8-1
- Merge pull request #284 from BanzaiMan/bz903071
(dmcphers+openshiftbot@redhat.com)
- Put code where they belong. (asari.ruby@gmail.com)
- Fix up specs. (asari.ruby@gmail.com)
- Don't say anything, since user expressly told us not to upload the key.
(asari.ruby@gmail.com)
- Bug 903071: bypass test_ssh_connectivity if ssh key is not uploaded
(asari.ruby@gmail.com)
* Wed Jan 23 2013 Adam Miller <admiller@redhat.com> 1.3.7-1
- Merge pull request #283 from smarterclayton/bug_903164_take_args_correctly
(dmcphers+openshiftbot@redhat.com)
- Bug 903164 - Arguments with an app_context not being pulled off the stack
(ccoleman@redhat.com)
- Bug 903071: 'rhc setup' can show unexpected error message
(asari.ruby@gmail.com)
- Merge pull request #281 from
smarterclayton/exit_codes_in_rhc_integration_changed
(dmcphers+openshiftbot@redhat.com)
- Merge pull request #280 from
smarterclayton/bug_903057_display_platform_paths_in_setup
(dmcphers+openshiftbot@redhat.com)
- Exit code for RHC on certain errors is now 128 - update RHC integration tests
(ccoleman@redhat.com)
- Bug 903071 - Exceptions in ssh connectivity should be caught by the server
(ccoleman@redhat.com)
- Remove tests that are already being run implicitly, add better test coverage
(ccoleman@redhat.com)
- Indicate which sshkeys in the list are local by color and attribute
(ccoleman@redhat.com)
- Set a 2 minute connect timeout, and no receive/send timeouts. Validated that
it tolerates long delays better. (ccoleman@redhat.com)
- Ensure that FakeFS has ALT_SEPARATOR set to empty (ccoleman@redhat.com)
- Bug 895411 - Fixed improper arguments for help options (ccoleman@redhat.com)
- Bug 903057 - Show windows specific paths in the wizard (ccoleman@redhat.com)
- Merge pull request #278 from BanzaiMan/dev/hasari/us2410_followup
(dmcphers+openshiftbot@redhat.com)
- Include coverage for the case where a test_* method raises an exception
(asari.ruby@gmail.com)
- Tests are not fatal. (asari.ruby@gmail.com)
* Tue Jan 22 2013 Adam Miller <admiller@redhat.com> 1.3.6-1
- Merge pull request #277 from smarterclayton/us2410_move_rhc_chk
(dmcphers+openshiftbot@redhat.com)
- Review: minor tweaks to output to clean up overall look (ccoleman@redhat.com)
- Force alphabetical order on tests to make specs pass on both 1.8 and 1.9.
(asari.ruby@gmail.com)
- Make use of cache here (asari.ruby@gmail.com)
- Actually loop through the applications (asari.ruby@gmail.com)
- Cache applications to avoid making unnecessary API calls
(asari.ruby@gmail.com)
- Discover tests, rather than hard coding them. (asari.ruby@gmail.com)
- Clear SSH key cache when new key is uploaded (asari.ruby@gmail.com)
- Missed this occurrence in the last commit (asari.ruby@gmail.com)
- Provide a single method to provide the cached SSH keys from the REST client
(asari.ruby@gmail.com)
- Specs pass now (asari.ruby@gmail.com)
- Use the new REST client calls. (asari.ruby@gmail.com)
- No point in testing deprecated command. (asari.ruby@gmail.com)
- No point in covering a deprecated command with no spec.
(asari.ruby@gmail.com)
- Deprecate 'rhc domain status' (asari.ruby@gmail.com)
- Match 'rhc-chk' output (asari.ruby@gmail.com)
- Add deprecation warning. (asari.ruby@gmail.com)
- US2410 roll 'rhc-chk checks into "rhc setup"' (asari.ruby@gmail.com)
* Mon Jan 21 2013 Adam Miller <admiller@redhat.com> 1.3.5-1
- Add support for the --from-code=<URL> parameter on application create. Show a
default message if the broker returns a message with no text.
(ccoleman@redhat.com)
- Merge pull request #274 from smarterclayton/use_nahi_httpclient_instead
(dmcphers+openshiftbot@redhat.com)
- Allow app name to exist in git config, and evaluate some context helpers for
argument positions (ccoleman@redhat.com)
- Fix remaining integration test failure (ccoleman@redhat.com)
- Bug 895000 - Ambiguous parse options should be properly displayed to users
(ccoleman@redhat.com)
- Bug 894291 - Configuration values should be processed the same way as options
(ccoleman@redhat.com)
- Merge branch 'master' of github.com:openshift/rhc into
use_nahi_httpclient_instead (ccoleman@redhat.com)
- Bug 895000 - Handle configuration file path errors gracefully
(ccoleman@redhat.com)
- Add information about the gears being used in the app in the CLI
(ccoleman@redhat.com)
- Remove request/response debugging (use env HTTP_DEBUG=1 for that), merge
client.spec build changes (ccoleman@redhat.com)
- Support multiple cartridges on app creation (ccoleman@redhat.com)
- tty? should be mocked true (ccoleman@redhat.com)
- Disable color if stdout is not a tty, disable paging if either stdin or
stdout is not a tty (ccoleman@redhat.com)
- Print the client output id, replace app show --state with app show
(ccoleman@redhat.com)
- Update mode of sshkey (ccoleman@redhat.com)
- rhc server should be lazy auth (ccoleman@redhat.com)
- Add more detail to cartridge listing, add a verbose mode, --version no longer
responds to -v (ccoleman@redhat.com)
- Minor whitespace tweak (ccoleman@redhat.com)
- Standarize better confirmation behavior, make --noprompt fail most operations
that require confirmation (ccoleman@redhat.com)
- Display gear count and gear sizes available during rhc setup
(ccoleman@redhat.com)
- Add 'rhc account' If user specifies password on CLI, don't prompt again just
display error (no interactive input) (ccoleman@redhat.com)
- Tolerate HTTPClient 2.2.1 not supporting --ssl-version by warning the user
they cannot use that option unless they upgrade (ccoleman@redhat.com)
- Add a 'help options' command to show all global options, and improve the
setup documentation. (ccoleman@redhat.com)
- Fetch cartridges with apps list (ccoleman@redhat.com)
- Httpclient 2.2 raises 502/401, Httpclient 2.3 does not. (ccoleman@redhat.com)
- Begin fixing spec tests, fix various real world problems as we go
(ccoleman@redhat.com)
- Return all spec tests to passing, dramatically simplify wizard spec tests.
(ccoleman@redhat.com)
- Premerge with master (ccoleman@redhat.com)
- Get tests back to passing, remove all old code (ccoleman@redhat.com)
- An initial httpclient implementation (ccoleman@redhat.com)
- Merge branch 'master' of github.com:openshift/rhc into
refactor_rhc_rest_client (ccoleman@redhat.com)
- Ruby 1.8 does not appear to set a default cert store, and rest-client doesn't
allow setting a cert_store directly. Work around it until we investigate
nahi/httpclient more. (ccoleman@redhat.com)
- Move arguments validation and fill to RHC::Commands (ccoleman@redhat.com)
- Serialization of config options should go through RHC::Config#save!, simplify
wizard spec tests to depend slightly less on state, add comments around spec
intentions, make Commander::Command::Options have a bit cleaner behavior.
(ccoleman@redhat.com)
- Restore spec tests to 100%% coverage, remove some unused methods
(ccoleman@redhat.com)
- Handle lambda context parameters (for lazy evaluation), reach 100%% spec
coverage again (ccoleman@redhat.com)
- Provide a specific message for invalid protocols (ccoleman@redhat.com)
- Support client certs and ca_file being passed on command line
(ccoleman@redhat.com)
- Remove some unused crap from base.rb (ccoleman@redhat.com)
- Allow --ssl-version to be passed on the command line, which will allow Mac
users to bypass cert issues on some servers (ccoleman@redhat.com)
- More cleanup of client creation, remove need for globals, start simplifying
wizard client creation, prepare for delayed auth (ccoleman@redhat.com)
- Clean up timeouts and DRY up specs (ccoleman@redhat.com)
- TarGz not autoloaded (ccoleman@redhat.com)
- Spec tests pass (ccoleman@redhat.com)
- Make auth abstractable, separate client and api, and use less poor behavior
(ccoleman@redhat.com)
* Fri Jan 18 2013 Dan McPherson <dmcphers@redhat.com> 1.3.4-1
- Encrypt again with '-r' flag, for use with openshift/rhc
(asari.ruby@gmail.com)
- Set up Travis uploads if spec fails (asari.ruby@gmail.com)
* Thu Jan 10 2013 Adam Miller <admiller@redhat.com> 1.3.3-1
- Update build.sh (ccoleman@redhat.com)
- Add rubygems as a build requires for gem (ccoleman@redhat.com)
- Remove rake references (ccoleman@redhat.com)
- Removing the cucumber dependency from the RPM builds (bleanhar@redhat.com)
- Merge pull request #269 from Coolhand/dev/niharvey/bug/880511
(dmcphers+openshiftbot@redhat.com)
- fixed line 98 in lib/rhc/rest/application.rb to replace add_alias with
remove_alias in debug output (niharvey@redhat.com)
- We should select applications and cartridges case-incensitively.
(asari.ruby@gmail.com)
- Merge pull request #266 from
smarterclayton/bug_889090_print_password_on_cart_addition
(dmcphers+openshiftbot@redhat.com)
- Time.new is new for 1.9.3, use Time.local (ccoleman@redhat.com)
- Date calculation for test case has a fencepost coverage error
(ccoleman@redhat.com)
- Styling changes per clayton's comments (fotios@redhat.com)
- Nest cartridges into applications (fotios@redhat.com)
- Time.new is new for 1.9.3, use Time.local (ccoleman@redhat.com)
- Add some spacing around the cartridge output (ccoleman@redhat.com)
- Bug 889090 - Password and other cart options should be displayed to the user
on cart creation and on cart show. (ccoleman@redhat.com)
- Date calculation for test case has a fencepost coverage error
(ccoleman@redhat.com)
- Don't give away the password length. (asari.ruby@gmail.com)
- Merge pull request #261 from BanzaiMan/dev/hasari/bz888100
(openshift+bot@redhat.com)
- TarGz not autoloaded (ccoleman@redhat.com)
- Conceal password entirely. (asari.ruby@gmail.com)
- Iterate over Array as well. (asari.ruby@gmail.com)
- Fixes BZ888100. (asari.ruby@gmail.com)
- Remove debug statements from cucumber tests (ccoleman@redhat.com)
- Remove rhc-common, fix extended failure introduced by us3117
(ccoleman@redhat.com)
* Tue Dec 18 2012 Adam Miller <admiller@redhat.com> 1.3.2-1
- Merge pull request #259 from smarterclayton/us3117_refactor_help_and_cleanup
(openshift+bot@redhat.com)
- Merge pull request #250 from BanzaiMan/dev/hasari/bz865746
(openshift+bot@redhat.com)
- Scaling string changes (ccoleman@redhat.com)
- Fix failing cucumber test (string change in missing cart)
(ccoleman@redhat.com)
- Merge remote-tracking branch 'origin/master' into
us3117_refactor_help_and_cleanup (ccoleman@redhat.com)
- Merge pull request #257 from BanzaiMan/dev/hasari/bz887136
(openshift+bot@redhat.com)
- Changing wording in cart not found exception. (jharris@redhat.com)
- In 'rhc domain', detect '--debug' and finesse args so that 'rhc-chk' can run
in debug mode. (asari.ruby@gmail.com)
- Merge pull request #256 from fotioslindiakos/US2438_cleanup_master
(openshift+bot@redhat.com)
- Temporarily remove cartridge storage commands from CLI (fotios@redhat.com)
- Merge pull request #247 from fotioslindiakos/BZ884636
(openshift+bot@redhat.com)
- Fix help texts on CLI, as reported by
https://bugzilla.redhat.com/show_bug.cgi?id=865746 (asari.ruby@gmail.com)
- Fix for BZ884636 (fotios@redhat.com)
- Bug 883725 - Allow 'jenkins' to be used as the application name
(ccoleman@redhat.com)
- Merge remote-tracking branch 'origin/master' into
us3117_refactor_help_and_cleanup (ccoleman@redhat.com)
- Normalize exit trapping across commands, move up to bin/rhc level for it
(ccoleman@redhat.com)
- Bug 883303 - Simplify how we handle SIGINT (ccoleman@redhat.com)
- Additional cleanup steps for cucumber tests (ccoleman@redhat.com)
- --debug should not --trace (ccoleman@redhat.com)
- Add back check for env (ccoleman@redhat.com)
- Tests are running again, hide --help, don't show duplicate options in help
(ccoleman@redhat.com)
- SSHKey wizard cleanup, verify key setup works during app create
(ccoleman@redhat.com)
- * Remove references to rhc-common from within the new CLI commands * Allow a
global --server option * Reduce complexity in config and allow for better
mocking * More test case simplification (ccoleman@redhat.com)
* Wed Dec 12 2012 Adam Miller <admiller@redhat.com> 1.3.1-1
- bump_minor_versions for sprint 22 (admiller@redhat.com)
* Wed Dec 12 2012 Adam Miller <admiller@redhat.com> 1.2.6-1
- Merge pull request #249 from jtharris/bz883725 (dmcphers@redhat.com)
- Merge pull request #248 from brenton/spec1 (openshift+bot@redhat.com)
- Removing webmock build require (bleanhar@redhat.com)
- Bug 883725 - Allow 'jenkins' to be used as the application name
(ccoleman@redhat.com)
- Reverted 'if debug?' logic (nhr@redhat.com)
- Updated based on review feedback (nhr@redhat.com)
- Additional corrections to sshkey cucumber tests (nhr@redhat.com)
- Added keyed_user test to ensure that rhc is properly configured for snapshot
operations (nhr@redhat.com)
- Updated test case to expect correct error code (nhr@redhat.com)
- Rebased to collect all recent cucumber work (nhr@redhat.com)
- Don't track previous namespace, just look it up the next time
(ccoleman@redhat.com)
- Stop writing namespace to file (ccoleman@redhat.com)
- Reset $namespace when switching users, clean_application should do the same,
better debug output (ccoleman@redhat.com)
* Fri Dec 07 2012 Adam Miller <admiller@redhat.com> 1.2.5-1
- Merge pull request #244 from jtharris/BZ_880856 (dmcphers@redhat.com)
- Merge pull request #245 from BanzaiMan/dev/hasari/bz880924
(openshift+bot@redhat.com)
- Cleaning out version.rb rewrite in package.rake (jharris@redhat.com)
- Setting for cucumber @cartridge_storage_user_required context
(nhr@redhat.com)
- Added cartridge storage capability and testing to rhc (jharris@redhat.com)
- Update help text for 'port-forward' to include '<application>'.
(asari.ruby@gmail.com)
* Thu Dec 06 2012 Adam Miller <admiller@redhat.com> 1.2.4-1
- More tweaks to extended tests (ccoleman@redhat.com)
* Wed Dec 05 2012 Adam Miller <admiller@redhat.com> 1.2.3-1
- Merge pull request #243 from maxamillion/dev/admiller/bundle_gem_build
(ccoleman@redhat.com)
- Back to 100%% tests (ccoleman@redhat.com)
- Make env clean used keys, reset keys correctly for users
(ccoleman@redhat.com)
- added bundle exec to build.sh (admiller@redhat.com)
- Cucumber tasks should run setup again for geared users (ccoleman@redhat.com)
- On GET requests, retry 502 proxy error exactly once (ccoleman@redhat.com)
- Loading errors and ordering (ccoleman@redhat.com)
- Error code 103 is used (ccoleman@redhat.com)
- Use a different log file so other tests don't clobber us
(ccoleman@redhat.com)
- Merge pull request #239 from BanzaiMan/resolv_with_host_file
(openshift+bot@redhat.com)
- Merge pull request #240 from smarterclayton/bug_883204_fix_rhc_extended_more
(openshift+bot@redhat.com)
- Merge pull request #238 from brevilo/fix_timeout_msg
(openshift+bot@redhat.com)
- Use Resolv::Hosts to resolve hostnames when dns is not used.
(asari.ruby@gmail.com)
- Merge pull request #237 from anthonyfok/ask_password_chomp
(openshift+bot@redhat.com)
- Merge pull request #209 from BanzaiMan/dev/hasari/us2773
(openshift+bot@redhat.com)
- Bug 883204 - Fix RHC Extended actual tests (ccoleman@redhat.com)
- Update message since 'rhc app status' is deprecated (code@obock.de)
- Prevent ask_password from stripping whitespace (anthony.t.fok@gmail.com)
- Update the man page (asari.ruby@gmail.com)
- Magic data. (I mean, a missing period/full stop.) (asari.ruby@gmail.com)
- Use #bound? for more descriptive method name to check if the connection is
bound. Instance variable name remains the same. (asari.ruby@gmail.com)
- When the application is down, the server does not return any port information
for us to use. Detect this situation (even though we have to make another API
call), and advise to users if the application is indeed down.
(asari.ruby@gmail.com)
- Yeah, I removed this method. (asari.ruby@gmail.com)
- Tweak the command output slightly. (asari.ruby@gmail.com)
- Probably we should rescue problems with REST client. (asari.ruby@gmail.com)
- Clean up error messages for the failed forwarding attempts.
(asari.ruby@gmail.com)
- No reasonable use case for @remote_host and @port_to to change.
(asari.ruby@gmail.com)
- Be less noisy. The same information is printed above. (asari.ruby@gmail.com)
- Reformat so that indentation-based code folding works correctly.
(asari.ruby@gmail.com)
- Refactor common code in RSpec examples. (asari.ruby@gmail.com)
- Cosmetic changes. (asari.ruby@gmail.com)
- Remove dead code and replace it with the appropriate message emitted at the
right time. (asari.ruby@gmail.com)
- English is hard™. (asari.ruby@gmail.com)
- Set up mocks correctly to simulate an unreachable host. This caused a spec
run to prompt for password on the Mac. (asari.ruby@gmail.com)
- Passing "self" is kludgy. (asari.ruby@gmail.com)
- I forgot to restore the "ssh" command message (asari.ruby@gmail.com)
- clean up messages somewhat (asari.ruby@gmail.com)
- Remove comments resulted from dead code (asari.ruby@gmail.com)
- Ooops. Gotta avoid infinite loop. (asari.ruby@gmail.com)
- On a second thought, we should not raise Exception here, since we are just
iterating over port forwarding specifications, not all of them failing.
(asari.ruby@gmail.com)