summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDean Troyer <dtroyer@gmail.com>2016-10-07 14:52:34 -0500
committerSteve Martinelli <s.martinelli@gmail.com>2016-10-07 21:39:53 +0000
commit762f2f2c34814b8bfc615696918d8cb49b93a1dd (patch)
tree3cabd191bcc1f703d7a7d15dc9701f08491c0662
parent12ed93e3d1a700a961f0799615a7f6e2852f123c (diff)
downloadpython-openstackclient-3.3.0.tar.gz
More 3.3.0 release notes3.3.0
Plus minor doc formatting updates Change-Id: I849794e954cdeb582f7a0b104c62ec6688ead628
-rw-r--r--doc/source/command-objects/router.rst3
-rw-r--r--releasenotes/notes/add-overwrite-option-190a9c6904d53dab.yaml6
-rw-r--r--releasenotes/notes/bp-allow-overwrite-set-options-190a9c6904d53dab.yaml16
-rw-r--r--releasenotes/notes/bp-network-command-options-2-e7b13a6a09f5d21e.yaml6
-rw-r--r--releasenotes/notes/bp-neutron-client-descriptions-a80902b4295843cf.yaml6
-rw-r--r--releasenotes/notes/bp-support-no-property-in-aggregate-b74a42e00a65d14a.yaml7
-rw-r--r--releasenotes/notes/bug-1588171-61214d0ea482988c.yaml4
-rw-r--r--releasenotes/notes/bug-1609233-90b2ddf8d941050e.yaml6
-rw-r--r--releasenotes/notes/bug-1614458-c42be5738f447db8.yaml2
-rw-r--r--releasenotes/notes/bug-1614823-e89080342f25f2c0.yaml2
-rw-r--r--releasenotes/notes/bug-1627913-2adf4182977e5926.yaml5
-rw-r--r--releasenotes/notes/bug-1630822-mask-password-on-debug-20dcdf1c54e84fa1.yaml5
-rw-r--r--releasenotes/notes/overwrite-options-for-subnet-76476127dcf321ad.yaml6
-rw-r--r--releasenotes/notes/support-no-property-in-aggregate-b74a42e00a65d14a.yaml7
-rw-r--r--releasenotes/source/index.rst1
15 files changed, 53 insertions, 29 deletions
diff --git a/doc/source/command-objects/router.rst b/doc/source/command-objects/router.rst
index 335de179..15163980 100644
--- a/doc/source/command-objects/router.rst
+++ b/doc/source/command-objects/router.rst
@@ -63,7 +63,8 @@ Create new router
os router create
[--project <project> [--project-domain <project-domain>]]
[--enable | --disable]
- [--distributed] [--ha]
+ [--distributed]
+ [--ha]
[--description <description>]
[--availability-zone-hint <availability-zone>]
<name>
diff --git a/releasenotes/notes/add-overwrite-option-190a9c6904d53dab.yaml b/releasenotes/notes/add-overwrite-option-190a9c6904d53dab.yaml
deleted file mode 100644
index fdd61b52..00000000
--- a/releasenotes/notes/add-overwrite-option-190a9c6904d53dab.yaml
+++ /dev/null
@@ -1,6 +0,0 @@
----
-features:
- - |
- ``port set`` command now allows the user to overwrite fixed-ips or binding-profile
- of a port.
- [ Blueprint `allow-overwrite-set-options <https://blueprints.launchpad.net/python-openstackclient/+spec/allow-overwrite-set-options>` _] \ No newline at end of file
diff --git a/releasenotes/notes/bp-allow-overwrite-set-options-190a9c6904d53dab.yaml b/releasenotes/notes/bp-allow-overwrite-set-options-190a9c6904d53dab.yaml
new file mode 100644
index 00000000..bd7a7d73
--- /dev/null
+++ b/releasenotes/notes/bp-allow-overwrite-set-options-190a9c6904d53dab.yaml
@@ -0,0 +1,16 @@
+---
+features:
+ - |
+ Allow ``--no-fixed-ip`` and ``--no-binding-profile`` options to
+ ``port set`` command to be specified when ``--fixed-ip`` and
+ ``--binding-profile`` are present. This allows the list of fixed
+ IPs and binding profiles to be cleared and replaced with new values
+ in a single command.
+ [Blueprint `allow-overwrite-set-options <https://blueprints.launchpad.net/python-openstackclient/+spec/allow-overwrite-set-options>`_]
+ - |
+ Add ``--no-allocation-pool`` and ``--no-host-route`` options to
+ ``subnet set`` command that clears the respective values in the
+ specified subnet. This allows new values to replace the entire
+ list of existing values in a single command for allocation pools
+ and host routes.
+ [Blueprint `allow-overwrite-set-options <https://blueprints.launchpad.net/python-openstackclient/+spec/allow-overwrite-set-options>`_]
diff --git a/releasenotes/notes/bp-network-command-options-2-e7b13a6a09f5d21e.yaml b/releasenotes/notes/bp-network-command-options-2-e7b13a6a09f5d21e.yaml
new file mode 100644
index 00000000..d0ba7ff3
--- /dev/null
+++ b/releasenotes/notes/bp-network-command-options-2-e7b13a6a09f5d21e.yaml
@@ -0,0 +1,6 @@
+---
+features:
+ - |
+ Add ``--description`` option to ``network create`` and
+ ``network set`` commands.
+ [Blueprint `network-commands-options <https://blueprints.launchpad.net/python-openstackclient/+spec/network-commands-options>`_]
diff --git a/releasenotes/notes/bp-neutron-client-descriptions-a80902b4295843cf.yaml b/releasenotes/notes/bp-neutron-client-descriptions-a80902b4295843cf.yaml
index 3c4f4a50..83a00902 100644
--- a/releasenotes/notes/bp-neutron-client-descriptions-a80902b4295843cf.yaml
+++ b/releasenotes/notes/bp-neutron-client-descriptions-a80902b4295843cf.yaml
@@ -1,7 +1,9 @@
---
features:
- |
- Add ``--description`` option for core network resources. Allows users to
- set a description for: ``floating ip create`` and ``router set/create``.
+ Add ``--description`` option to ``floating ip create`` command.
[Blueprint :oscbp:`neutron-client-descriptions`]
+ - |
+ Add ``--description`` option to ``router set`` and
+ ``router create`` commands.
[Blueprint :oscbp:`network-commands-options`]
diff --git a/releasenotes/notes/bp-support-no-property-in-aggregate-b74a42e00a65d14a.yaml b/releasenotes/notes/bp-support-no-property-in-aggregate-b74a42e00a65d14a.yaml
new file mode 100644
index 00000000..5f9c1c40
--- /dev/null
+++ b/releasenotes/notes/bp-support-no-property-in-aggregate-b74a42e00a65d14a.yaml
@@ -0,0 +1,7 @@
+---
+features:
+ - |
+ Add ``--no-property`` option to ``aggregate set`` command.
+ This allows the property list to be cleared and replaced with
+ new values in a single command.
+ [Blueprint `support-no-property-in-aggregate <https://blueprints.launchpad.net/python-openstackclient/+spec/support-no-property-in-aggregate>`_]
diff --git a/releasenotes/notes/bug-1588171-61214d0ea482988c.yaml b/releasenotes/notes/bug-1588171-61214d0ea482988c.yaml
index 29b9168c..7c32419b 100644
--- a/releasenotes/notes/bug-1588171-61214d0ea482988c.yaml
+++ b/releasenotes/notes/bug-1588171-61214d0ea482988c.yaml
@@ -1,5 +1,5 @@
---
fixes:
- |
- Update novaclient DEFAULT_API_VERSION to 2.1 from 2.0
- [Bug `1588171 <https://bugs.launchpad.net/bugs/1588171>`_] \ No newline at end of file
+ Update novaclient ``DEFAULT_API_VERSION`` from 2.0 to 2.1
+ [Bug `1588171 <https://bugs.launchpad.net/bugs/1588171>`_]
diff --git a/releasenotes/notes/bug-1609233-90b2ddf8d941050e.yaml b/releasenotes/notes/bug-1609233-90b2ddf8d941050e.yaml
index 671a39b1..0f61edf1 100644
--- a/releasenotes/notes/bug-1609233-90b2ddf8d941050e.yaml
+++ b/releasenotes/notes/bug-1609233-90b2ddf8d941050e.yaml
@@ -1,4 +1,6 @@
---
fixes:
- - Fix the ``--class`` option not work when we set/show the quota class.
- [Bug `1609233 <https://bugs.launchpad.net/bugs/1609233>`_] \ No newline at end of file
+ - |
+ Fix the ``--class`` option in ``quota set`` and ``quota show``
+ commands to not perform a project lookup in Identity.
+ [Bug `1609233 <https://bugs.launchpad.net/bugs/1609233>`_]
diff --git a/releasenotes/notes/bug-1614458-c42be5738f447db8.yaml b/releasenotes/notes/bug-1614458-c42be5738f447db8.yaml
index 671882b0..15e0464f 100644
--- a/releasenotes/notes/bug-1614458-c42be5738f447db8.yaml
+++ b/releasenotes/notes/bug-1614458-c42be5738f447db8.yaml
@@ -1,6 +1,6 @@
---
features:
- |
- Adds ``description`` option to ``subnet create`` and
+ Adds ``--description`` option to ``subnet create`` and
``subnet set`` commands.
[Bug `1614458 <https://bugs.launchpad.net/bugs/1614458>`_]
diff --git a/releasenotes/notes/bug-1614823-e89080342f25f2c0.yaml b/releasenotes/notes/bug-1614823-e89080342f25f2c0.yaml
index 96c66619..9e4057fc 100644
--- a/releasenotes/notes/bug-1614823-e89080342f25f2c0.yaml
+++ b/releasenotes/notes/bug-1614823-e89080342f25f2c0.yaml
@@ -1,6 +1,6 @@
---
features:
- |
- Adds ``description`` option to ``subnet pool create``
+ Adds ``--description`` option to ``subnet pool create``
and ``subnet pool set`` commands.
[Bug `1614823 <https://bugs.launchpad.net/bugs/1614823>`_]
diff --git a/releasenotes/notes/bug-1627913-2adf4182977e5926.yaml b/releasenotes/notes/bug-1627913-2adf4182977e5926.yaml
index 454d4c89..f23c8d1f 100644
--- a/releasenotes/notes/bug-1627913-2adf4182977e5926.yaml
+++ b/releasenotes/notes/bug-1627913-2adf4182977e5926.yaml
@@ -1,5 +1,8 @@
---
features:
- - Add ``--source-replicated``, ``--consistency-group``, ``--hint`` and
+ - |
+ Add ``--source-replicated``, ``--consistency-group``, ``--hint`` and
``--multi-attach`` options to ``volume create`` command in volume v2.
+ Make ``--size`` optional when ``--snapshot``, ``--source`` or
+ ``source-replicated`` options are present.
[Bug `1627913 <https://bugs.launchpad.net/python-openstackclient/+bug/1627913>`_]
diff --git a/releasenotes/notes/bug-1630822-mask-password-on-debug-20dcdf1c54e84fa1.yaml b/releasenotes/notes/bug-1630822-mask-password-on-debug-20dcdf1c54e84fa1.yaml
new file mode 100644
index 00000000..1edb3a2e
--- /dev/null
+++ b/releasenotes/notes/bug-1630822-mask-password-on-debug-20dcdf1c54e84fa1.yaml
@@ -0,0 +1,5 @@
+---
+security:
+ - |
+ Mask passwords when ``--debug`` or ``-vv`` options are used.
+ [Bug `1630822 <https://bugs.launchpad.net/python-openstackclient/+bug/1630822>`_]
diff --git a/releasenotes/notes/overwrite-options-for-subnet-76476127dcf321ad.yaml b/releasenotes/notes/overwrite-options-for-subnet-76476127dcf321ad.yaml
deleted file mode 100644
index 263cbdc9..00000000
--- a/releasenotes/notes/overwrite-options-for-subnet-76476127dcf321ad.yaml
+++ /dev/null
@@ -1,6 +0,0 @@
----
-features:
- - |
- ``subnet set`` command now allows the user to clear and overwrite
- allocation-pool or host-route of a subnet.
- [ Blueprint `allow-overwrite-set-options <https://blueprints.launchpad.net/python-openstackclient/+spec/allow-overwrite-set-options>` _]
diff --git a/releasenotes/notes/support-no-property-in-aggregate-b74a42e00a65d14a.yaml b/releasenotes/notes/support-no-property-in-aggregate-b74a42e00a65d14a.yaml
deleted file mode 100644
index 5a785e4a..00000000
--- a/releasenotes/notes/support-no-property-in-aggregate-b74a42e00a65d14a.yaml
+++ /dev/null
@@ -1,7 +0,0 @@
----
-features:
- - |
- Add ``--no-property`` option in ``aggregate set``.
- Supporting ``--no-property`` option will apply user a convenience way to
- clean all properties of aggregate in a short command.
- [Blueprint `support-no-property-in-aggregate <https://blueprints.launchpad.net/python-openstackclient/+spec/support-no-property-in-aggregate>`_]
diff --git a/releasenotes/source/index.rst b/releasenotes/source/index.rst
index 7739e4b4..09418379 100644
--- a/releasenotes/source/index.rst
+++ b/releasenotes/source/index.rst
@@ -21,6 +21,7 @@ OpenStack release was made is shown below:
================= =======================
OpenStack Release OpenStackClient Release
================= =======================
+Newton 3.2.0
Mitaka 2.3.0
Liberty 1.7.3
Kilo 1.0.6