This repository was archived by the owner on Jul 12, 2018. It is now read-only.
forked from heroku/legacy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
1401 lines (1140 loc) · 43 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
3.28.1 2015-02-27
=================
Renamed local:start to just local
3.28.0 2015-02-27
=================
Added `heroku local`
Added flag to customize poll interval for pg:wait
Fixed error message for default orgs
Allow org for all commands
Improved help formatting for v4 plugins
3.27.2 2015-02-24
=================
Added restart to primary commands in help
Fixed issue with argument passing to v4 plugins
Added full help for v4 plugins
3.27.1 2015-02-24
=================
Bumped gem version number to 3.27.1
3.27.0 2015-02-24
=================
Make pgbackups work with config vars other than DATABASE_URL
Require confirmation for dangerous pg:backups commands
Updated netrc to 0.10.3
Fix pg:backups unschedule
Deprecated heroku-push plugin
3.26.1 2015-02-18
=================
Added buildpack command
Ignore HEROKU_ORGANIZATION env var if blank
Added OpenBSD to v4 plugins
3.26.0 2015-02-10
=================
Removed default orgs in place of HEROKU_ORGANIZATION env var (#1395)
Display errors if rollbar does not accept it (#1412)
Fix case-sensitive reading of X-Confirmation-Required header (#1410)
Fix v4 plugin commands without command name and topic only
Bug fixes for v4 plugins on Windows
Show rollbar errors in ~/.heroku/error.log (#1408)
Allow db:push and db:pull to work with remote databases (#1386)
Cleaner error messages when failing to read netrc files (#1404)
Create heroku directory if it does not exist when writing ~/.heroku/error.log (#1403)
More descriptive error message when heroku run has an SSL error (#1401)
Change plugin example to use heroku-production-check instead of heroku-accounts (#1400)
Updated help text for twofactor commands (#1398)
Show warning if CLI is run under jruby (#1396)
Show out of date warning if toolbelt is not autoupdatable (#1394)
3.25.0 2015-01-29
=================
Added `plugins:uninstall` for toolbelt v4 plugins
Prevent fork from deleting an existing app
Added okjson back in for users that have not updated their plugins
Show app name in `run:detached`
3.24.5 2015-01-28
=================
Better errors when git is not found or not working
Fixed bug with unhandled EPIPE exception
Fixed credential warning message
Added ruby version to exception tracking
Added disabling of error tracking with HEROKU_DISABLE_ERROR_REPORTING
3.24.4 2015-01-27
=================
Rolled Rollbar creds
3.24.3 2015-01-27
=================
Reverted db:push and db:pull feature that allowed remote databases due to bugs
Enabled error tracking on unhandled exceptions
3.24.2 2015-01-27
=================
Temporarily disable rollbar error reporting since it's too noisy
3.24.1 2015-01-27
=================
Skip error reporting for errors like ctrl-c and command failures.
3.24.0 2015-01-27
=================
Added error tracking with rollbar
Added pg:backups from pg-extras plugin
Allow db:push and db:pull to use remote databases (for setups like docker)
Fixed apps:info for paranoid apps
Upgraded excon to 0.43.0
3.23.3 2015-01-16
=================
Fixed bug where jsplugins could override core commands
Prevent non-autoupdatable clients from autoupdating
3.23.2 2015-01-16
=================
Added certs:generate command
Fixed bug with plugins
Show request-id on HEROKU_DEBUG
3.23.1 2015-01-13
=================
Fixed authentication failure in release
3.23.0 2015-01-13
=================
Added help for jsplugins
Fixed remote setting in git:remote
Fixed bug with newlines in .bashrc on OSX
3.22.1 2015-01-05
=================
Updated cacert.pem
3.22.0 2015-01-05
=================
Added JavaScript-based plugin support
3.21.4 2014-12-31
=================
Fixed bug with git warnings
Removed git warnings for non-osx and non-windows environments
Happy New Year!
3.21.3 2014-12-23
=================
Show warning for insecure Git clients
Fix issue with MultiJson require
Happy Festivus!
3.21.1 2014-12-17
=================
No changes, needed to bump the version
3.21.0 2014-12-17
=================
Upgraded heroku-api gem
Explicitly preauth for 2fa commands instead of automatically on every failure
Show warning when using heroku-accounts (since it is incompatible with http-git)
Added HTTP instrumentor for debugging with HEROKU_DEBUG=true
3.20.0 2014-12-10
=================
Upgraded excon and netrc gems
Use Dir.home for Ruby 1.9+
Show plugins in `heroku version`
3.19.0 2014-12-09
=================
Simplified updating by performing updates synchonously instead of in a separate process
3.18.0 2014-12-05
=================
Upgraded gems (notably netrc, heroku-api and excon)
Show warning if HEROKU_API_KEY is set
Tweaks to manager url
3.17.1 2014-12-04
=================
Added debug logging for auth
3.17.0 2014-12-03
=================
Default to http git
Reduced update check duration to 10 minutes
3.16.2 2014-11-23
=================
Clean build dist directory before releasing
3.16.1 2014-11-23
=================
Fixed bug with nil release description
3.16.0 2014-11-20
=================
Fixed update spawn command on some windows installs
Added warning for https git when netrc doesn't have credentials
Made runnable without readline
3.15.3 2014-11-10
=================
Removed bamboo from stack command
Reverted 2fa input masking
3.15.2 2014-11-04
=================
Mask 2fa inputs longer than 12 characters
3.15.1 2014-11-04
=================
Upgraded launchy to 2.4.3
Only lock for updates when updating, not checking for updates
3.15.0 2014-10-24
=================
Skip preauth with no app context
Fixed Debian control file dependencies
3.14.0 2014-10-21
=================
Use preauth instead of 2fa for all API calls
3.13.0 2014-10-20
=================
Switch to multi_json
Overwrite git remotes with `heroku git:remote`
3.12.1 2014-10-07
=================
Fixed Excon 0.40.0 in Gemfile
Fixed git finders to work with env vars
Symbolic config vars
3.12.0 2014-10-06
=================
Excon 0.40.0
Unique output warnings
More git options
3.11.3 2014-10-02
=================
Replace code. with git. in .netrc
Always use preauth for 2fa
3.11.2 2014-09-26
=================
Use server-side connection for pg:killall
Send orgs requests to api.heroku.com
3.10.6 2014-09-04
=================
Added ssh-keygen shim for Windows
3.10.5 2014-08-27
=================
Ocra support for building standalone heroku-ocra.exe
3.10.4 2014-08-22
=================
Upgraded excon to 0.39.5
3.10.3 2014-08-21
=================
Fixed minor issue with recording fork source
3.10.2 2014-08-21
=================
Removed lazy-loading of heroku-api and rest_client (was swallowing errors)
Fail fast for issue with pgbackups:transfer
Removed price tier from info
Help info for two factor topic
Send deploy type and source metadata for forks
3.10.1 2014-08-14
=================
No changes, just verifying new release code is in order
3.10.0 2014-08-14
=================
Fixed beta releases
Upgrade heroku-api and excon
3.9.7 2014-08-12
================
Bring 2fa:disable back
Several pg and pgbackups command improvements
3.9.4 2014-07-21
================
Actually fix a bug where setting HEROKU_API_KEY would cause failures
3.9.3 2014-07-21
================
Fix a bug where setting HEROKU_API_KEY would cause failures
3.9.2 2014-07-21
================
New pg:upgrade and pg:maintenance commands (from pg-extras)
Fix pg:psql -c prompt quoting on windows
3.9.1 2014-07-08
================
Support for HEROKU_DEBUG to show backtrace even on interrupt
3.9.0 2014-07-02
================
Updated bundled SSL certs
Added pg:diagnose
3.8.4 2014-06-18
================
Fix issue with rest-client dependency
Fix issue parsing errors from old API endpoints
3.8.3 2014-06-11
================
Replace Cisaurus slug copy with v3 Releases API
3.8.2 2014-05-27
================
Rename stack:migrate to stack:set
Bug fixes for the certs commands and another issue with 1.8 compatibility
3.8.1 2014-05-23
================
Handle 2FA errors on all commands
Fix bug with CentOS 6
3.8.0 2014-05-20
================
Remove 2fa:enable/disable, please visit https://dashboard.heroku.com for these
3.7.5 2014-05-19
================
Keep using the system json gem when possible
3.7.4 2014-05-19
================
Fix issue with json dependency in ps commands
3.7.3 2014-05-05
================
Fix compatibility with 1.8.7
3.7.2 2014-05-02
================
Fix 2fa:enable --browser
3.7.0 2014-05-02
================
Fix issue with dependencies not being packaged for auto-update
Bring two-factor plugin in
Several bug fixes on pg and certs commands
3.6.0 2014-03-14
================
Remove multi_json, not working well existing toolbelt environments
3.5.0 2014-03-10
================
Fixed bug in Heroku Fork that could cause it to delete the source app
Added multi_json so a faster encoder is used when available
3.4.3 2014-03-06
================
Show server-side warnings when tailing logs.
3.4.2 2014-03-04
================
Fix quoting style originally used to set the nice prompt with `pg:psql` on Windows.
3.4.1 2014-02-28
================
Add pgbackups:transfer, for direct database to database transfers
Use app::color-style prompt for psql
Improvements to Heroku Fork:
- Collapse pgbackups steps into one direct transfer
- Clear fork app on error
3.3.0 2014-01-30
================
Improved ps commands to support PX dynos
3.2.3 2014-01-24
================
Add a `-n`, `--num` flag to the `releases` index command, to specify the number of releases to be shown.
Exit value 1 with authentication failure from an API key.
Fix inaccurate 'internal server error' message when using some pg commands outside of a project.
Fix issue where forking an application with a Hobby database would timeout and fail.
Uses secure RubyGems URL
Full changes here https://github.com/heroku/heroku/compare/v3.2.2...v3.2.3
3.2.2 2014-01-08
================
bugfix for some orgs and pg commands
3.2.1 2013-12-18
================
fix ps:scale with relative values (eg: web+2)
3.2.0 2013-12-06
================
merge heroku-orgs plugin
3.1.1 2013-12-02
================
Use bulk scale+resize API in ps:scale
Default to primary database plan if no plan specified in fork/follow/rollback
3.1.0 2013-11-22
================
Support resizing in ps:scale
Allow env var PGPORT to indicate port used by Postgres locally
Enhanced output of pg:ps
Avoid redundant API calls
Take optional path on apps:open
3.0.1 2013-10-16
================
support rollback flag for Postgres addons
3.0.0 2013-09-30
================
drop support for Taps (db:push/pull), users should use pg:push/pull instead
2.41.0 2013-09-18
=================
certs:remove, certs:rollback, certs:update now require confirmation
certs:info, certs:remove, certs:rollback, certs:update now take optional --endpoint
2.40.1 2013-08-31
=================
change commands to use dashes instead of underscores
2.40.0 2013-08-05
=================
bring commands pg:ps, pg:kill and pg:killall from pg-extras plugin
add shorthand database identifiers
show info on archived apps
2.39.5 2013-07-25
=================
allow stdin pipe to `heroku run`
fix Heroku::Client#list_domains
2.39.4 2013-05-29
=================
only show app region on heroku create when specified
2.39.3 2013-05-15
=================
change the URL used for SSO with add-ons
2.39.2 2013-04-26
=================
show --regions info in addons:list help output
2.39.1 2013-04-25
=================
correct "process" to "dyno" in output
2.39.0 2013-04-24
=================
enable region support
2.38.2 2013-04-23
=================
disable use of sslv2 to rendezvous by forcing tlsv1
2.38.1 2013-04-23
=================
check for proper cisaurus job response code
2.38.0 2013-04-22
=================
send command options on addons:list
2.37.2 2013-04-04
=================
fix issue with heroku ps sorting
2.37.1 2013-04-04
=================
deprecate plugin heroku-dyno-size
2.37.0 2013-04-03
=================
heroku ps now shows dyno sizes
support heroku ps:resize to change dyno sizes
support heroku run --size to run on a different dyno size
2.36.1 2013-04-02
=================
bump release version to force gem push of pre-release 2.36.0
2.36.0 2013-03-22
=================
merge heroku-fork plugin into CLI
2.35.0 2013-02-06
=================
don't hide the command if an opt is hidden
fixing hidden help
update specs for run:console
fully deprecate `heroku console`
2.34.0 2013-01-11
=================
update spec
include region in app list for non-us apps
output region instead of stack if it's returned
suggest pgbackups logs on restore errors as well
fix colorization when output has foo[bar] in it
fix typo in "keys" command help text
adds extra test coverage around stripping query data off of DATABASE_URL setting.
allowing query options on database url for matching DATABASE_URL to attachment
deprecate heroku-sql-console
myapp ⇒ example
fix clearing of caches to fix DB promotion after credential reset
get the name before messaging to be able to give an early error message
swap restclient for excon
merge heroku-ssl-doctor plugin (https://github.com/heroku/heroku-ssl-doctor)
search slightly more liberally for git remotes.
2.33.5 2012-12-13
=================
fix region/remote collision
2.33.4 2012-12-13
=================
fix region option
2.33.3 2012-12-06
=================
add basic region support
skip namespaces or commands that contain HIDDEN: or DEPRECATED:
do not raise when the base host doesn't have a TLD (eg localhost)
2.33.2 2012-11-26
=================
bump excon for proxy fixes
2.33.1 2012-11-15
=================
better pgbackups retry
error when creating a fork or follower of a starter tier database
bump heroku-api
2.33.0 2012-10-25
=================
tweak the argument format for git:clone
verify signature for updates
show transfer status in pgbackups list
2.32.14 2012-10-16
==================
fix updater process for paths with spaces
2.32.13 2012-10-15
==================
fix updater in the presence of multiple heroku binaries
2.32.12 2012-10-15
==================
add gem deprecation warning to install output
2.32.11 2012-10-10
==================
fix useragent reporting
2.32.10 2012-10-10
==================
fix useragent reporting
2.32.9 2012-10-09
=================
backoff retries of pgbackups status api
2.32.8 2012-10-04
=================
patch release to bump debian installer
2.32.7 2012-10-04
=================
proper error messages for labs features that do not exist
PATH manipulation in toolbelt packaging
package ruby-1.9.3 with OSX toolbelt
2.32.6 2012-09-27
=================
fix bug in labs for user_env_compile
2.32.5 2012-09-27
=================
fix corner case bug in pg resolver
rework labs output
2.32.4 09/24/2012
=================
prevent excon from using nonblocking calls to avoid ruby 1.8.7 problems
2.32.3 09/24/2012
=================
make sure ~/.heroku directory exists before trying to use it
2.32.2 09/24/2012
=================
wait 5 minutes between autoupdate attempts
2.32.1 09/20/2012
=================
autoupdate on by default
make host verification more robust
2.31.5 09/21/2012
=================
fix shared database regression in pg:info
2.31.4 09/20/2012
=================
fix shared database regression in pg resolver
2.31.3 09/18/2012
=================
fix docs and options check for apps:info to use --shell
use blocking requests for excon in status/updater
fix punctuation for no app specified and remove helpers duplication
retry get_transfer while polling
remove aspen from example stack list
remove redundant messaging on ssl endpoint cert removal
show actual times instead of only approximate times
update should check ENV['HEROKU_AUTOUPDATE'], not set it
use updated heroku.rb
simplify time_ago logic
update time displays to consistently show same format
remove duplication of DATABASE_URL label adding
normalize heroku status help messages
clarify pgbackups:capture --expire option help
fix time value formatting display in status
rearrange command to facilitate anonymous command capture
clearer error messages when lacking internet connectivity
collect usage locally, segregated by version
allow/ignore usage writing failures
use HerokuPostgres v11 API
disable update when autoupdate is enabled
fix punctuation in plugins:install messaging
2.31.2 09/02/2012
=================
fix to properly reference error helpers in autoupdate
delete autoupdate mutex with rm_f
fix timing of autoupdate mutex
2.31.1 08/28/2012
=================
change update command to check gem version before executing
use spawn instead of fork for autoupdate, except ruby 1.8
2.31.0 08/28/2012
=================
require 'command/base' in accounts
fix formatting for json validation errors
improve punctuation and simplify no app specified messages
indicate deprecation on stacks as appropriate
remove officious version from optparse, instead of overriding
change -r/--raw to -s/--shell for apps:info
default autoupdate to on for new installs
2.30.5 08/23/2012
=================
fix for helpers not being reloaded after inject_libpath
2.30.4 08/22/2012
=================
free -v for other usage
remove v2/v3 compatability hack from apps#domain_name
use Heroku::Auth.host instead of Heroku::Client.new.host in git_remotes
use HEROKU_GIT_HOST || HEROKU_HOST || default host for git remote detection
DRY launchy usage
update release notes to mention setting current in core
prevent double CR in rendezvous on windows
fix capitalizotion in help
display help/commands when calling `heroku auth`
remove beta indication on cedar in stacks help example
reload helpers after inject_libpaths
add error logging for autoupdate
consolidate user_agent handling, improve gem vs toolbelt and add autoupdate
add simple file based mutex for autoupdate
alpha sort deprecated plugins list
add heroku-credentials to deprecated plugins
add stats rake task to give info on commands/namespaces
2.30.3 08/15/2012
=================
standardize formatting for certs
vendor latest okjson
format_date now converts 'GMT' to 'UTC' for consistency
standardize casing of 'SSL Endpoint' on certs output
remove builtin_plugin, which doesn't apper ever to be used
make pg:reset usage message more consistent
fix docs for labs:list
cleanup labs index/list and better errors when no features are available
more consistent global/command option handling
setup for anonymized and normalized commands
fix some flaky tests
remove nocov to better emphasize code to be removed
bump netrc to fix parsing stuff missing username or password
softer messaging on symlinked plugins
encoding fix for okjson
bump netrc to add newline as needed between entries
bump heroku-api for excon SSLv3 and nonblock fixes
2.30.2 08/02/2012
=================
standardize/consolidate confirm_billing handling
use heroku.rb to poll app creation status
deprecate client's app methods in favor of heroku-api
deprecate client's config methods in favor of heroku-api
more consistent usage error for pgbackups:destroy
more consistent usage errors for keys
more consistent usage errors for sharing
simplify sharing as collaborator list always includes at least owner
more consistent styling/usage for labs, add labs:list
remove logs:cron (has been deprecated for a very long time)
don't display 'Additional Commands' if all additional are deprecated
fix double period in some styled error messages
remove erroneous chdir in git:remote
don't assume launchy return value responds to join (doesn't on windows)
update labs:enable example to include docs hint
more consistent usage errors for labs
more consistent addons messaging
remove deprecated logs:drains from coverage consideration
deprecate client's collaborator methods in favor of heroku-api
deprecate client's domain methods in favor of heroku-api
deprecate client's keys methods in favor of heroku-api
remove long deprecated cron_logs from client and specs
deprecate client's maintenance methods in favor of heroku-api
deprecate client's dynos/workers/ps methods in favor of heroku-api
deprecate client's release methods in favor of heroku-api
deprecate client's logs methods in favor of heroku-api
deprecate client's features methods in favor of heroku-api
deprecate client's stacks methods in favor of heroku-api
remove deprecated client#release usage from addons
remove deprecated client#key usage from auth
bump heroku-api dep
avoid creating remote in git:clone if clone fails
deprecate client#auth in favor of heroku-api
more consistent usage errors and empty list for certs
better errors and messaging for certs
use heroku-api to retrieve release in addons_run
fix ssl command by using heroku.rb/json responses
deprecate client's rake/start methods in favor of rendezvous
2.30.1 07/25/2012
=================
clearer, more consistent usage errors for pg
fix labs commands when no app is specified
simplify/shorten pg:wait logic
more consistent deprecation message for heroku run:console
2.30.0 07/25/2012
=================
more consistent header display for config
more consistent messaging for no addons for app message
add period to addons:docs suggestions
simplify wording around modifying addons
clarify wording for addons up/down-grade messaging
more consistent usage errors for addons:(docs|open)
bump to heroku-api 0.3.0 (escapes config/domains/keys)
add maintenance command to display apps maintenance status
wait for launchy to finish before continuing
more consistent usage/help for config and ps
update tests to match new usage messages
exact match to an addon type should not be treated as ambiguous by addon:docs
fix messaging around opening addons:docs with exact matches
more consistent deprecation messaging for logs:drains
remove no longer used Heroku::Command::Help.usage_for_command
standardize pgbackups table display with display_table
more consistent --confirm handling
more explicit apps examples
add git:remote command to seutp heroku remote
more explicit output for pg when app has no databases
defer to index in pg:info without argument
backport domain_names fix to deal with v2 api data format
2.29.0 07/19/2012
=================
more consistent usage error for apps:rename
fix apps:info -r to properly include addons/collaborators
display addon names, rather than descriptions, from apps:info
avoid displaying postgres follower credentials
warn, then `run console` for `console` on cedar
add `git:clone` to clone an apps repo and setup heroku remote
clearer update messaging when already up to date
display installed plugins in nice error output
consolidate/centralize nice error handling/display
fix an intermitent spec failure in confirm_command
bump heroku.rb to get a fix for nonblock errors and readline
more consistent usage error for config:get
update docs for addons:remove to reflect one or more usage
2.28.15 07/17/2012
==================
bump heroku-api for subsequent proxy fixes
2.28.14 07/16/2012
==================
updated release stuff to describe changelog task
reduce space between columns in styled_array
bump heroku-api version for further proxy fixes
2.28.13 07/16/2012
==================
update apps:create to use consistent helpers
fix -h to work with namespaces without index commands
fix confirm_command to work properly in Heroku::Command context
remove legacy rails related warning from failed plugin installation
make version dependency explicit (used by user-agent)
bump to latest heroku-api to get excon proxy fixes
add post install toolbelt recommendation for gem
updated release to mention fisticuffs
2.28.12 07/11/2012
==================
output app name from api response instead of passed param
fix auth spec to avoid deleting local credentials
bump heroku.rb, returning to always using okjson
2.28.11 07/11/2012
==================
fix for pg:info sometimes not labelling DATABASE_URL
allow apps:create -a myapp to use myapp as the new app name
update apps:create examples to reflect cedar as default
clearer messaging around ssh key creation/upload errors
skip plugins:update for symlinked plugins
2.28.10 07/06/2012
==================
fix certs command to prevent TIME_FORMAT defined warning
2.28.9 07/06/2012
=================
ensure rest_client is required for console commands
handle nil short names in addons:list
avoid displaying nil message after addons:remove
require rest_client in 1.8.6 as rescue/reraise fails
remove simplecov
bump to latest heroku.rb and excon
2.28.8 07/03/2012
=================
fix errors related to excon refactoring
ensure that plugins directory exists before installing plugins
2.28.7 06/27/2012
=================
fix inverted logic in updater version check
2.28.6 06/27/2012
=================
fixes for heroku-api and rest_client availability in error handling
fix updater version checking
fix user_agent setting for updater
2.28.5 06/26/2012
=================
replace maximum_version in updater with simpler compare_versions
fix regression around heroku-api not being required prior to login
require excon in updater as heroku-api won't have been required
2.28.4 06/26/2012
=================
fix user agent for pkg toolbelt
defer rest_client and heroku-api load
2.28.3 06/25/2012
=================
further fixes around config value parsing/display
update to latest netrc
2.28.2 06/22/2012
=================
strip color codes for windows consoles
fix inverted logic in updater inject_libpath
2.28.1 06/22/2012
=================
handle occasional [['base', 'message']] errors
make ps sort numerically
add experimental rpm packaging
dup shift_argument to avoid frozen strings
only set sync when stdin/stdout are tty
reload updater in inject_loadpath
fix error formatting in plugins:update
fix display of quoted config values
2.28.0 06/20/2012
=================
fix pg:unfollow specs to better reflect real usage
add tests to pg resolver for uri and SHARED_DATABASE arguments
suggest `addons:docs` instead of listing doc urls after addon modification
version now displays additional info (like user-agent)
update plugin load errors to be inline with pretty errors
improved plugin:install using git clone instead of checkout
add plugin:update to update all (or specified) plugins
add non-default host and proxy settings to nice errors
set special user agent when doing autoupdate
set stdin/stdout sync to avoid buffering
get updates through toolbelt app to allow better metric tracking
remove rubygems dependency from updater
allow HEROKU_APP to provide a default app value to commands
2.27.3 06/15/2012
=================
fix for pg:unfollow
preserve order of data in pg:info
2.27.2 06/15/2012
=================
properly preserve capitalization of plugin arguments
clear status after it is displayed
cleanup apps:destroy to clarify explicit vs implicit app arg
simplify by removing downcase from shift_argument
2.27.1 06/14/2012
=================
fix resolver to deal with postgres:// style input
require rbuygems for updater, needed for version comparison
2.27.0 06/14/2012
=================
only load ~/.heroku/client if it is newer than installed version
only complete update if downloaded version is newer
more consistent help for config:remove and add config:unset alias
add config:get to return a single config value
default to config set/get and make add/remove aliases
move interrupt rescue to CLI.start so that toolbelts get it too
skip inject_libpath on deb toolbelt
add magic comment for UTF-8 to toolbelt bin files
consolidate rubygems load attempt (remove duplication in toolbelt bins)
remove deprecated services api
centralize/expand user agents and give toolbelt a non-gem user agent
make background autoupdate opt in based on presence of ~/.heroku/autoupdate
newer libssl for deb
nicer error formatting with suggestions on getting help
line_formatter no longer fails on nil values in arrays
2.26.7 06/11/2012
=================
add rendezvous related specs
tweak unknown command error message for clarity
bump netrc to get cygwin permissions fix
loosen time ago so that it can display '24h ago'
update netrc to allow for encrypted files
fix billing link in confirm_billing
allow port/scheme overide for HEROKU_HOST
properly send release with rollback command
re-promote master databases after pg:reset
fix pg:info to work properly with shared databases
update rollback to work/display more consistently
add status specs, update status formatting
simplify specs by stubbing time_ago (instead of time)
loosen shared_database matchers to fix failing shared database commands
2.26.6 06/04/2012
=================
updates to release process
fixes for SHARED_DATABASE recognition and reset
2.26.5 06/01/2012
=================