python-objgraph/python-objgraph.changes
Todd R d8e0d18016 Accepting request 603751 from home:TheBlackCat:branches:devel:languages:python
- Update to version 3.4.0
  * New functions: :func:`get_new_ids`, :func:`at_addrs`.
- Update to version 3.3.0
  * New function: :func:`growth`.
- Update to version 3.2.0
  * New ``filter`` argument for :func:`typestats`, :func:`most_common_types`,
    :func:`show_most_common_types`, :func:`show_growth`.
  * Show lambda functions in a more human-friendly way.
- Update to version 3.1.2
  * Correct UTF-8 mojibake in the changelog and switch all links to HTTPS.
- Update to version 3.1.1
  * Add support for Python 3.6.
  * Replace bare ``except:`` in ``safe_repr()`` with ``except Exception:``.
- Use %license tag

OBS-URL: https://build.opensuse.org/request/show/603751
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-objgraph?expand=0&rev=2
2018-05-03 16:01:15 +00:00

66 lines
2.9 KiB
Plaintext

-------------------------------------------------------------------
Thu May 3 14:30:39 UTC 2018 - toddrme2178@gmail.com
- Update to version 3.4.0
* New functions: :func:`get_new_ids`, :func:`at_addrs`.
- Update to version 3.3.0
* New function: :func:`growth`.
- Update to version 3.2.0
* New ``filter`` argument for :func:`typestats`, :func:`most_common_types`,
:func:`show_most_common_types`, :func:`show_growth`.
* Show lambda functions in a more human-friendly way.
- Update to version 3.1.2
* Correct UTF-8 mojibake in the changelog and switch all links to HTTPS.
- Update to version 3.1.1
* Add support for Python 3.6.
* Replace bare ``except:`` in ``safe_repr()`` with ``except Exception:``.
- Use %license tag
-------------------------------------------------------------------
Wed Apr 19 16:16:46 UTC 2017 - toddrme2178@gmail.com
- Update to version 3.1.0
* Support displaying graphs inline in IPython/Jupyter notebooks (`issue 28
<https://github.com/mgedmin/objgraph/pull/28>`).
- Update to version 3.0.1
* The ``file`` argument of :func:`show_most_common_types` and
:func:`show_growth` now defaults to ``None`` instead of ``sys.stdout``.
``None`` is interpreted to be the same as ``sys.stdout``, which means
the right stdout will be used if you change it at runtime (which happens,
in doctests).
- Update to version 3.0.0
* :func:`show_most_common_types` and :func:`show_growth` now accept a ``file``
argument if you want to redirect the output elsewhere.
* Don't trust ``__class__`` to be accurate and ``__name__`` to be a string.
Fixes errors in some convoluted corner cases when mocks are involved.
* Drop support for Python 2.4, 2.5, and 2.6.
* Drop support for Python 3.1 and 3.2.
* Add support for Python 3.5.
- Update to version 2.0.1
* Avoid creating reference cycles between the stack frame and the local
``objects`` variable in :func:`by_type`, :func:`count`, and
:func:`typestats`.
- Update to version 2.0.0
* :func:`show_refs` and :func:`show_backrefs` now accept a file-like object
(via the new ``output`` argument) as an alternative to a filename.
* Made internal helper methods private. This includes :func:`find_chain`,
:func:`show_graph`, :func:`obj_node_id`, :func:`obj_label`, :func:`quote`,
:func:`long_typename`, :func:`safe_repr`, :func:`short_repr`,
:func:`gradient`, :func:`edge_label`, and :func:`_program_in_path`.
* Correctly determine the name of old-style classes in :func:`count`,
:func:`by_type`, and graph drawing functions.
- Implement singlespec version.
-------------------------------------------------------------------
Tue Sep 30 11:59:33 UTC 2014 - toddrme2178@gmail.com
- Fix building.
* We don't actually need graphviz-python
* We do need graphviz-gnome after all
-------------------------------------------------------------------
Tue Sep 30 10:47:41 UTC 2014 - toddrme2178@gmail.com
- Initial version