Pywbem

Latest version: v1.7.3

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 7

0.17.2

Not secure
-------------

Released: 2020-04-19

**Bug fixes:**

* Test: Fixed virtualenv related failures during install test.
(See issue 2174)

* Dev: Increased the versions of the base packages 'pip', 'setuptools' and
'wheel' to the content of Ubuntu 18.04 as a minimum, and to the lowest
versions that support a particular Python versions beyond that.
This only affects development of pywbem. (See issue 2174)

* Setup: Added the scripts for installing OS-level dependencies
(pywbem_os_setup.sh/.bat) to the source distribution archive. Note that
starting with the upcoming pywbem 1.0.0, these scripts are no longer needed,
so this change will not be rolled forward into 1.0.0.
(See issue 2173)

* Increased the version of 'PyYAML' from 5.1 to 5.3 on Python 2.7, to pick
up a fix for dealing with Unicode characters above U+FFFF in narrow Python
builds. This could not be fixed for Python 2.6 since PyYAML 3.12 dropped
support for Python 2.6 (See issue 2182)

* Fixed raise error for invalid reference_direction in
WBEMServer.get_central_instances(). (See issue 2187)

* Fixed raise error for missing ports in WBEMListener.__init__().
(See issue 2188)

0.17.1

Not secure
-------------

Released: 2020-04-13

**Bug fixes:**

* Fixed version incompatibilities reported by pip for tox/pluggy,
ipython/prompt-toolkit, and flake8/pyflakes. (See issue 2153)

* Fixed the issue where formatting the timezone name of a pywbem.MinutesFromUTC
object raised NotImplementedError, by adding a tzname() method.
(see issue 2160)

* Pinned mock to <4.0.0 on Python <3.6 due to an install issue when installing
from the source tarball. (See issue 2150).

* Enabled installation using 'setup.py install' from unpacked source distribution
archive, and added install tests for various installation methods including
this one. (See issue 2150).

* Increased minimum version of 'six' from 0.10.0 to 0.12.0 when on Python 3.8
(or higher). (See issue 2150).

* Increased minimum version of 'setuptools' on Python 3.7 from 33.1.1 to 38.4.1
to fix a bug with new format of .pyc files. (See issue 2167).

0.17.0

Not secure
-------------

Released: 2020-04-03

**Bug fixes:**

* Test: Fixed a bug introduced in 0.14.5 where the manualtest scripts failed
with invalid relative import. (see issue 2039)

* Dev: Fixed installation of Jupyter Notebook on Python 3.4 by defining
the appropriate minimum versions of the ipython package, per Python version.
(See issue 2135)

* Pinned dparse to <0.5.0 on Python 2.7 due to an issue. (See issue 2139)

**Enhancements:**

* Changed the HTTPS support of `pywbem.WBEMListener` from using the deprecated
`ssl.wrap_socket()` function to using the `ssl.SSLContext` class that was
introduced in Python 2.7.9. This causes more secure SSL settings to be used.
On Python versions before 2.7.9, pywbem will continue to use the deprecated
`ssl.wrap_socket()` function. (See issue 2002)

**Cleanup:**

* Renamed all sub-modules within the pywbem namespace so they are now private
(i.e. with a leading underscore). This has been done for consistency with
the upcoming 1.0.0 version of pywbem, for eaier rollback of changes from
that version. For compatibility to users of pywbem who use these sub-modules
directly, despite the recommendation to import only the symbols from the
pywbem namespace, these sub-modules are still available under their previous
names. (See issue 1925)

0.16.0

Not secure
-------------

This version contains all fixes up to pywbem 0.15.0.

Released: 2020-01-09

**Bug fixes:**

* Silenced the MOFCompiler class for verbose=False. So far, it still printed
messages for generating the YACC parser table, causing one test to fail,
and others to issue useless prints. (Issue 2004)

* Test: Fixed an error in testing the PLY table version in testcases that caused
the LEX/YACC parser table files to be written to the pywbem installation
when using TEST_INSTALLED. (Related to issue 2004)

* Fixed that the MOFCompiler could be created with handle=None to work against
a local repository. It was documented that way, but failed with
AttributeError. (See issue 1998)

* Fixed the error that the MOF compilation of a class could fail but the
error was not surfaced. This only happened when the MOF compiler was invoked
against a WBEM server, when the class already existed, and when the
ModifyClass operation that was attempted in this case, failed.

* Fixed that the CIM-XML payload in log entries was spread over multiple lines.
The payload is now escaped as a single-line Python string.

* Test: Fixed an error in test_format_random() for the backslash character.
(See issue 2027)

* Fixed handling of Unicode string in ca_certs parm of WBEMConnection on py2
(See issue 2033)

**Enhancements:**

* Test: Removed the dependency on unittest2 for Python 2.7 and higher.
(See issue 2003)

**Cleanup**:

* For Python 2.7 and higher, replaced the yamlordereddictloader package with
yamlloader, as it was deprecated. For Python 2.6, still using
yamlordereddictloader. (See issue 2008)

0.15.0

Not secure
-------------

This version contains all fixes up to pywbem 0.14.6.

Released: 2019-12-01

**Deprecations:**

* The wbemcli command has been deprecated. Pywbem 1.0.0 will remove the wbemcli
command. The recommended replacement is the pywbemcli command from the
pywbemtools package on Pypi: https://pypi.org/project/pywbemtools/.
Some of the reasons for the intended removal are: (See issue 1932)

