summarylogtreecommitdiffstats
path: root/CHANGELOG.md
blob: 9b1255c4e6872cccc372cd61f572f6136838d0d3 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
# Changelog

## [v4.2.0](https://github.com/fastly/cli/releases/tag/v4.2.0) (2022-10-18)

[Full Changelog](https://github.com/fastly/cli/compare/v4.1.0...v4.2.0)

**Enhancements:**

* Service Authorization [#660](https://github.com/fastly/cli/pull/660)
* Add Object Store API calls [#670](https://github.com/fastly/cli/pull/670)
* Remove upper limit on Go toolchain [#678](https://github.com/fastly/cli/pull/678)

**Bug fixes:**

* Fix `compute pack` to produce expected `package.tar.gz` filename [#662](https://github.com/fastly/cli/pull/662)
* Fix `--help` flag to not display an error [#672](https://github.com/fastly/cli/pull/672)
* Fix command substitution issue for Windows OS [#677](https://github.com/fastly/cli/pull/677)
* Fix Makefile for Windows [#679](https://github.com/fastly/cli/pull/679)

## [v4.1.0](https://github.com/fastly/cli/releases/tag/v4.1.0) (2022-10-11)

[Full Changelog](https://github.com/fastly/cli/compare/v4.0.1...v4.1.0)

**Bug fixes:**

* Fix Rust validation step for fastly crate dependency [#661](https://github.com/fastly/cli/pull/661)
* Fix `compute build --first-byte-timeout` [#667](https://github.com/fastly/cli/pull/667)
* Ensure the ./bin directory is present even with `--skip-verification` [#665](https://github.com/fastly/cli/pull/665)

**Enhancements:**

* Reduce duplication of strings in logging package [#653](https://github.com/fastly/cli/pull/653)
* Support `cert_host` and `use_sni` Viceroy properties [#663](https://github.com/fastly/cli/pull/663)

## [v4.0.1](https://github.com/fastly/cli/releases/tag/v4.0.1) (2022-10-05)

[Full Changelog](https://github.com/fastly/cli/compare/v4.0.0...v4.0.1)

**Bug fixes:**

* Fix JS dependency lookup [#656](https://github.com/fastly/cli/pull/656)
* Fix Rust 'existing project' bug [#657](https://github.com/fastly/cli/pull/657)
* Fix Rust toolchain lookup regression [#658](https://github.com/fastly/cli/pull/658)

## [v4.0.0](https://github.com/fastly/cli/releases/tag/v4.0.0) (2022-10-04)

[Full Changelog](https://github.com/fastly/cli/compare/v3.3.0...v4.0.0)

**Enhancements:**

* Bump go-fastly to v6.5.1 [#635](https://github.com/fastly/cli/pull/635)
* Update `--ssl-ciphers` description [#636](https://github.com/fastly/cli/pull/636)
* Improve JS error message when a dependency is missing [#637](https://github.com/fastly/cli/pull/637)
* Change default service version selection behaviour [#638](https://github.com/fastly/cli/pull/638)
* Support for additional S3 storage classes [#641](https://github.com/fastly/cli/pull/641)
* Change `compute serve --watch` flag to default to the project root directory [#642](https://github.com/fastly/cli/pull/642)
* Document the newly supported Datadog sites for logging [#576](https://github.com/fastly/cli/pull/576)
* Move the internal build scripts to the fastly.toml manifest [#640](https://github.com/fastly/cli/pull/640)
* Implement `compute hashsum` [#649](https://github.com/fastly/cli/pull/649)
* Add support for TOML `object_store` section [#651](https://github.com/fastly/cli/pull/651)
* Add `--account-name` to GCS logging endpoint [#549](https://github.com/fastly/cli/pull/549)

**Bug fixes:**

* errors/log: be defensive against nil pointer dereference [#650](https://github.com/fastly/cli/pull/650)

**Documentation:**

* Fix typos [#652](https://github.com/fastly/cli/pull/652)

## [v3.3.0](https://github.com/fastly/cli/releases/tag/v3.3.0) (2022-09-05)

[Full Changelog](https://github.com/fastly/cli/compare/v3.2.5...v3.3.0)

**Enhancements:**

* TLS Support [#630](https://github.com/fastly/cli/pull/630)
* CI to use community TinyGo action [#624](https://github.com/fastly/cli/pull/624)
* Improve compute init remediation [#627](https://github.com/fastly/cli/pull/627)
* Change default Makefile target [#629](https://github.com/fastly/cli/pull/629)
* Refactor after remote config removal [#626](https://github.com/fastly/cli/pull/626)
* Refactor for revive linter [#632](https://github.com/fastly/cli/pull/632)

## [v3.2.5](https://github.com/fastly/cli/releases/tag/v3.2.5) (2022-08-10)

[Full Changelog](https://github.com/fastly/cli/compare/v3.2.4...v3.2.5)

**Enhancements:**

* Remove dynamic configuration [#620](https://github.com/fastly/cli/pull/620)
* Static analysis updates [#621](https://github.com/fastly/cli/pull/621)
* Semgrep updates [#619](https://github.com/fastly/cli/pull/619)

**Bug fixes:**

* Fix `fastly help` tests to work with Go 1.19 [#623](https://github.com/fastly/cli/pull/623)

## [v3.2.4](https://github.com/fastly/cli/releases/tag/v3.2.4) (2022-07-28)

[Full Changelog](https://github.com/fastly/cli/compare/v3.2.3...v3.2.4)

**Bug fixes:**

* Fix `--completion-script-zsh` [#617](https://github.com/fastly/cli/pull/617)

## [v3.2.3](https://github.com/fastly/cli/releases/tag/v3.2.3) (2022-07-28)

[Full Changelog](https://github.com/fastly/cli/releases/tag/v3.2.2...v3.2.3)

**Bug fixes:**

* Block for config update if CLI version updated [#615](https://github.com/fastly/cli/pull/615)

## [v3.2.2](https://github.com/fastly/cli/releases/tag/v3.2.2) (2022-07-28)

[Full Changelog](https://github.com/fastly/cli/compare/v3.2.1...v3.2.2)

**Bug fixes:**

* Ignore TTL & update config if app version doesn't match config version [#612](https://github.com/fastly/cli/pull/612)

## [v3.2.1](https://github.com/fastly/cli/releases/tag/v3.2.1) (2022-07-27)

[Full Changelog](https://github.com/fastly/cli/compare/v3.2.0...v3.2.1)

**Enhancements:**

* Print subprocess commands in verbose mode [#608](https://github.com/fastly/cli/pull/608)

**Bug fixes:**

* Ensure application configuration is updated after `fastly update` [#610](https://github.com/fastly/cli/pull/610)
* Don't include language manifest in packages [#609](https://github.com/fastly/cli/pull/609)

## [v3.2.0](https://github.com/fastly/cli/releases/tag/v3.2.0) (2022-07-27)

[Full Changelog](https://github.com/fastly/cli/compare/v3.1.1...v3.2.0)

**Enhancements:**

* Compute@Edge TinyGo Support [#594](https://github.com/fastly/cli/pull/594)
* `pkg/commands/profile`: add `--json` flag for `list` command [#602](https://github.com/fastly/cli/pull/602)

**Bug fixes:**

* `pkg/commands/compute/deploy.go` (`getHashSum`): sort key order [#596](https://github.com/fastly/cli/pull/596)
* `pkg/errors/log.go`: prevent runtime panic due to a `nil` reference [#601](https://github.com/fastly/cli/pull/601)

## [v3.1.1](https://github.com/fastly/cli/releases/tag/v3.1.1) (2022-07-04)

[Full Changelog](https://github.com/fastly/cli/compare/v3.1.0...v3.1.1)

**Enhancements:**

* Handle build info more accurately [#588](https://github.com/fastly/cli/pull/588)

**Bug fixes:**

* Fix version check [#589](https://github.com/fastly/cli/pull/589)
* Address profile data loss [#590](https://github.com/fastly/cli/pull/590)

## [v3.1.0](https://github.com/fastly/cli/releases/tag/v3.1.0) (2022-06-24)

[Full Changelog](https://github.com/fastly/cli/compare/v3.0.1...v3.1.0)

**Enhancements:**

* Implement `profile token` command [#578](https://github.com/fastly/cli/pull/578)

**Bug fixes:**

* Fix `compute publish --non-interactive` [#583](https://github.com/fastly/cli/pull/583)
* Support `fastly --help <command>` format [#581](https://github.com/fastly/cli/pull/581)

## [v3.0.1](https://github.com/fastly/cli/releases/tag/v3.0.1) (2022-06-23)

[Full Changelog](https://github.com/fastly/cli/compare/v3.0.0...v3.0.1)

**Enhancements:**

* Makefile: when building binary, depend on .go files [#579](https://github.com/fastly/cli/pull/579)
* Include `fastly.toml` hashsum [#575](https://github.com/fastly/cli/pull/575)
* Hash main.wasm and not the package [#574](https://github.com/fastly/cli/pull/574)

## [v3.0.0](https://github.com/fastly/cli/releases/tag/v3.0.0) (2022-05-30)

[Full Changelog](https://github.com/fastly/cli/compare/v2.0.3...v3.0.0)

**Breaking changes:**

* Implement new global flags for handling interactive prompts [#568](https://github.com/fastly/cli/pull/568)

**Bug fixes:**

* The `backend create` command should set `--port` value if specified [#566](https://github.com/fastly/cli/pull/566)
* Don't overwrite `file.Load` error with `nil` [#569](https://github.com/fastly/cli/pull/569)

**Enhancements:**

* Support `[scripts.post_build]` [#565](https://github.com/fastly/cli/pull/565)
* Support Viceroy "inline-toml" `format` and new `contents` field [#567](https://github.com/fastly/cli/pull/567)
* Add example inline-toml dictionary to tests [#570](https://github.com/fastly/cli/pull/570)
* Avoid config update checks when handling 'completion' flags [#554](https://github.com/fastly/cli/pull/554)

## [v2.0.3](https://github.com/fastly/cli/releases/tag/v2.0.3) (2022-05-20)

[Full Changelog](https://github.com/fastly/cli/compare/v2.0.2...v2.0.3)

**Bug fixes:**

* Update Sentry DSN [#563](https://github.com/fastly/cli/pull/563)

## [v2.0.2](https://github.com/fastly/cli/releases/tag/v2.0.2) (2022-05-18)

[Full Changelog](https://github.com/fastly/cli/compare/v2.0.1...v2.0.2)

**Enhancements:**

* Remove user identifiable data [#561](https://github.com/fastly/cli/pull/561)

## [v2.0.1](https://github.com/fastly/cli/releases/tag/v2.0.1) (2022-05-17)

[Full Changelog](https://github.com/fastly/cli/compare/v2.0.0...v2.0.1)

**Security:**

* Omit data from Sentry [#559](https://github.com/fastly/cli/pull/559)

## [v2.0.0](https://github.com/fastly/cli/releases/tag/v2.0.0) (2022-04-05)

[Full Changelog](https://github.com/fastly/cli/compare/v1.7.1...v2.0.0)

**Bug fixes:**

* Update `--request-max-entries`/`--request-max-bytes` description defaults [#541](https://github.com/fastly/cli/pull/541)

**Enhancements:**

* Add `--debug` flag to `compute serve` [#545](https://github.com/fastly/cli/pull/545)
* Support multiple profiles via `[profiles]` configuration [#546](https://github.com/fastly/cli/pull/546)
* Reorder C@E languages and make JS 'Limited Availability' [#548](https://github.com/fastly/cli/pull/548)

## [v1.7.1](https://github.com/fastly/cli/releases/tag/v1.7.1) (2022-03-14)

[Full Changelog](https://github.com/fastly/cli/compare/v1.7.0...v1.7.1)

**Bug fixes:**

* Fix runtime panic in arg parser [#542](https://github.com/fastly/cli/pull/542)

## [v1.7.0](https://github.com/fastly/cli/releases/tag/v1.7.0) (2022-02-22)

[Full Changelog](https://github.com/fastly/cli/compare/v1.6.0...v1.7.0)

**Enhancements:**

* Add `fastly` user to Dockerfiles [#521](https://github.com/fastly/cli/pull/521)
* Support Sentry 'suspect commit' feature [#508](https://github.com/fastly/cli/pull/508)
* Populate language manifest `name` field with project name [#527](https://github.com/fastly/cli/pull/527)
* Make `--name` flag for `service search` command a required flag [#529](https://github.com/fastly/cli/pull/529)
* Update config `last_checked` field even on config load error [#528](https://github.com/fastly/cli/pull/528)
* Implement Compute@Edge Free Trial Activation [#531](https://github.com/fastly/cli/pull/531)
* Bump Rust toolchain constraint to `1.56.1` for 2021 edition [#533](https://github.com/fastly/cli/pull/533533533533533)
* Support Arch User Repositories [#530](https://github.com/fastly/cli/pull/530)

## [v1.6.0](https://github.com/fastly/cli/releases/tag/v1.6.0) (2022-01-20)

[Full Changelog](https://github.com/fastly/cli/compare/v1.5.0...v1.6.0)

**Enhancements:**

* Display the requested command in Sentry breadcrumb [#519](https://github.com/fastly/cli/pull/519)

## [v1.5.0](https://github.com/fastly/cli/releases/tag/v1.5.0) (2022-01-20)

[Full Changelog](https://github.com/fastly/cli/compare/v1.4.0...v1.5.0)

**Enhancements:**

* Implement `--json` output for describe/list operations [#505](https://github.com/fastly/cli/pull/505)
* Omit unix file permissions from error message [#507](https://github.com/fastly/cli/pull/507)
* Implement new go-fastly pagination types [#511](https://github.com/fastly/cli/pull/511)

## [v1.4.0](https://github.com/fastly/cli/releases/tag/v1.4.0) (2022-01-07)

[Full Changelog](https://github.com/fastly/cli/compare/v1.3.0...v1.4.0)

**Enhancements:**

* Add `viceroy.ttl` to CLI app config [#489](https://github.com/fastly/cli/pull/489)
* Display `viceroy --version` if installed [#487](https://github.com/fastly/cli/pull/487)
* Support `compute build` for 'other' language option using `[scripts.build]` [#484](https://github.com/fastly/cli/pull/484)
* Pass parent environment to subprocess [#491](https://github.com/fastly/cli/pull/491)
* Implement a yes/no user prompt abstraction [#500](https://github.com/fastly/cli/pull/500)
* Ensure build compilation errors are displayed [#492](https://github.com/fastly/cli/pull/492)
* Implement `--service-name` as swap-in replacement for `--service-id` [#495](https://github.com/fastly/cli/pull/495)
* Support `FASTLY_CUSTOMER_ID` environment variable [#494](https://github.com/fastly/cli/pull/494)
* Support `gotest` [#501](https://github.com/fastly/cli/pull/501)

**Bug fixes:**

* Fix the `--watch` flag for AssemblyScript [#493](https://github.com/fastly/cli/pull/493)
* Fix `compute init --from` for Windows [#490](https://github.com/fastly/cli/pull/490)
* Avoid triggering GitHub API rate limit when running Viceroy in CI [#488](https://github.com/fastly/cli/pull/488)
* Fix Windows ANSI escape code rendering [#503](https://github.com/fastly/cli/pull/503)
* Prevent runtime panic when global flag set with no command [#502](https://github.com/fastly/cli/pull/502)

## [v1.3.0](https://github.com/fastly/cli/releases/tag/v1.3.0) (2021-12-01)

[Full Changelog](https://github.com/fastly/cli/compare/v1.2.0...v1.3.0)

**Enhancements:**

* Implement custom `[scripts.build]` operation [#480](https://github.com/fastly/cli/pull/480)
* Move `manifest` package into top-level `pkg` directory [#478](https://github.com/fastly/cli/pull/478)
* Refactor AssemblyScript logic to call out to the JavaScript implementation [#479](https://github.com/fastly/cli/pull/479)

## [v1.2.0](https://github.com/fastly/cli/releases/tag/v1.2.0) (2021-11-25)

[Full Changelog](https://github.com/fastly/cli/compare/v1.1.1...v1.2.0)

**Enhancements:**

* Implement `SEE ALSO` section in help output [#472](https://github.com/fastly/cli/pull/472)
* Add command 'API' metadata [#473](https://github.com/fastly/cli/pull/473)

## [v1.1.1](https://github.com/fastly/cli/releases/tag/v1.1.1) (2021-11-11)

[Full Changelog](https://github.com/fastly/cli/compare/v1.1.0...v1.1.1)

**Bug fixes:**

* Avoid displaying a wildcard domain [#468](https://github.com/fastly/cli/pull/468)
* Set sensible defaults for host related flags on `backend create` [#469](https://github.com/fastly/cli/pull/469)
* Fix error extracting package files from `.tgz` archive [#470](https://github.com/fastly/cli/pull/470)

## [v1.1.0](https://github.com/fastly/cli/releases/tag/v1.1.0) (2021-11-08)

[Full Changelog](https://github.com/fastly/cli/compare/v1.0.1...v1.1.0)

**Enhancements:**

* Implement `--watch` flag for `compute serve` [#464](https://github.com/fastly/cli/pull/464)

## [v1.0.1](https://github.com/fastly/cli/releases/tag/v1.0.1) (2021-11-08)

[Full Changelog](https://github.com/fastly/cli/compare/v1.0.0...v1.0.1)

**Bug fixes:**

* Allow git repo to be used as a value at the starter kit prompt [#465](https://github.com/fastly/cli/pull/465)

## [v1.0.0](https://github.com/fastly/cli/releases/tag/v1.0.0) (2021-11-02)

[Full Changelog](https://github.com/fastly/cli/compare/v0.43.0...v1.0.0)

**Changed:**

* Use `EnumsVar` for `auth-token --scope` [#447](https://github.com/fastly/cli/pull/447)
* Rename `logs tail` to `log-tail` [#456](https://github.com/fastly/cli/pull/456)
* Rename `dictionaryitem` to `dictionary-item` [#459](https://github.com/fastly/cli/pull/459)
* Rename `fastly compute ... --path` flags [#460](https://github.com/fastly/cli/pull/460)
* Rename `--force` to `--skip-verification` [#461](https://github.com/fastly/cli/pull/461)

## [v0.43.0](https://github.com/fastly/cli/releases/tag/v0.43.0) (2021-11-01)

[Full Changelog](https://github.com/fastly/cli/compare/v0.42.0...v0.43.0)

**Bug fixes:**

* Ignore possible `rustup` 'sync' output when calling `rustc --version` [#453](https://github.com/fastly/cli/pull/453)
* Bump goreleaser to avoid Homebrew warning [#455](https://github.com/fastly/cli/pull/455)
* Prevent `.Hidden()` flags/commands from being documented via `--format json` [#454](https://github.com/fastly/cli/pull/454)

## [v0.42.0](https://github.com/fastly/cli/releases/tag/v0.42.0) (2021-10-22)

[Full Changelog](https://github.com/fastly/cli/compare/v0.41.0...v0.42.0)

**Enhancements:**

* Fallback to existing viceroy binary in case of network error [#445](https://github.com/fastly/cli/pull/445)
* Remove `text.ServiceType` abstraction [#449](https://github.com/fastly/cli/pull/449)

**Bug fixes:**

* Avoid fetching packages when manifest exists [#448](https://github.com/fastly/cli/pull/448)
* Implement `--path` lookup fallback for manifest [#446](https://github.com/fastly/cli/pull/446)
* Fix broken Windows support [#450](https://github.com/fastly/cli/pull/450)

## [v0.41.0](https://github.com/fastly/cli/releases/tag/v0.41.0) (2021-10-19)

[Full Changelog](https://github.com/fastly/cli/compare/v0.40.2...v0.41.0)

**Enhancements:**

* Implement `[setup.log_endpoints.<name>]` support [#443](https://github.com/fastly/cli/pull/443)
* The `compute init --from` flag should support archives [#428](https://github.com/fastly/cli/pull/428)
* Add region support for logentries logging endpoint [#375](https://github.com/fastly/cli/pull/375)

## [v0.40.2](https://github.com/fastly/cli/releases/tag/v0.40.2) (2021-10-14)

[Full Changelog](https://github.com/fastly/cli/compare/v0.40.1...v0.40.2)

**Bug fixes:**

* Fix shell autocomplete evaluation [#441](https://github.com/fastly/cli/pull/441)

## [v0.40.1](https://github.com/fastly/cli/releases/tag/v0.40.1) (2021-10-14)

[Full Changelog](https://github.com/fastly/cli/compare/v0.40.0...v0.40.1)

**Bug fixes:**

* Fix shell completion (and Homebrew upgrade) [#439](https://github.com/fastly/cli/pull/439)

## [v0.40.0](https://github.com/fastly/cli/releases/tag/v0.40.0) (2021-10-13)

[Full Changelog](https://github.com/fastly/cli/compare/v0.39.3...v0.40.0)

**Bug fixes:**

* Auto-migrate `manifest_version` from 1 to 2 when applicable [#434](https://github.com/fastly/cli/pull/434)
* Better error handling for manifest parsing [#436](https://github.com/fastly/cli/pull/436)

**Enhancements:**

* Implement `[setup.dictionaries]` support [#431](https://github.com/fastly/cli/pull/431)
* Tests for `[setup.dictionaries]` support [#438](https://github.com/fastly/cli/pull/438)
* Refactor `app.Run()` [#429](https://github.com/fastly/cli/pull/429)
* Ensure manifest is read only once for all missed references [#433](https://github.com/fastly/cli/pull/433)

## [v0.39.3](https://github.com/fastly/cli/releases/tag/v0.39.3) (2021-10-06)

[Full Changelog](https://github.com/fastly/cli/compare/v0.39.2...v0.39.3)

**Bug fixes:**

* Add missing description for `user list --customer-id` [#425](https://github.com/fastly/cli/pull/425)
* Trim the rust version to fix parse errors [#427](https://github.com/fastly/cli/pull/427)

**Enhancements:**

* Abstraction layer for `[setup.backends]` [#421](https://github.com/fastly/cli/pull/421)

## [v0.39.2](https://github.com/fastly/cli/releases/tag/v0.39.2) (2021-09-29)

[Full Changelog](https://github.com/fastly/cli/compare/v0.39.1...v0.39.2)

**Bug fixes:**

* Provide better remediation for unrecognised `manifest_version` [#422](https://github.com/fastly/cli/pull/422)
* Bump `go-fastly` to `v5.0.0` to fix ACL entries bug [#417](https://github.com/fastly/cli/pull/417)
* Remove Rust debug flags [#416](https://github.com/fastly/cli/pull/416)

**Enhancements:**

* Clarify Starter Kit options in `compute init` flow [#418](https://github.com/fastly/cli/pull/418)
* Avoid excessive manifest reads [#420](https://github.com/fastly/cli/pull/420)

## [v0.39.1](https://github.com/fastly/cli/releases/tag/v0.39.1) (2021-09-21)

[Full Changelog](https://github.com/fastly/cli/compare/v0.39.0...v0.39.1)

**Bug fixes:**

* Bug fixes for `auth-token` [#413](https://github.com/fastly/cli/pull/413)

## [v0.39.0](https://github.com/fastly/cli/releases/tag/v0.39.0) (2021-09-21)

[Full Changelog](https://github.com/fastly/cli/compare/v0.38.0...v0.39.0)

**Enhancements:**

* Implement `user` commands [#406](https://github.com/fastly/cli/pull/406)
* Implement `auth-token` commands [#409](https://github.com/fastly/cli/pull/409)
* Add region support for New Relic logging endpoint [#378](https://github.com/fastly/cli/pull/378)

**Bug fixes:**

* Add the `--name` flag to `compute deploy` [#410](https://github.com/fastly/cli/pull/410)

## [v0.38.0](https://github.com/fastly/cli/releases/tag/v0.38.0) (2021-09-15)

[Full Changelog](https://github.com/fastly/cli/compare/v0.37.1...v0.38.0)

**Enhancements:**

* Add support for `override_host` to Local Server configuration [#394](https://github.com/fastly/cli/pull/394)
* Add support for Dictionaries to Local Server configuration [#395](https://github.com/fastly/cli/pull/395)
* Integrate domain validation [#402](https://github.com/fastly/cli/pull/402)
* Refactor Versioner `GitHub.Download()` logic [#403](https://github.com/fastly/cli/pull/403)

**Bug fixes:**

* Pass down `compute publish --name` to `compute deploy` [#398](https://github.com/fastly/cli/pull/398)
* Sanitise name when packing the wasm file [#401](https://github.com/fastly/cli/pull/401)
* Use a non-interactive progress writer in non-TTY environments [#405](https://github.com/fastly/cli/pull/405)

**Removed:**

* Remove support for Scoop, the Window's command-line installer [#396](https://github.com/fastly/cli/pull/396)
* Remove unused 'rename local binary' code [#399](https://github.com/fastly/cli/pull/399)

## [v0.37.1](https://github.com/fastly/cli/releases/tag/v0.37.1) (2021-09-06)

[Full Changelog](https://github.com/fastly/cli/compare/v0.37.0...v0.37.1)

**Enhancements:**

- Bump `go-github` dependency to latest release [#388](https://github.com/fastly/cli/pull/388)
- Add Service ID to `--verbose` output [#383](https://github.com/fastly/cli/pull/383)

**Bug fixes:**

- Download Viceroy to a _randomly_ generated directory [#386](https://github.com/fastly/cli/pull/386)
- Bug fix for ensuring assets are downloaded into a randomly generated directory [#389](https://github.com/fastly/cli/pull/389)

## [v0.37.0](https://github.com/fastly/cli/releases/tag/v0.37.0) (2021-09-03)

[Full Changelog](https://github.com/fastly/cli/compare/v0.36.0...v0.37.0)

**Enhancements:**

<!-- - GitHub Packages support via goreleaser [#262](https://github.com/fastly/cli/pull/262) -->
- Update CLI config using flag on `update` command [#382](https://github.com/fastly/cli/pull/382)
- Validate package size doesn't exceed limit [#380](https://github.com/fastly/cli/pull/380)
- Log tailing should respect the configured `--endpoint` [#374](https://github.com/fastly/cli/pull/374)
- Support Windows arm64 [#372](https://github.com/fastly/cli/pull/372)
- Refactor compute deploy logic to better support `[setup]` configuration [#370](https://github.com/fastly/cli/pull/370)
- Omit messaging when using `--accept-defaults` [#366](https://github.com/fastly/cli/pull/366)
- Implement `[setup]` configuration for backends [#355](https://github.com/fastly/cli/pull/355)
- Refactor code to help CI performance [#360](https://github.com/fastly/cli/pull/360)

**Bug fixes:**

- Add executable permissions to Viceroy binary after renaming/moving it [#368](https://github.com/fastly/cli/pull/368)
- Update rust toolchain validation steps [#371](https://github.com/fastly/cli/pull/371)

**Security:**

- Update dependency to avoid dependabot warning in GitHub UI [#381](https://github.com/fastly/cli/pull/381)

## [v0.36.0](https://github.com/fastly/cli/releases/tag/v0.36.0) (2021-07-30)

[Full Changelog](https://github.com/fastly/cli/compare/v0.35.0...v0.36.0)

**Enhancements:**

- Implement `logging newrelic` command [#354](https://github.com/fastly/cli/pull/354)

## [v0.35.0](https://github.com/fastly/cli/releases/tag/v0.35.0) (2021-07-29)

[Full Changelog](https://github.com/fastly/cli/compare/v0.34.0...v0.35.0)

**Enhancements:**

- Support for Compute@Edge JS SDK (Beta) [#347](https://github.com/fastly/cli/pull/347)
- Implement `--override-host` and `--ssl-sni-hostname` [#352](https://github.com/fastly/cli/pull/352)
- Implement `acl` command [#350](https://github.com/fastly/cli/pull/350)
- Implement `acl-entry` command [#351](https://github.com/fastly/cli/pull/351)
- Separate command files from other logic files [#349](https://github.com/fastly/cli/pull/349)
- Log a record of errors to disk [#340](https://github.com/fastly/cli/pull/340)

**Bug fixes:**

- Fix nondeterministic flag parsing [#353](https://github.com/fastly/cli/pull/353)
- Fix `compute serve --addr` description to reference port requirement [#348](https://github.com/fastly/cli/pull/348)

## [v0.34.0](https://github.com/fastly/cli/releases/tag/v0.34.0) (2021-07-16)

[Full Changelog](https://github.com/fastly/cli/compare/v0.33.0...v0.34.0)

**Enhancements:**

- Implement `compute serve` subcommand [\#252](https://github.com/fastly/cli/pull/252)
- Simplify logic for prefixing fastly spec to file [\#345](https://github.com/fastly/cli/pull/345)
- `fastly compute publish` and `deploy` should accept a comment [\#328](https://github.com/fastly/cli/pull/328)
- Improve GitHub Actions intermittent test timeouts [\#336](https://github.com/fastly/cli/pull/336)
- New flags for displaying the CLI config, and its location [\#338](https://github.com/fastly/cli/pull/338)
- Don't allow stats short help to wrap [\#331](https://github.com/fastly/cli/pull/331)

**Bug fixes:**

- Ensure incompatibility message only shown when config is invalid [\#335](https://github.com/fastly/cli/pull/335)
- Check-in static config for traditional golang workflows [\#337](https://github.com/fastly/cli/pull/337)

## [v0.33.0](https://github.com/fastly/cli/releases/tag/v0.33.0) (2021-07-06)

[Full Changelog](https://github.com/fastly/cli/compare/v0.32.0...v0.33.0)

**Enhancements:**

- Improve CI workflow [\#333](https://github.com/fastly/cli/pull/333)
- Support multiple versions of Rust [\#330](https://github.com/fastly/cli/pull/330)
- Replace `app.Run` positional signature with a struct [\#329](https://github.com/fastly/cli/pull/329)
- Test suite improvements [\#327](https://github.com/fastly/cli/pull/327)

## [v0.32.0](https://github.com/fastly/cli/releases/tag/v0.32.0) (2021-06-30)

[Full Changelog](https://github.com/fastly/cli/compare/v0.31.0...v0.32.0)

**Enhancements:**

- Embed app config into compiled CLI binary [\#312](https://github.com/fastly/cli/pull/312)
- Service ID lookup includes `$FASTLY_SERVICE_ID` environment variable [\#320](https://github.com/fastly/cli/pull/320)
- Implement `vcl custom` commands [\#310](https://github.com/fastly/cli/pull/310)
- Implement `vcl snippet` commands [\#316](https://github.com/fastly/cli/pull/316)
- Implement `purge` command [\#323](https://github.com/fastly/cli/pull/323)

**Bug fixes:**

- Correctly set the port if `--use-ssl` is used [\#317](https://github.com/fastly/cli/pull/317)
- Fixed a regression in `compute publish` [\#321](https://github.com/fastly/cli/pull/321)

## [v0.31.0](https://github.com/fastly/cli/releases/tag/v0.31.0) (2021-06-17)

[Full Changelog](https://github.com/fastly/cli/compare/v0.30.0...v0.31.0)

**Enhancements:**

- Add new `pops` command [\#309](https://github.com/fastly/cli/pull/309)
- Add new `ip-list` command [\#308](https://github.com/fastly/cli/pull/308)
- Implement new `--version` and `--autoclone` flags [\#302](https://github.com/fastly/cli/pull/302)
- Reword `backend create --use-ssl` warning output [\#303](https://github.com/fastly/cli/pull/303)
- Define new `--version` and `--autoclone` flags [\#300](https://github.com/fastly/cli/pull/300)
- Implement remediation for dynamic config context deadline error [\#298](https://github.com/fastly/cli/pull/298)
- Capitalise 'n' for `[y/N]` prompt [\#299](https://github.com/fastly/cli/pull/299)
- Move exec behaviour from `common` package to its own package [\#297](https://github.com/fastly/cli/pull/297)
- Move command behaviour from `common` package to its own package [\#296](https://github.com/fastly/cli/pull/296)
- Move time behaviour from `common` package to its own package [\#295](https://github.com/fastly/cli/pull/295)
- Move sync behaviour from `common` package to its own package [\#294](https://github.com/fastly/cli/pull/294)
- Move undo behaviour from `common` package to its own package [\#293](https://github.com/fastly/cli/pull/293)
- Surface any cargo metadata errors [\#286](https://github.com/fastly/cli/pull/286)

**Bug fixes:**

- Don't persist `--service-id` flag value to manifest [\#307](https://github.com/fastly/cli/pull/307)
- Fix broken `--service-id` flag in `compute publish` [\#292](https://github.com/fastly/cli/pull/292)
- Fix parsing backend port number [\#291](https://github.com/fastly/cli/pull/291)

**Documentation:**

- Update broken link in `stats historical` [\#285](https://github.com/fastly/cli/pull/285)

## [v0.30.0](https://github.com/fastly/cli/releases/tag/v0.30.0) (2021-05-19)

[Full Changelog](https://github.com/fastly/cli/compare/v0.29.0...v0.30.0)

**Enhancements:**

- Update messaging for `rustup self update` [\#281](https://github.com/fastly/cli/pull/281)
- Replace archived go-git dependency [\#283](https://github.com/fastly/cli/pull/283)
- Implement `pack` subcommand [\#282](https://github.com/fastly/cli/pull/282)

## [v0.29.0](https://github.com/fastly/cli/releases/tag/v0.29.0) (2021-05-13)

[Full Changelog](https://github.com/fastly/cli/compare/v0.28.0...v0.29.0)

**Enhancements:**

- Add arm64 to macOS build [\#277](https://github.com/fastly/cli/pull/277)

**Bug fixes:**

- Validate package before prompting inside `compute deploy` flow [\#279](https://github.com/fastly/cli/pull/279)
- Clear Service ID from manifest when service is deleted [\#278](https://github.com/fastly/cli/pull/278)

## [v0.28.0](https://github.com/fastly/cli/releases/tag/v0.28.0) (2021-05-11)

[Full Changelog](https://github.com/fastly/cli/compare/v0.27.2...v0.28.0)

**Enhancements:**

- Add `isBool` to command flags [\#267](https://github.com/fastly/cli/pull/267)
- Move service creation to `fastly compute deploy`. [\#266](https://github.com/fastly/cli/pull/266)

**Bug fixes:**

- Fix runtime panic when dealing with empty manifest. [\#274](https://github.com/fastly/cli/pull/274)
- Fix `--force` flag not being respected. [\#272](https://github.com/fastly/cli/pull/272)
- Clean-out `service_id` from manifest when deleting a service. [\#268](https://github.com/fastly/cli/pull/268)

## [v0.27.2](https://github.com/fastly/cli/releases/tag/v0.27.2) (2021-04-21)

[Full Changelog](https://github.com/fastly/cli/compare/v0.27.1...v0.27.2)

**Bug fixes:**

- Fix bug where legacy creds are reset after call to configure subcommand. [\#260](https://github.com/fastly/cli/pull/260)

## [v0.27.1](https://github.com/fastly/cli/releases/tag/v0.27.1) (2021-04-16)

[Full Changelog](https://github.com/fastly/cli/compare/v0.27.0...v0.27.1)

**Bug fixes:**

- Track CLI version. [\#257](https://github.com/fastly/cli/pull/257)

## [v0.27.0](https://github.com/fastly/cli/releases/tag/v0.27.0) (2021-04-15)

[Full Changelog](https://github.com/fastly/cli/compare/v0.26.3...v0.27.0)

**Enhancements:**

- Support IAM role in Kinesis logging endpoint [\#255](https://github.com/fastly/cli/pull/255)
- Support IAM role in S3 and Kinesis logging endpoints [\#253](https://github.com/fastly/cli/pull/253)
- Add support for `file_max_bytes` configuration for Azure logging endpoint [\#251](https://github.com/fastly/cli/pull/251)
- Warn on empty directory [\#247](https://github.com/fastly/cli/pull/247)
- Add `compute publish` subcommand [\#242](https://github.com/fastly/cli/pull/242)
- Allow local binary to be renamed [\#240](https://github.com/fastly/cli/pull/240)
- Retain `RUSTFLAGS` values from the environment [\#239](https://github.com/fastly/cli/pull/239)
- Make GitHub Versioner configurable [\#236](https://github.com/fastly/cli/pull/236)
- Add support for `compression_codec` to logging file sink endpoints [\#190](https://github.com/fastly/cli/pull/190)

**Bug fixes:**

- Remove flaky test logic. [\#249](https://github.com/fastly/cli/pull/249)
- Check the rustup version [\#248](https://github.com/fastly/cli/pull/248)
- Print all commands and subcommands in usage [\#244](https://github.com/fastly/cli/pull/244)
- pkg/logs: fix typo in error message [\#238](https://github.com/fastly/cli/pull/238)

## [v0.26.3](https://github.com/fastly/cli/releases/tag/v0.26.3) (2021-03-26)

[Full Changelog](https://github.com/fastly/cli/compare/v0.26.2...v0.26.3)

**Enhancements:**

- Default to port 443 if UseSSL set. [\#234](https://github.com/fastly/cli/pull/234)

**Bug fixes:**

- Ensure all UPDATE operations don't set optional fields. [\#235](https://github.com/fastly/cli/pull/235)
- Avoid setting fields that cause API to fail when given zero value. [\#233](https://github.com/fastly/cli/pull/233)

## [v0.26.2](https://github.com/fastly/cli/releases/tag/v0.26.2) (2021-03-22)

[Full Changelog](https://github.com/fastly/cli/compare/v0.26.1...v0.26.2)

**Enhancements:**

- Extra error handling around loading remote configuration data. [\#229](https://github.com/fastly/cli/pull/229)

**Bug fixes:**

- `fastly compute build` exits with error 1 [\#227](https://github.com/fastly/cli/issues/227)
- Set GOVERSION for goreleaser. [\#228](https://github.com/fastly/cli/pull/228)

## [v0.26.1](https://github.com/fastly/cli/releases/tag/v0.26.1) (2021-03-19)

[Full Changelog](https://github.com/fastly/cli/compare/v0.26.0...v0.26.1)

**Bug fixes:**

- Fix manifest\_version as a section bug. [\#225](https://github.com/fastly/cli/pull/225)

## [v0.26.0](https://github.com/fastly/cli/releases/tag/v0.26.0) (2021-03-18)

[Full Changelog](https://github.com/fastly/cli/compare/v0.25.2...v0.26.0)

**Enhancements:**

- Remove version from fastly.toml manifest. [\#222](https://github.com/fastly/cli/pull/222)
- Don't run "cargo update" before building rust app. [\#221](https://github.com/fastly/cli/pull/221)

**Bug fixes:**

- Loading remote config.toml should fail gracefully. [\#223](https://github.com/fastly/cli/pull/223)
- Update the fastly.toml manifest if missing manifest\_version. [\#220](https://github.com/fastly/cli/pull/220)
- Refactor UserAgent. [\#219](https://github.com/fastly/cli/pull/219)

## [v0.25.2](https://github.com/fastly/cli/releases/tag/v0.25.2) (2021-03-16)

[Full Changelog](https://github.com/fastly/cli/compare/v0.25.1...v0.25.2)

**Bug fixes:**

- Fix duplicate warning messages and missing SetOutput\(\). [\#216](https://github.com/fastly/cli/pull/216)

## [v0.25.1](https://github.com/fastly/cli/releases/tag/v0.25.1) (2021-03-16)

[Full Changelog](https://github.com/fastly/cli/compare/v0.25.0...v0.25.1)

**Bug fixes:**

- The manifest\_version should default to 1 if missing. [\#214](https://github.com/fastly/cli/pull/214)

## [v0.25.0](https://github.com/fastly/cli/releases/tag/v0.25.0) (2021-03-16)

[Full Changelog](https://github.com/fastly/cli/compare/v0.24.2...v0.25.0)

**Enhancements:**

- Replace deprecated ioutil functions with go 1.16. [\#212](https://github.com/fastly/cli/pull/212)
- Replace TOML parser [\#211](https://github.com/fastly/cli/pull/211)
- Implement manifest\_version into the fastly.toml [\#210](https://github.com/fastly/cli/pull/210)
- Dynamic Configuration [\#187](https://github.com/fastly/cli/pull/187)

**Bug fixes:**

- Log output should be simplified when running in CI [\#175](https://github.com/fastly/cli/issues/175)
- Override error message in compute init [\#204](https://github.com/fastly/cli/pull/204)

## [v0.24.2](https://github.com/fastly/cli/releases/tag/v0.24.2) (2021-02-15)

[Full Changelog](https://github.com/fastly/cli/compare/v0.24.1...v0.24.2)

**Bug fixes:**

- Fix CI binary overlap [\#209](https://github.com/fastly/cli/pull/209)
- Fix CI workflow by switching from old syntax to new [\#208](https://github.com/fastly/cli/pull/208)
- Fix goreleaser version lookup [\#207](https://github.com/fastly/cli/pull/207)
- LogTail: Properly close response body [\#205](https://github.com/fastly/cli/pull/205)
- Add port prompt for compute init [\#203](https://github.com/fastly/cli/pull/203)
- Update GitHub Action to not use commit hash [\#200](https://github.com/fastly/cli/pull/200)

## [v0.24.1](https://github.com/fastly/cli/releases/tag/v0.24.1) (2021-02-03)

[Full Changelog](https://github.com/fastly/cli/compare/v0.24.0...v0.24.1)

**Bug fixes:**

- Logs Tail: Give the user better feedback when --from flag errors [\#201](https://github.com/fastly/cli/pull/201)

## [v0.24.0](https://github.com/fastly/cli/releases/tag/v0.24.0) (2021-02-02)

[Full Changelog](https://github.com/fastly/cli/compare/v0.23.0...v0.24.0)

**Enhancements:**

- Add static content starter kit [\#197](https://github.com/fastly/cli/pull/197)
- ๐Ÿฆ€ Update rust toolchain [\#196](https://github.com/fastly/cli/pull/196)

**Bug fixes:**

- Fix go vet error related to missing docstring [\#198](https://github.com/fastly/cli/pull/198)

## [v0.23.0](https://github.com/fastly/cli/releases/tag/v0.23.0) (2021-01-22)

[Full Changelog](https://github.com/fastly/cli/compare/v0.22.0...v0.23.0)

**Enhancements:**

- Update Go-Fastly dependency to v3.0.0 [\#193](https://github.com/fastly/cli/pull/193)
- Support for Compute@Edge Log Tailing [\#192](https://github.com/fastly/cli/pull/192)

**Bug fixes:**

- Resolve issues with Rust integration tests. [\#194](https://github.com/fastly/cli/pull/194)
- Update URL for default Rust starter [\#191](https://github.com/fastly/cli/pull/191)

## [v0.22.0](https://github.com/fastly/cli/releases/tag/v0.22.0) (2021-01-07)

[Full Changelog](https://github.com/fastly/cli/compare/v0.21.2...v0.22.0)

**Enhancements:**

- Add support for TLS client and batch size options for splunk [\#183](https://github.com/fastly/cli/pull/183)
- Add support for Kinesis logging endpoint [\#177](https://github.com/fastly/cli/pull/177)

## [v0.21.2](https://github.com/fastly/cli/releases/tag/v0.21.2) (2021-01-06)

[Full Changelog](https://github.com/fastly/cli/compare/v0.21.1...v0.21.2)

**Bug fixes:**

- Switch from third-party dependency to our own mirror [\#184](https://github.com/fastly/cli/pull/184)

## [v0.21.1](https://github.com/fastly/cli/releases/tag/v0.21.1) (2020-12-18)

[Full Changelog](https://github.com/fastly/cli/compare/v0.21.0...v0.21.1)

**Bug fixes:**

- CLI shouldn't recommend Rust crate prerelease versions [\#168](https://github.com/fastly/cli/issues/168)
- Run cargo update before attempting to build Rust compute packages [\#179](https://github.com/fastly/cli/pull/179)

## [v0.21.0](https://github.com/fastly/cli/releases/tag/v0.21.0) (2020-12-14)

[Full Changelog](https://github.com/fastly/cli/compare/v0.20.0...v0.21.0)

**Enhancements:**

- Adds support for managing edge dictionaries [\#159](https://github.com/fastly/cli/pull/159)

## [v0.20.0](https://github.com/fastly/cli/releases/tag/v0.20.0) (2020-11-24)

[Full Changelog](https://github.com/fastly/cli/compare/v0.19.0...v0.20.0)

**Enhancements:**

- Migrate to Go-Fastly 2.0.0 [\#169](https://github.com/fastly/cli/pull/169)

**Bug fixes:**

- Build failure with Cargo workspaces [\#171](https://github.com/fastly/cli/issues/171)
- Support cargo workspaces [\#172](https://github.com/fastly/cli/pull/172)

## [v0.19.0](https://github.com/fastly/cli/releases/tag/v0.19.0) (2020-11-19)

[Full Changelog](https://github.com/fastly/cli/compare/v0.18.1...v0.19.0)

**Enhancements:**

- Support sasl kafka endpoint options in Fastly CLI [\#161](https://github.com/fastly/cli/pull/161)

## [v0.18.1](https://github.com/fastly/cli/releases/tag/v0.18.1) (2020-11-03)

[Full Changelog](https://github.com/fastly/cli/compare/v0.18.0...v0.18.1)

**Enhancements:**

- Update the default Rust template to fastly-0.5.0 [\#163](https://github.com/fastly/cli/pull/163)

**Bug fixes:**

- Constrain Version Upgrade Suggestion [\#165](https://github.com/fastly/cli/pull/165)
- Fix AssemblyScript compilation messaging [\#164](https://github.com/fastly/cli/pull/164)

## [v0.18.0](https://github.com/fastly/cli/releases/tag/v0.18.0) (2020-10-27)

[Full Changelog](https://github.com/fastly/cli/compare/v0.17.0...v0.18.0)

**Enhancements:**

- Add AssemblyScript support to compute init and build commands [\#160](https://github.com/fastly/cli/pull/160)

## [v0.17.0](https://github.com/fastly/cli/releases/tag/v0.17.0) (2020-09-24)

[Full Changelog](https://github.com/fastly/cli/compare/v0.16.1...v0.17.0)

**Enhancements:**

- Bump supported Rust toolchain version to 1.46 [\#156](https://github.com/fastly/cli/pull/156)
- Add service search command [\#152](https://github.com/fastly/cli/pull/152)

**Bug fixes:**

- Broken link in usage info [\#148](https://github.com/fastly/cli/issues/148)

## [v0.16.1](https://github.com/fastly/cli/releases/tag/v0.16.1) (2020-07-21)

[Full Changelog](https://github.com/fastly/cli/compare/v0.16.0...v0.16.1)

**Bug fixes:**

- Display the correct version number on error [\#144](https://github.com/fastly/cli/pull/144)
- Fix bug where name was not added to the manifest [\#143](https://github.com/fastly/cli/pull/143)

## [v0.16.0](https://github.com/fastly/cli/releases/tag/v0.16.0) (2020-07-09)

[Full Changelog](https://github.com/fastly/cli/compare/v0.15.0...v0.16.0)

**Enhancements:**

- Compare package hashsum during deployment [\#139](https://github.com/fastly/cli/pull/139)
- Allow compute init to be reinvoked within an existing package directory [\#138](https://github.com/fastly/cli/pull/138)

## [v0.15.0](https://github.com/fastly/cli/releases/tag/v0.15.0) (2020-06-29)

[Full Changelog](https://github.com/fastly/cli/compare/v0.14.0...v0.15.0)

**Enhancements:**

- Adds OpenStack logging support [\#132](https://github.com/fastly/cli/pull/132)

## [v0.14.0](https://github.com/fastly/cli/releases/tag/v0.14.0) (2020-06-25)

[Full Changelog](https://github.com/fastly/cli/compare/v0.13.0...v0.14.0)

**Enhancements:**

- Bump default Rust template version to v0.4.0 [\#133](https://github.com/fastly/cli/pull/133)

## [v0.13.0](https://github.com/fastly/cli/releases/tag/v0.13.0) (2020-06-15)

[Full Changelog](https://github.com/fastly/cli/compare/v0.12.0...v0.13.0)

**Enhancements:**

- Allow compute services to be initialised from an existing service ID [\#125](https://github.com/fastly/cli/pull/125)

**Bug fixes:**

- Fix bash completion [\#128](https://github.com/fastly/cli/pull/128)

**Closed issues:**

- Bash Autocomplete is broken [\#127](https://github.com/fastly/cli/issues/127)

## [v0.12.0](https://github.com/fastly/cli/releases/tag/v0.12.0) (2020-06-05)

[Full Changelog](https://github.com/fastly/cli/compare/v0.11.0...v0.12.0)

**Enhancements:**

- Adds MessageType field to SFTP [\#118](https://github.com/fastly/cli/pull/118)
- Adds User field to Cloudfiles Updates [\#117](https://github.com/fastly/cli/pull/117)
- Adds Region field to Scalyr [\#116](https://github.com/fastly/cli/pull/116)
- Adds PublicKey field to S3 [\#114](https://github.com/fastly/cli/pull/114)
- Adds MessageType field to GCS Updates [\#113](https://github.com/fastly/cli/pull/113)
- Adds ResponseCondition and Placement fields to BigQuery Creates [\#111](https://github.com/fastly/cli/pull/111)

**Bug fixes:**

- Unable to login with API key [\#94](https://github.com/fastly/cli/issues/94)

## [v0.11.0](https://github.com/fastly/cli/releases/tag/v0.11.0) (2020-05-29)

[Full Changelog](https://github.com/fastly/cli/compare/v0.10.0...v0.11.0)

**Enhancements:**

- Add ability to exclude files from build package [\#87](https://github.com/fastly/cli/pull/87)

**Bug fixes:**

- unintended files included in upload package [\#24](https://github.com/fastly/cli/issues/24)

## [v0.10.0](https://github.com/fastly/cli/releases/tag/v0.10.0) (2020-05-28)

[Full Changelog](https://github.com/fastly/cli/compare/v0.9.0...v0.10.0)

**Enhancements:**

- Adds Google Cloud Pub/Sub logging endpoint support [\#96](https://github.com/fastly/cli/pull/96)
- Adds Datadog logging endpoint support [\#92](https://github.com/fastly/cli/pull/92)
- Adds HTTPS logging endpoint support [\#91](https://github.com/fastly/cli/pull/91)
- Adds Elasticsearch logging endpoint support [\#90](https://github.com/fastly/cli/pull/90)
- Adds Azure Blob Storage logging endpoint support [\#89](https://github.com/fastly/cli/pull/89)

## [v0.9.0](https://github.com/fastly/cli/releases/tag/v0.9.0) (2020-05-21)

[Full Changelog](https://github.com/fastly/cli/compare/v0.8.0...v0.9.0)

**Breaking changes:**

- Describe subcommand consistent --name short flag -d -\> -n [\#85](https://github.com/fastly/cli/pull/85)

**Enhancements:**

- Adds Kafka logging endpoint support [\#95](https://github.com/fastly/cli/pull/95)
- Adds DigitalOcean Spaces logging endpoint support [\#80](https://github.com/fastly/cli/pull/80)
- Adds Rackspace Cloudfiles logging endpoint support [\#79](https://github.com/fastly/cli/pull/79)
- Adds Log Shuttle logging endpoint support [\#78](https://github.com/fastly/cli/pull/78)
- Adds SFTP logging endpoint support [\#77](https://github.com/fastly/cli/pull/77)
- Adds Heroku logging endpoint support [\#76](https://github.com/fastly/cli/pull/76)
- Adds Honeycomb logging endpoint support [\#75](https://github.com/fastly/cli/pull/75)
- Adds Loggly logging endpoint support [\#74](https://github.com/fastly/cli/pull/74)
- Adds Scalyr logging endpoint support [\#73](https://github.com/fastly/cli/pull/73)
- Verify fastly crate version during compute build. [\#67](https://github.com/fastly/cli/pull/67)
- Basic support for historical & realtime stats [\#66](https://github.com/fastly/cli/pull/66)
- Adds Splunk endpoint [\#64](https://github.com/fastly/cli/pull/64)
- Adds FTP logging endpoint support [\#63](https://github.com/fastly/cli/pull/63)
- Adds GCS logging endpoint support [\#62](https://github.com/fastly/cli/pull/62)
- Adds Sumo Logic logging endpoint support [\#59](https://github.com/fastly/cli/pull/59)
- Adds Papertrail logging endpoint support [\#57](https://github.com/fastly/cli/pull/57)
- Adds Logentries logging endpoint support [\#56](https://github.com/fastly/cli/pull/56)

**Bug fixes:**

- Fallback to a file copy during update if the file rename fails [\#72](https://github.com/fastly/cli/pull/72)

## [v0.8.0](https://github.com/fastly/cli/releases/tag/v0.8.0) (2020-05-13)

[Full Changelog](https://github.com/fastly/cli/compare/v0.7.1...v0.8.0)

**Enhancements:**

- Add a --force flag to compute build to skip verification steps. [\#68](https://github.com/fastly/cli/pull/68)
- Improve `compute build` rust compilation error messaging [\#60](https://github.com/fastly/cli/pull/60)
- Adds Syslog logging endpoint support [\#55](https://github.com/fastly/cli/pull/55)

**Bug fixes:**

- debian package doesn't install in default $PATH [\#58](https://github.com/fastly/cli/issues/58)
- deb and rpm packages install the binary in `/usr/local` instead of `/usr/local/bin` [\#53](https://github.com/fastly/cli/issues/53)

**Closed issues:**

- ERROR: error during compilation process: exit status 101. [\#52](https://github.com/fastly/cli/issues/52)

## [v0.7.1](https://github.com/fastly/cli/releases/tag/v0.7.1) (2020-05-04)

[Full Changelog](https://github.com/fastly/cli/compare/v0.7.0...v0.7.1)

**Bug fixes:**

- Ensure compute deploy selects the most ideal version to clone/activate  [\#50](https://github.com/fastly/cli/pull/50)

## [v0.7.0](https://github.com/fastly/cli/releases/tag/v0.7.0) (2020-04-28)

[Full Changelog](https://github.com/fastly/cli/compare/v0.6.0...v0.7.0)

**Enhancements:**

- Publish scoop package manifest during release process [\#45](https://github.com/fastly/cli/pull/45)
- Generate dep and rpm packages during release process [\#44](https://github.com/fastly/cli/pull/44)
- ๐Ÿฆ€ ๐Ÿ†™date to Rust 1.43.0 [\#40](https://github.com/fastly/cli/pull/40)

**Closed issues:**

- README's build instructions do not work without additional dependencies met [\#35](https://github.com/fastly/cli/issues/35)

## [v0.6.0](https://github.com/fastly/cli/releases/tag/v0.6.0) (2020-04-24)

[Full Changelog](https://github.com/fastly/cli/compare/v0.5.0...v0.6.0)

**Enhancements:**

- Bump default Rust template to v0.3.0 [\#32](https://github.com/fastly/cli/pull/32)
- Publish to homebrew [\#26](https://github.com/fastly/cli/pull/26)

**Bug fixes:**

- Don't display the fastly token in the terminal when doing `fastly configure` [\#27](https://github.com/fastly/cli/issues/27)
- Documentation typo in `fastly service-version update` [\#22](https://github.com/fastly/cli/issues/22)
- Fix typo in service-version update command [\#31](https://github.com/fastly/cli/pull/31)
- Tidy up `fastly configure` text output [\#30](https://github.com/fastly/cli/pull/30)
- compute/init: make space after Author prompt match other prompts [\#25](https://github.com/fastly/cli/pull/25)

## [v0.5.0](https://github.com/fastly/cli/releases/tag/v0.5.0) (2020-04-08)

[Full Changelog](https://github.com/fastly/cli/compare/v0.4.1...v0.5.0)

**Enhancements:**

- Add the ability to initialise a compute project from a specific branch [\#14](https://github.com/fastly/cli/pull/14)

## [v0.4.1](https://github.com/fastly/cli/releases/tag/v0.4.1) (2020-03-27)

[Full Changelog](https://github.com/fastly/cli/compare/v0.4.0...v0.4.1)

**Bug fixes:**

- Fix persistence of author string to fastly.toml [\#12](https://github.com/fastly/cli/pull/12)
- Fix up undoStack.RunIfError [\#11](https://github.com/fastly/cli/pull/11)

## [v0.4.0](https://github.com/fastly/cli/releases/tag/v0.4.0) (2020-03-20)

[Full Changelog](https://github.com/fastly/cli/compare/v0.3.0...v0.4.0)

**Enhancements:**

- Add commands for S3 logging endpoints [\#9](https://github.com/fastly/cli/pull/9)
- Add useful next step links to compute deploy [\#8](https://github.com/fastly/cli/pull/8)
- Persist version to manifest file when deploying compute services [\#7](https://github.com/fastly/cli/pull/7)

**Bug fixes:**

- Fix comment for --use-ssl flag [\#6](https://github.com/fastly/cli/pull/6)

## [v0.3.0](https://github.com/fastly/cli/releases/tag/v0.3.0) (2020-03-11)

[Full Changelog](https://github.com/fastly/cli/compare/v0.2.0...v0.3.0)

**Enhancements:**

- Interactive init [\#5](https://github.com/fastly/cli/pull/5)

## [v0.2.0](https://github.com/fastly/cli/releases/tag/v0.2.0) (2020-02-24)

[Full Changelog](https://github.com/fastly/cli/compare/v0.1.0...v0.2.0)

**Enhancements:**

- Improve toolchain installation help messaging [\#3](https://github.com/fastly/cli/pull/3)

**Bug fixes:**

- Filter unwanted files from template repository whilst initialising [\#1](https://github.com/fastly/cli/pull/1)

## [v0.1.0](https://github.com/fastly/cli/releases/tag/v0.1.0) (2020-02-05)

[Full Changelog](https://github.com/fastly/cli/compare/5a8d21b6b1973abe7a27f985856d910f4396ce95...v0.1.0)

Initial release :tada:



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*