forked from davedittrich/python_secrets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
900 lines (785 loc) · 23.6 KB
/
ChangeLog
File metadata and controls
900 lines (785 loc) · 23.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
CHANGES
=======
* Bump version for release
* Add exception and documentation re: YAML to JSON
* Fix erroneous path (missed edit)
* Normalize GitHub actions with lim-cli repo
* Normalize tox, Makefile, setup.py with lim-cli
* Resolve pep8 finding
* Documentation improvements
* Handle trailing slash (from tab completion) better
* Improve handling empty list
* Attempt to fix broken ReadTheDocs (?)
* Forgot to add a new bats test file
* Update README.rst to reflect YML to JSON change
* Increate password complexity a bit more
* Deal w/bug in bats-core v1.2.1 causing failures
* Fix environment cloning bug
* Get group from variable name (partial fix)
* Ensure full path created
* Rename test for ordering purposes
* Better handling of wildcard in options list
* Update .readthedocs.yml
* Fix ReadTheDocs (build broken, psec not installed)
20.11.0
-------
* Bump version
* Fix temp directory handling
* Fix GitHub Actions workflow for proper versioning
* Fix f-string
* Fix bug in test
* Normalize all logger and exception output text
* Fix bugs and features needed for new commands
* Ensure JSON fields stay ordered for clarity
* Refactor utility script up to utils module
* Finish normalizing group 'create' and 'delete'
* Revise, extend, and normalize testing with VSCode
* Move test secrets files down into tests/secrets.d
* Refactor 'environments' subc's into discrete files
* Refactor 'groups' subcommands into discrete files
* Fix secrets tests
* Allow 'secrets set' to set by default from Options
* Adjust debug launch configurations
* Finish 'secrets create'/'delete' w/update, mirror
* Show by type as well as group
* Filter on undefined to be like 'secrets show'
* Fix tests
* Allow default handling as well as cancel
* Add is\_generable() function
* Lower default xkcd password complexity settings
* Docstring in wrong place
* Add vscode launch configs for testing new code
* Ensure JSON files have line end on last line
* Default secret value to None
* Fix bugs related to group metadata in environment
* Remove unecessary code lines
* Add 'secrets create' and 'secrets delete' commands
* Normalize quoting and f-string use
* Debug 'utils yaml-to-json'
* Normalize 'secrets show' and 'secrets describe'
* Fix bug that left variables missing after cloning
* Drop six (we're python3 only)
* Update docs to reference pipx
* Normalize and simplify super() calls
* Rename method in preparation for create/delete
* Improve help output to help debug module loading
* Fix JSON files
* Refactor 'secrets' subcommands
* Address setup.py deprecation of 'check' option
* Add python3.9 testing support
* Switch from .yml to .json format for secrets
* Use 'python' instead of 'python3'
* Be more DRY
* Add debug launch setting
* ...and "wheel"
* Also put twine back for build testing
* Put sphinx back in for building docs
* Fix missing kwarg
* Correct removal of "tox" from requirements.txt
* Expand IP address support in "utils" subcommand
* Clean up build/test
* Add new launch rules
* Remove invalid line
* Rename workflow file
* Refine workflow steps
20.8.1
------
* Bump version
* Forgot to remove kill switch
20.8.0
------
* Bump version
* Commit ChangeLog for upcoming release
* Fix variable name
* Correct branch name to match hubflow style
* Echo branch name
* Fix missing twine
* Go back to simple tests
* Add requirements
* Fix archive directory names
* Fix metadata validation
* Restructure and extend workflow
* Fix typo
* Fix task order
* Ensure metadata for SCM versioning is present
* Fixing version number extraction
* Debugging version bug with GitHub actions
* Refine workflow
* Ensure bats libs aren't packaged
* Update default python in tox.ini
* Fix section heading
* Fix typo
* Update per python-app.yml template
* Add make
* Add GitHub workflow to publish to test.pypi.org
* Go back to simpler date versioning
* Fix regex error message
* Fix long description in setup.py
* Fix twine checks
* Fix sphinx warning about missing file
* Fix syntax error
* Fixed tox (setup.py -> pytest upgrade)
* Resolve pep8 finding
* Update travis-ci config
* Resolve tox config and pep8 issues
* Take control of readthedocs build for cliff sake
20.4.2106
---------
* Bump version
* Store secrets in a ytt compatible format
* Try to get around boto3 dependency conflict
* Create path if necessary in 'environments path'
* Handle autoprogram-cliff use case
* Fix bug in 'secrets path' with added tests
* Finish initial basic restore logic
* Fix check for Bullet availability
* Remove colons from file name
* Partially working 'secrets backup' (and 'restore')
* Remove unused attribute
* Add webbrowser loading of ReadTheDocs page
* Fix value copying bugs in 'secrets' command
* Enhance 'environemnts path --exists' command
* Squashed commit of the following:
* Add some whitespace
* Resolve pep8 findings
* Add webbrowser loading of ReadTheDocs page
* Open browser on "help --rtd"
* Fix bug in 'run' with no args
20.2.15
-------
* Bump version
* Bump version
* Simplify date version logic for 'git hf release'
* Revert "Add date based version support to Makefile"
* Add test support for Python 3.8 and fix bug
* Add date based version support to Makefile
* Add another launch rule
* Fix bug in 'environments default'
* Put elapsed time (and BELL) on stdout
* Put sphinx back for autoprogram to work properly
* Add another debug configuration
* Refactor SecretsSet logic for clarity
* Add some verbosity
* Fix line end characters
* Allow setting vars using diff names+environment
* Don't require an environment for paths
* Fix bug in "environments tree" command
* Fix bug in "environments tree" command
* Add another launch rule
* Fix bug in 'environments default'
* Put elapsed time (and BELL) on stdout
* Put sphinx back for autoprogram to work properly
* Add another debug configuration
* Refactor SecretsSet logic for clarity
* Add some verbosity
* Fix line end characters
* Allow setting vars using diff names+environment
* Clarify documentation about exported variables
* Add some verbosity
* Fix line end characters
* Allow setting vars using diff names+environment
19.12.0
-------
* Bump version
* Improve default environment handling
* Add deps to bats tox test environment
* Fix typo in variable name
* Add runtime test for initialization
* Add initial documentation for 'boolean' type
* See comment re: "Your xkcd passwords are pwned"
* Expand help text
* Add 'groups delete' subcommand
* Resolve pep8 findings
* Clean up code logic
* Fix regression bug with defaulting environment
* Fix comments per pep8
* Add 'boolean' type w/implied Options
* Add protection from over-writing existing env vars
* Add attribute "Options"
* Fix typo that introduced bug
* Use public variables for direct command name
19.11.1
-------
* Bump version
* Be less file system specific
* File permissions work differently on Windows
* Import everything (thought this was done already?)
* Workaround for 'bullet' missing 'termios' on Win10
* Add readline dependency
* Add sphinx dependency to just docs environment
* Add encoding lines to files
* Add 'secrets path' debugging configurations
* Don't create source package, but do clean up
* Swap column order for better visual comprehension
* Simplify release to avoid ChangeLog race condition
19.11.0
-------
* Bump version
* Allow cloning group descriptions from environment
* Add .vscode/launch.json
* Remove incorrect requirements
* Fix tty/no-tty 'environments delete'
* Expose terraform command on -v
* Validate variable exists in environment
* Resolve pep8 findings
* Improve broken 'environments tree' code
* Extend pep8 checks
* Undo edit that is not correct for example
19.10.1
-------
* Move bats unit test into tox testing
* Avoid attempting interactive things when no tty
* Clarify permissions logic
* Just check r/w/x perms
* Don't let "complete" have unnecessary error msgs
* Bump version number
* Update testing to integrate bats into tox
* Move bats unit test into tox testing
* Update testing to integrate bats into tox
* Avoid attempting interactive things when no tty
* Clarify permissions logic
* Just check r/w/x perms
* Don't let "complete" have unnecessary error msgs
19.10.0
-------
* Bump version
* Fix documentation
* Resolve pep8 findings
* Decrease verbosity
* Add option to only show undefined variables
* Add options/change default for xkcd password gen
* Fix typo in kwarg name
* Fix bug in directory traversal logic
* Fix bug when copying None values from environment
* Fix bug when no secrets provided to be set
* Add environment existence check option
* Working ssh key and configuration management
* Clarify prompt
* Add missing import
* Don't do runtime tests as part of "test" target
* Adding Bullet for dynamic list selection
* Add runtime temp dirs to .gitignore
* Add elapsed timer functionality
* Initial SSH key extraction logic
* Add elapsed timer functionality
* Fix bug in tfstate backend path
* Fix SSH key fingerprint parsing for terraform+do
* Resolve pep8 findings
* Add control of umask for better file perm security
* Fixed formatters, so comment no longer needed
* Support configuring Terraform tfstate backend
* Put warnings on stdout for inline cmd substitution
* Allow setting secrets by copying from another env
* Sort environments when listing
* Fix defaulting environment name
* Update ChangeLog (there has to be a better way)
19.9.0
------
* Bump version from 19.8.3 to 19.9.0
* Add 'environments delete' subcommand
* Allow cloning environment from an existing one
* Reduce verbosity for warnings
* Reduce verbosity for warnings
* Remove docs-help (for now)
* Update ChangeLog
19.8.3
------
* Bump version
* Dynamically get version number
* Fix bats unit tests
* Fix tests per earlier refactor
* Resolve pep8 and bandit findings
* Fix tox test configuration
* Resolve circular import dependencies
* Update Makefile
* Forgot to update path in tox.ini (oops!)
* Add .vscode dir to .gitignore
* Add .gitignore for bats libraries
* Ensure more secure permissions
19.8.2
------
* Update ChangeLog for release
* Bump version to 19.8.2
* Workaround bug in pbr version discovery
* Change bumpversion defaults
* Fix typo in README
19.8.1
------
19.8.0
------
* Bump version: 19.5.1 → 19.8.0
* Update ChangeLog
* Be more explicit about default environment
* Tighten permissions on cloned environments/groups
* Provide feedback on myip method
* Add insecure permissions checking
* Add ChangeLog (autogen from pbr)
* Deal with pip upgrade warnings in tox
* Fix secrets environment check
* Fix docs test
* Improve and extend IP address determination
* Improve template logic
* Improve code logic
* Add docs to tests
* Add final test success message
* Allow cloning new group into empty environment
* Switch to warning
* Make "python -m psec" work
* Fix bug: 'groups' command doesn't need secrets
* Improve console output processing
* Add JSON output method
* Add meta tags to docs
* Add environment aliasing feature
* Add \_\_str\_\_() method (as Guido intended)
19.5.1
------
* Update HISTORY.rst
* Bump version: 19.4.4 → 19.5.1
* Fix testing bug when default env set in repo dir
* Add documentation on "ssh" subcommand use
* Fix spelling
* Add default secrets environment file to .gitignore
* Improve ability to get IP&DNS from console output
* Fix bug in 'environments default'
* Add delay to allow Ansible to exit cleanly
* Improve documentation
* Improve documentation
* Add missing documentation
* Improve use of Ansible playbook across commands
* Remove obsolete code
* Fix RST formatting
* Fix error message
* Refactor ssh sub-commands out to their own command
* Update documentation usage section
* Fix bug in passing ssh\_hosts as extra vars
* Improve Ansible debugging output
* Fix bugs with key parsing
* Fix bugs in processing known\_hosts file
* Update HISTORY.rst file
* Switch to using pexpect for colored output
* Initial "utils ssh-known-hosts"/"utils ssh-config"
* Add pbr to requirements
* Add boto3 requirement
* Oops
* Use number, not label, for footnote
* Update CONTRIBUTING.rst file
* Add Makefile target 'install-bats-libraries'
* Fix .PHONY declaration
* Add missing import
* Generalize exception to fix --version bug
* Generalize exception to fix --version bug
* Clean up temporary psec\_help.txt file
19.4.4
------
* Bump version: 19.4.3 → 19.4.4
* Update HISTORY.rst
19.4.3
------
* Bump version: 19.4.2 → 19.4.3
* Why did this break?
* Fix README.rst for ReadTheDocs badge
* Bump version: 19.4.1 → 19.4.2
* Update HISTORY.rst
* Attempt to fix install
* Duh
* Fix syntax
* Add bats dependencies
19.4.1
------
* Bump version: 19.4.0 → 19.4.1
* Fix bats tests
19.4.0
------
v19.4.0
-------
* Bump version: 19.3.2 → 19.4.0
* Update HISTORY.rst
v19.3.2
-------
* Bump version: 19.3.1 → 19.3.2
* Rename CLI program from 'python\_secrets' to 'psec'
* Complete command --help output (epilog text)
* Add Python 3.7
* Add dist tag
* Add Python 3.7
* Resolve pep8 findings
* Remove redundant text from merge conflict
* Fix help text
* Add script to complement console\_script entrypoint
* Oops - left some debugging text in place
* Clarify arguments in --help output
* Fix missed Sphinx syntax error
* Fix HISTORY.rst
* Fix installing in active virtualenv
* Update README.rst
19.3.1
------
* Bump version: 18.12.1 → 19.3.1
* Fix bug in passing along verbose\_level
* Include dev release info in --version
* Fix bug in checking validity of environment dir
* Add pyflakes for vscode
* Resolve pep8 findings
* Move formatting help to usage.rst file
* Run main module (ala Pycharm) for direct debugging
* Use 'psec' instead of 'python\_secrets' for autoprogram-cliff
* Split tests
* Add "utils set-aws-credentials" command to mirror AWS CLI credentials
v18.12.1
--------
* Update HISTORY.rst
* Don't use 'pip' directly
* Bump version: 18.11.5 → 18.12.1
* Add "environments rename" command
* Refactor tox.ini file
* Disable bats tests on travis-ci
* Bump version: 18.11.5 → 18.11.6
* Add bats (integration, etc.) tests
* Fix bug with over-riding default environment with -e
* Add readthedocs.yml to get Python 3.6
* Add property\_manager to requirements.txt for ReadTheDocs
v18.11.5
--------
* Bump version: 18.11.4 → 18.11.5
* PyPi doesn't like :ref: :(
v18.11.4
--------
* Bump version: 18.11.3 → 18.11.4
* Add python\_secrets for autoprogram\_cliff to work on ReadTheDocs
* Fix README.rst file structure
* Add Pygments
v18.11.3
--------
* Bump version: 18.11.2 → 18.11.3
* Start refactoring documentation to use auto-generated command help
* Use pbr for version number
v18.11.2
--------
* Bump version: 18.11.1 → 18.11.2
* Fix tfoutput command
* Refactor SecretsEnvironment() so autoprogram\_cliff works
* Set up for using autoprogram\_cliff
* Add cliff.sphinxext for documentation
* Add file to preserve directory
* Bump version: 18.11.0 → 18.11.1
* Switch to using image:: to work on PyPi
* Update release identifier in history
* Bump version: 18.9.7 → 18.11.0
* Handle null group
* Add "--type" option to extend "secrets describe" to describe variables
* Resolve pep8 finding
* Bump version: 18.9.6 → 18.9.7
* Fix bug related to malformed group file name (.yml.yml)
* Bump version: 18.9.5 → 18.9.6
* Move links to bottom and move todo items to GitHub Projects
* Add PyPi RST check to .travis.yml
* Bump version: 18.9.4 → 18.9.5
* Move RST check to tox.ini
* Resolve tox tests findings
* Add documentation of "environments default" improvements
* Forgot to save edits. :(
* Update HISTORY
* Bump version: 18.9.3 → 18.9.4
* Improve visibility into default environment
v18.9.3
-------
* Bump version: 18.9.2 → 18.9.3
* Add test of RST file(s)
* Switch from "shell" to "console" lexer
* Add --json output option to "environments path" command
* Update history
* Add note linking to a proof-of-concept example
* Bump version: 18.9.2 → 18.9.3
* Resolve pep8 findings
* Embed links to asciinema screencasts in README.rst
* Add check for required Python version
* Bump version: 18.9.1 → 18.9.2
* Add example of quoting values with spaces in them
* Don't limit "secrets set" to just string type
* Bump version: 18.9.0 → 18.9.1
* Fix broken README.rst file
* Add twine check to Makefile
* Add documentation of "environments default" command
* Remove another descriptor
* Remove erroneous descriptor
18.9.0
------
* Bump version: 0.17.3 → 18.9.0
* Update history and status, description
* Add quoting in email in case values have spaces in them
* Resolve pep8 finding
* Bump version: 0.17.2 → 0.17.3
* Add more details to email for "secrets send"
* Add GPG email to feature list
* Typo in list item
* Complete documentation on using "secrets send"
* Bump version: 0.17.1 → 0.17.2
* Update documentation
* Get GPG encrypted email delivery working
* Bump version: 0.17.0 → 0.17.1
* Add "groups create" command
* Fix typo
* Handle missing crypt module
* Update history
* Bump version: 0.16.0 → 0.17.0
* Resolve pep8 errors
* Improve error handling consistency when no environment
* Add long long\_description\_content\_type
* Clarification
* Update history
v0.16.0
-------
* Bump version: 0.15.6 → 0.16.0
* Add README.rst to bumpversion support
* Bump version: 0.15.5 → 0.15.6
* Add attribute maps
* Fix typos in comments
* Fix method name
* Add prompt attributes to descriptions
* Update documentation
* Update README.rst per new features
* Add more history
* Bump version: 0.15.4 → 0.15.5
* Resolve pep8 test failures
* Identify newly created secrets
* Bump version: 0.15.3 → 0.15.4
* Note and/or set newly defined missing secrets
* Add note about Python security issues
* Bump version: 0.15.2 → 0.15.3
* When exporting vars, also export PYTHON\_SECRETS\_ENVIRONMENT w/env
* Bump version: 0.15.1 → 0.15.2
* Update documentation on contributing
* Refactor documentation
* Add more history
* Bump version: 0.15.0 → 0.15.1
* Fix import
* Add 'environments tree' command
* Simplify checks
* Bump version: 0.14.3 → 0.15.0
* Add explicit cwd specification (for API) and subdirectory paths
* Refactor to add "groups path" command for consistency
* Bump version: 0.14.2 → 0.14.3
* Add "environments path" command
* Bump version: 0.14.1 → 0.14.2
* Add "secrets get" command
* Bump version: 0.14.0 → 0.14.1
* Add 'environment default' command
* Allow localized defaulting of environment via file
* Add modules required for releasing
v0.14.0
-------
* Bump version: 0.13.5 → 0.14.0
* Resolve pep8 failure
* Bump version: 0.13.4 → 0.13.5
* Fix string handling for command line options
* Add exporting defined environment variables
* Fix reference to global option
* Unset changed on write
* Drop Python 3.4 and 3.5, since secrets module only in >=3.6
* Bump version: 0.13.3 → 0.13.4
* Bump version: 0.13.2 → 0.13.3
* Add 'utils tfouput' command
* Resolve bandit issues
* Bump version: 0.13.1 → 0.13.2
* Missed one update to README.rst
* Bump version: 0.13.0 → 0.13.1
* Allow setting variables from simple command lines
* Update documentation per new features
v0.13.0
-------
* Bump version: 0.12.0 → 0.13.0
* Add --cidr option for 'utils myip'
* Make 'utils' command plural like other commands
* Add secrets/ template directory
v0.12.0
-------
* Bump version: 0.11.0 → 0.12.0
* Fix "secrets generate" bug related to non-existent secrets.yml file
* Fix virtualenv selection
v0.11.0
-------
* Bump version: 0.10.0 → 0.11.0
* Add 'util myip' command
* FIx module name
* Restrict to only Python >= 3.6 due to use of secrets module
* Add 'run' command
* Add ability to export (prefixed) secrets into environment
* Fix bug in examples
v0.10.0
-------
* Bump version: 0.9.1 → 0.10.0
* Add manual setting of string variables
* Add "string" type requiring manual setting
* Resolve failed tests
* Add "secrets path" command and documentation
* Add "template" command
* Default environment to basename of cwd
* Add cloning of environment from source (e.g., a repo)
* Forgot to remove WIP
v0.9.1
------
* Bump version: 0.9.0 → 0.9.1
* Fix test
* Travis not ready for Python 3.7
* Update Travis config
* Also drop Python 2.7 support on Travis
* Drop Python 2.7 support (at least for now)
v0.9.0
------
* Bump version: 0.8.1 → 0.9.0
* Update tests
* Update documentation
* Refactor environment management into SecretsEnvironment class
* Add 'secrets describe' command
* Add "environments create" and "environments list" commands
* Add Python 3.7
* Switch virtualenv to use for debugging
* Expand secret generation methods
* Fix main functions
* Fix tests
* Update README.rst example
* Bug fixes
* Add final initial test and debug others
* Add "secrets init" command
* Start adding unit tests for python\_secrets.main
* Fix modeline
* Add feature for sending secrets via email using Google OAuth2 SMTP
* Add argument checking function
* Add six for securing "input" call
* Sort command entry points
* Fix .gitignore for venv/
* Fix modelines
* Add missing import
* Bump version: 0.8.0 → 0.8.1
* Fix docstring
* Add more tests
* Remove unused function
0.8
---
* Bump version: 0.7.2 → 0.8.0
* Fix default path/environment handling
* Add grant acknowledgement
* Use -delete switch
* pep8 fixes
* Add grant acknowledgement
* Use -delete switch
* pep8 fixes
* Add variables to \_\_all\_\_
* Bump version: 0.7.1 → 0.7.2
* Bump version: 0.7.0 → 0.7.1
* Fix bug introduced by change in secrets descriptions
0.7
---
* Bump version: 0.6.1 → 0.7.0
* Add ability to show variables by group(s)
* Add documentation for "groups show"
* Remove unused variable
* Bump version: 0.6.0 → 0.6.1
* Add "groups show" functionality
* Remove unused requirements
0.6
---
v0.6.0
------
* Bump version: 0.5.2 → 0.6.0
* Bump version: 0.5.1 → 0.5.2
* Fix variable selector
v0.5.1
------
* Bump version: 0.5.0 → 0.5.1
* Add other tested Python versions
* Add develop branch to Travis
0.5
---
v0.5.0
------
* Bump version: 0.4.2 → 0.5.0
v0.4.2
------
* Bump version: 0.4.1 → 0.4.2
* Fix pep8 finding
* It's getting late, did I mention that?
* Refining matrix
* Continue to tweak tests for Travis
* Add back environments
* Missed something
* Again with the fixes
* Attempting to fix travis error
* Fixing travis error
v0.4.1
------
* Bump version: 0.4.0 → 0.4.1
* Rename tests
* Fix erroneous pep8 fixes
* Update Makefile to handle test and release
v0.4.0
------
* Bump version: 0.3.6 → 0.4.0
* Add pep8, flake8, bandit tests
* Remove unused variable
* Don't try to load files on "help"
* Fix imports
* Add test for .find()
v0.3.6
------
* Bump version: 0.3.5 → 0.3.6
* Narrow tox environments
* Unset env vars
v0.3.5
------
* Bump version: 0.3.4 → 0.3.5
* Add requirements.txt
v0.3.4
------
* Bump version: 0.3.3 → 0.3.4
* Working tests
* Switch to setup.py test from tox for now
* Update travis.ci config
* Add Python 3.6
* Fix example
v0.3.3
------
* Bump version: 0.3.2 → 0.3.3
* Switch code-block type to shell
v0.3.2
------
* Bump version: 0.3.1 → 0.3.2
* Update documenation
* Update HISTORY
* Add shorter command alias
* Fix license description
* Add targets for twine upload to pypi
* Allow showing a specified subset of secrets
* Only allow manual setting of a variable that has a description
v0.3.1
------
* Bump version: 0.3.0 → 0.3.1
* Add environment variable D2\_NO\_REDACT to control --no-redact default
* Prepare for pypi distribution
* Fix command examples (new syntax)
* Fix code-block
v0.3.0
------
* Bump version: 0.2.1 → 0.3.0
* Add more todo items
* Redact on all output types (unless --no-redact set)
* Move closer to openstack client command structure
* Add description of command set model
* Use explicit YAML format (leading "---")
* Improve exception handling for reading secrets descriptions
* Add future work section
* Update README.rst
v0.2.1
------
* Bump version: 0.2.0 → 0.2.1
* Add documentation
* Allow environment to be null
* Be quiet with logging unless error or -v
v0.2.0
------
* Bump version: 0.1.0 → 0.2.0
* Remove file not tracked by bumpversion
* Add ability to manually set or generate secrets by type
* Add method description strings
* Add target to install into current virtualenv
* Initial load