- Wbemcli does not have a command line mode (i.e. a non-interactive mode), but
pywbemcli does.
- The interactive mode of wbemcli is more of a programming environment than
an interactive CLI, and that makes it harder to use than necessary.
Pywbemcli has an interactive mode that uses the same commands as in the
command line mode. If you need an interactive programming prompt e.g. for
demonstrating the pywbem API, use the interactive mode of the python
command, or Python's IDLE.
- Pywbemcli provides more functionality than wbemcli, e.g. server commands,
persistent connections, class find, instance count, or multiple output
formats.

**Bug fixes:**

* Fixed that the embedded_object attribute was not copied in CIMProperty.copy().

* Fixed that inconsistent names (between key and object name) were not detected
when setting CIMMethod.parameters from an input dictionary.

* Docs: Fixed errors in description of CIMInstance.update_existing().

* Added dependency on pywin32 package for Windows, and pinned it to version 225
to work around an issue in its version 226. (See issue 1946)

* Modified pywbem_mock to create the instance path of new instances
created by the compiler. Previously, the mocker generated an exception
if the path for a compiler created new instance was not set by the
compiler using the instance alias. That requirement has been removed so
the mock repository will attempt to create the path (which is required
for the mock repository) from properties provided in the new instance.
If any key properties of the class are not in the instance it will generate
an exception. This is backward compatible since the mocker will accept
paths created by the compiler. The incompatibility is that the mocker
tests for the existance of all key properties. (see issue 1958)

* Circumvented removal of Python 2.7 in Appveyor's CygWin installation
by manually installing the python2 CygWin package. (See issue 1949)

* Fixed issue with MOFCompiler class where mof_compiler script was not writing
the new classes and instances to the remote repository defined with the -s
parameter. (see issue 1956 )

* Fixed issue with mof_compiler and mof rollback where instances were
not removed when rollback was executed. This was caused by MOFWBEMConnection
code that did not put correct paths on the instances when they were
inserted into the local repository so the rollback delete of the instances
could not identify the instances. (see issue 1158)

* Fixed several install issues with the lxml, flake8, pywin32, pip, setuptools,
and wheel packages on Python 3.8 on Windows. (See issues 1975, 1980).

**Enhancements:**

* Removed the use of the 'pbr' package because it caused too many undesirable
side effects. As part of that, removed PKG-FILE and setup.cfg and went back
to a simple setup.py file. (See issues 1875, 1245, 1408, 1410)

* Code: Fixed pywbem_mock issue where CreateInstance was not handling the case
sensitivity of property cases if the instance property name case was different than the
class property name case. While not legally incorrect the created instance
looks bad. See issue 1883

* Code: Fixed pywbem_mock issue where ModifyInstance not handling case
sensitivity of property cases if the instance property name case was
different than the class property name case. Modify failed if
the case of property names did not match. Fixed the case test error and
put the class defined proerty name into the modified instance. See issue 1887

* Fix issue in mof compiler where mof instance that duplicates existing instance
path can get lost with no warning. NOTE: This does not happen in the
standalone compiler because it creates a duplicate instance issue 1852
but depending on the implementation of ModifyInstance for the compiler,
it can simply lose the instance. See issue 1894

* Fix issue in pywbem_mock where instances with duplicate paths defined in mof and
put into the mocker repository were originally accepted as separate instances
but fixed to cause an exception in issue 1852, conform to the DMTF spec
definition that requires that the second instance modify the first.
Fix issue in the mof_compiler where the CreateInstance retry logic was
first doing a ModifyInstance and if that failed then trying a DeleteInstance
and CreateInstance. We removed the DeleteInstance/CreateInstance logic and
insured that an exception would occur if the ModifyInstance failed.
See issue 1890

* Code: Fix issue with pywbem_mock that allows duplicate instances to be
inserted into the mock repository when mof instances are compiled. Duplicate
instances (CIMInstanceName) will now cause an exception. See issue 1852

* Added support for byte string values in keybindings of CIMInstanceName
method to_wbem_uri(), consistent with other methods.

* Test: Added Python 3.8 to the tested environments. (See issue 1879)

* Clarified that namespace and host will be ignored when the `ResultClass` and
`AssocClass` parameters of association operations are specified using a
`CIMClassName` object. (See issue 1907)

* Added capability to log calls to WBEM server from mof_compile script. AAdds
an option to the cmd line options to enable logging.

* Added SSL related issues to the Troubleshooting section in the
Appendix of the docs, and added the OpenSSL version to the
`pywbem.ConnectionError` exceptions raised due to SSL errors for better
diagnosis. (See issues 1950 and 1966)

* Added 'twine check' when uploading a version to Pypi, in order to get
the README file checked before uploading.

**Cleanup:**

* Removed unnecessary code from cim_obj._scalar_value_tomof() that processed
native Python types int, long, float. These types cannot occur in this
function, so no tests could be written that test that code.

0.14.6

Not secure
-------------

Released: 2019-10-10

**Bug fixes:**

* Fixed case sensitive class name check in mock support of ModifyInstance
(See issue 1859)

* Test: Fixed args of WBEMOperation methods in mock unit tests & function tests.

**Cleanup:**

* Test: Enabled Python warning suppression for PendingDeprecationWarning
and ResourceWarning (py3 only), and fixed incorrect make variable for that.
(See issue 1720)

* Test: Removed pinning of testfixtures to <6.0.0 for Python 2.7/3.x due
to deprecation issue announced for Python 3.8, and increased its minimum
version from 4.3.3 to 6.9.0.

* Test: Increased minimum version of pytest from 3.3.0 to 4.3.1 because
it fixed an issue that surfaced with pywbem minimum package levels
on Python 3.7.

* Increased minimum version of PyYAML from 3.13 to 5.1 due to deprecation issue
announced for Python 3.8.

Page 3 of 7

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.