File tree Expand file tree Collapse file tree 2 files changed +32
-3
lines changed Expand file tree Collapse file tree 2 files changed +32
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,9 @@ You will likely have to restart or re-login for the autocompletion to start work
103
103
104
104
.. code-block :: bash
105
105
106
- eval " $( _ESPTOOL_PY_COMPLETE=bash_source esptool.py espsecure.py espefuse.py) "
106
+ eval " $( _ESPTOOL_PY_COMPLETE=bash_source esptool.py) "
107
+ eval " $( _ESPSECURE_PY_COMPLETE=bash_source espsecure.py) "
108
+ eval " $( _ESPEFUSE_PY_COMPLETE=bash_source espefuse.py) "
107
109
108
110
109
111
.. group-tab :: Zsh
@@ -121,14 +123,18 @@ You will likely have to restart or re-login for the autocompletion to start work
121
123
122
124
.. code-block :: bash
123
125
124
- eval " $( _ESPTOOL_PY_COMPLETE=zsh_source esptool.py espsecure.py espefuse.py) "
126
+ eval " $( _ESPTOOL_PY_COMPLETE=zsh_source esptool.py) "
127
+ eval " $( _ESPSECURE_PY_COMPLETE=zsh_source espsecure.py) "
128
+ eval " $( _ESPEFUSE_PY_COMPLETE=zsh_source espefuse.py) "
125
129
126
130
127
131
.. group-tab :: Fish
128
132
129
133
.. code-block :: bash
130
134
131
- _ESPTOOL_PY_COMPLETE=fish_source esptool.py espsecure.py espefuse.py | source
135
+ _ESPTOOL_PY_COMPLETE=fish_source esptool.py | source
136
+ _ESPSECURE_PY_COMPLETE=fish_source espsecure.py | source
137
+ _ESPEFUSE_PY_COMPLETE=fish_source espefuse.py | source
132
138
133
139
134
140
Original file line number Diff line number Diff line change @@ -284,3 +284,26 @@ Choices for the ``--before`` option have been renamed to use ``-`` instead of ``
284
284
**Migration Steps: **
285
285
286
286
1. Replace all underscores in the ``--before `` option with ``- `` in your scripts.
287
+
288
+ Command and Option Renaming
289
+ ###########################
290
+
291
+ All the commands and options have been renamed to use ``- `` instead of ``_ `` as a separator (e.g., ``burn_custom_mac `` -> ``burn-custom-mac ``).
292
+
293
+ From options only ``--file_name `` has been renamed to ``--file-name ``.
294
+
295
+ Old command and option names are **deprecated **, meaning they will work for now with a warning, but will be removed in the next major release.
296
+
297
+ **Migration Steps: **
298
+
299
+ 1. Replace all underscores in the command names with ``- `` in your scripts.
300
+
301
+
302
+ ``--port `` Option is Required
303
+ #############################
304
+
305
+ The ``--port `` option is now required for all commands (except when using ``--virt ``). Previously it was optional and defaulted to ``/dev/ttyUSB0 ``.
306
+
307
+ **Migration Steps: **
308
+
309
+ 1. Add the ``--port `` option to all your espefuse commands.
You can’t perform that action at this time.
0 commit comments