forked from heroku/legacy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1875 lines (1526 loc) · 54.2 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.42.25 2015-12-08
==================
Use system & exit on windows when non-ascii args
3.42.24 2015-12-04
==================
Revert exec to shellescape while I fix windows bug
3.42.23 2015-12-03
==================
Update RELEASE-FULL.md OSX notes
switch to osslsigncode to fix windows installs
upgrade ruby to 2.1.7 and git to 2.6.3 on windows
small copy tweak
clear up unknown database error
Remove rendezvous spec that fails when not a tty
Add plugins:command to track progress
spaces: ensure we still request version 3
Change exec(args) to exec(shelljoin(string))
Remove readline dep & unused protected methods
show extra plugin info
Be more descriptive about uninstalling Accounts
Fix Windows cryllic character from ENV issues
3.42.22 2015-11-18
==================
prefix update messaging
update v4 plugins when running plugins:update
Adding verification test for config:get not found
use $XDG_DATA_HOME if available
Adding test for config:get --shell not found
Use attachment SSO url if it can be determined
Fixing tests so they can run under windows
Making the required init-wine task more obvious
Freeze net-ssh to 2.9.2 to preserve 1.9.3 support
3.42.21 2015-10-30
==================
Remove protocol prefix for buildpack URN
Fix documentation for pg:maintenance
Use v4 for login
Hide updating on windows
Remove v3 domain name variant
3.42.20 2015-10-10
==================
Prevent running v4 hidden commands by default
3.42.19 2015-10-10
==================
Fix help indices for v4 topics
3.42.18 2015-10-09
==================
Fix LOCALAPPDATA dir on Windows with non-ASCII characters
Increase timeout when downloading v4
3.42.17 2015-10-09
==================
Make utf-8 the default encoding
3.42.16 2015-10-08
==================
Improve handling of shareable addons with postgres
Fix bug that deleted v4 if there was an issue reading commands
Ensure windows uninstall will remove everything
Update asynchronously
Report errors in removing old versions to rollbar
3.42.15 2015-09-31
==================
Catch all errors when attempting to delete old v4 release
3.42.14 2015-09-30
==================
Ensure v4 is not 4.24.* which won't autoupdate on Windows
Revert cygwin patch in 3.42.6 since it broke git bash
3.42.13 2015-09-30
==================
Resolve add-ons for pg:* commands with API
3.42.12 2015-09-29
==================
Fixed help for v4 commands that are overridden (such as `addons`)
3.42.11 2015-09-28
==================
Reverted addon removal until all v4 clients have it
3.42.10 2015-09-28
==================
Moved addons to v4
3.42.9 2015-09-28
=================
Updated Gemfile.lock
3.42.8 2015-09-28
=================
Fixed auto-login with --app flags
3.42.7 2015-09-28
=================
Moved heroku-cli back to ~/.heroku/heroku-cli
3.42.6 2015-09-28
=================
Fix cygwin exec
3.42.5 2015-09-28
=================
Move v4 windows directory to LOCALAPPDATA
3.42.4 2015-09-28
=================
Move v4 windows directory to LOCALAPPDIR
Move help logic to v3
Fix cygwin setup
Fix for non-ascii windows home directories
Allow debian users to manually update v4
Fully deprecate ddollar/heroku-accounts
3.42.3 2015-09-22
=================
Require v4 CLI for all commands
3.42.2 2015-09-21
=================
Fix heroku-account deprecation warning
3.42.1 2015-09-21
=================
Re-release of 3.42.0
3.42.0 2015-09-21
=================
Resolve addons with API
Consolidate addon output
Use HEROKU_FORCE for pg:* commands
Add support for CET and CEST zones
Added v4 2fa shim
Fixed login under windows machines without crtdll
Ensure HEROKU_HEADERS is used with orgs requests
Make warning for using heroku-accounts more admonishing
Display current dyno formation with ps:scale
Added HEROKU_DEBUG_HEADERS flag
Lock gem versions down
Fix domains call with very large number of domains
Removed redis shim
3.41.5 2015-08-31
=================
Added preauth to pg:backups capture
Fixed buildpack set with buildpack at end of list
Fix addons:open service plan resolution
Remove extra SQL command for execsql
3.41.4 2015-08-24
=================
Always display unjoined org apps
Ensure HEROKU_HEADERS are used for pg:backups commands
HEROKU_DEBUG improvements
Support custom kernels (internal only)
3.41.3 2015-08-12
=================
Fix incomplete release
3.41.2 2015-08-12
=================
Fix OSX releases without homebrew
3.41.1 2015-08-12
=================
Fix debian releases without foreman
3.41.0 2015-08-12
=================
Fixed OSX installer for El Capitan
Removed foreman in place of heroku local
3.40.11 2015-08-11
==================
Removed auto-tier switching logic
3.40.10 2015-08-11
==================
Update dyno costs
3.40.9 2015-08-04
=================
Update dyno costs
Use resource name for pg services
Fixed bugs with pgbackups
3.40.7 2015-07-29
=================
Automatic SSH tunneling for HPG
3.40.6 2015-07-23
=================
Fix for space conflicts wrt HEROKU_ORGANIZATION
3.40.5 2015-07-22
=================
Add space option to apps, apps:info, and apps:create
Change addons:add to addons:create
Clarify release guide
Display provider messages for addons upgrade/downgrade
block specifying both space and org to app list
3.39.5 2015-07-10
=================
Group attachments by resource in pg:info
Added missing method used in pg:links
Fixed pg for sudo commands
Updated help for local
Fixed SSL bug with devclouds and org api
3.39.4 2015-07-06
=================
Fixed bug with v4 command name splitting
3.39.2 2015-07-03
=================
Error out if v4 plugin fails to install
Updated domains command
Fix v4 commands with ':' in command name
Fixed ps pricing for unknown types
3.39.1 2015-06-26
=================
Fix pg:links remote resolver
3.39.0 2015-06-24
=================
Add pg:links command
3.38.3 2015-06-19
=================
Added HEROKU_HEADERS to append extra request headers
3.38.2 2015-06-19
=================
Added --wait-interval to pgbackups commands
Fixed minor display bug with ps:scale
Added default flag for v4 commands
3.38.1 2015-06-15
=================
Fix ps:type for new process types
Made ps:type output consistent
3.38.0 2015-06-15
=================
Fix ps:scale for new process types
3.37.7 2015-06-11
=================
pgbackups bug fixes https://github.com/heroku/heroku/pull/1604
Ensure errors are shown when there is an error displaying the error
3.37.6 2015-06-03
=================
Fix non-ascii windows username issue for Ruby 2.0+
Increased pgbackups polling sleep interval to prevent rate limiting
3.37.5 2015-06-01
=================
Fixed auth:whoami on first run
3.37.4 2015-06-01
=================
Use toolbelt v4 for auth:whoami
Fix ps:scale with Standard-1X dynos
Fix arm support on some machines
Allow pg:backups cancel to take an optional transfer name
Fix sorting on pg:backups
Fixed config:unset for paranoid apps
3.37.3 2015-05-28
=================
Added arm support for Toolbelt v4
3.37.2 2015-05-27
=================
Made confirmation language clearer for pg:copy
Add --force-colors to logs
Removed switzerland variant
Display price of add-on plan on some commands
3.37.1 2015-05-18
=================
Hide hidden commands
Fixed bug with copying cacert when `~/.heroku` does not exist
3.37.0 2015-05-16
=================
Fixed bug in updater checking version strings
3.36.11 2015-05-15
==================
Allow HEROKU_SSL_VERIFY=disable for v4 setup
3.36.10 2015-05-15
==================
Updated CA Certs
Add cacert.pem to ~/.heroku for use in v4 CLI
Fix pgbackups:unschedule issues
3.36.8 2015-05-14
=================
Changed fork to use --from and --to instead of --app
Added note that process types must be alphanumeric for ps:scale
Fixed issues with DATABASE_URL
Fixed display of addon attachments when specifying attachment name
Improved updating text
3.36.7 2015-05-12
=================
Update plugins if they fail to load
Show message for ps validation
Moved heroku status to v4 CLI
3.36.6 2015-05-12
=================
Fixed bug with pgbackups polling
Fixed plugin command help
Fixed rbconfig bug on ruby 1.9.2
3.36.5 2015-05-11
=================
Added redis commands
Added plugins:link v4 shim
Bug fixe for users with partial privileges on apps:info
Removed usage tracking
3.36.4 2015-05-07
=================
Made v4 autofix safer
3.36.3 2015-05-07
=================
Autofix broken v4 installs
More robust backup polling
3.36.2 2015-05-07
=================
Documented new run functionality
Fixed issue on windows with spaces in username
Show warning if Toolbelt is currently updating
3.36.1 2015-05-07
=================
Big performance boost to v4 commands by running them before v3 is setup
Optimize ruby require order
3.36.0 2015-05-06
=================
Included hpg addon:create shortcuts from heroku-pg-extras
Add quota indicator for ps
Show release update warnings less frequently
Switch to v4 version of maintenance commands
Switch to v4 version of git commands
3.35.1 2015-05-05
=================
Enabled v4 version of run for commands with a '--' argument
3.35.0 2015-05-05
=================
Added --exit-code flag to run command
Fixed addons:open for paranoid apps
3.34.0 2015-05-04
=================
Pull in heroku-addon-attachments plugin
3.33.0 2015-05-01
=================
Added shell flag to config:get
Renamed buildpack to buildpacks
Removed shell escaping from config:get --shell if it is not a tty
Fixed bug when api returned no certificate on certs:info
Added output for pg:backups commands
Merged the dyno-types plugin
Allow cedar-10 as stack in apps:create
3.32.0 2015-04-21
=================
Added new fork implementation
Added --verbose option to pg:ps
Fixed bug with pg in_maintenance? flag
Fixed issue with windows home folders and non-ascii characters
No longer exits if netrc is missing but HEROKU_API_KEY is provided
3.31.3 2015-04-09
=================
Fixed some bugs around pg:backups
Fixed v4 download on windows
Add FreeBSD as supported os for v4
3.31.2 2015-04-08
=================
Downgraded bundled version of rest-client to one that does not require ffi on windows
3.31.1 2015-04-08
=================
Removed windows-specific gems from Gemfile.lock
3.31.0 2015-04-08
=================
Removed support for Ruby 1.8.7
Updated all dependencies to latest
Show backups that will be migrated from PGBackups
3.30.6 2015-04-02
=================
Skipped calling of `stty icanon echo` on Windows
Updated 1.8.7 warning
3.30.5 2015-04-02
=================
Added warning for ruby 1.8.7
3.30.4 2015-04-01
=================
Postgres backups cleanup and fixes
3.30.3 2015-03-21
=================
Reverted v4 fork implmentation
3.30.2 2015-03-19
=================
Made updater also update v4 if it is setup
3.30.1 2015-03-19
=================
Updated gems
3.30.0 2015-03-18
=================
New fork implementation
Only show request ids on error
3.29.0 2015-03-17
=================
Fixed architecture detection on jruby for jsplugins
Relaxed version requirement for multi_json
Added request ID logging on API errors
3.28.6 2015-03-11
=================
Changed fork to use new pgbackup implementation
Show who is using psql and how
Present cedar as cedar-10
Use full_host_uri.host for checking netrc
3.28.4 2015-03-10
=================
Reverted new pgbackup implementation for fork
3.28.3 2015-03-09
=================
Show message that toolbelt v4 is installing
Changed fork to use new pgbackup implementation
3.28.2 2015-03-02
=================
Fixed bug with --wait-interval flag for pg:wait
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)