Skip to content

Commit

Permalink
Prepare release 0.32.0 (#2006)
Browse files Browse the repository at this point in the history
* Prepare release 0.32.0

* Update release-notes/0.32.0.rst

Co-authored-by: Rebecca Dimock <[email protected]>

* Update release-notes/0.32.0.rst

Co-authored-by: Rebecca Dimock <[email protected]>

* Update release-notes/0.32.0.rst

Co-authored-by: Rebecca Dimock <[email protected]>

---------

Co-authored-by: Rebecca Dimock <[email protected]>
  • Loading branch information
kt474 and beckykd authored Oct 30, 2024
1 parent 7da4024 commit 2a5425d
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 35 deletions.
48 changes: 48 additions & 0 deletions release-notes/0.32.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
0.32.0 (2024-10-30)
===================

New Features
------------

- Added :func:`~.draw_execution_spans`, a function for creating a Plotly figure that
visualizes one or more :class:`~.ExecutionSpans` objects. Also added the convenience
method :meth:`~.ExecutionSpans.draw` to invoke the drawing function on a
particular instance. (`1923 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1923>`__)

.. code-block:: python
from qiskit_ibm_runtime.visualization import draw_execution_spans
# use the drawing function on spans from sampler job data
spans1 = sampler_job1.result().metadata["execution"]["execution_spans"]
spans2 = sampler_job2.result().metadata["execution"]["execution_spans"]
draw_execution_spans(spans1, spans2)
# convenience to plot just spans1
spans1.draw()
- Added a new method, ``backend.refresh()`` that refreshes the
current backend target with the latest updates from the server. (`1955 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1955>`__)
- Added :class:`.DoubleSliceSpan`, an :class:`ExecutionSpan` for batching with two slices. (`1982 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1982>`__)
- Each of :class:`.SamplerV2`, :class:`.EstimatorV2`, and :class:`.noise_learner.NoiseLearner` now has
a ``backend()`` method that returns the backend that the class is configured with. (`1995 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1995>`__)


Other Notes
-----------

- Deprecations from the ``0.25.0`` release have been removed.

- ``optimization_level`` is no longer a valid option for ``EstimatorV2``.
- Job methods ``interim_results()`` and ``stream_results()`` have been removed. (`1965 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1965>`__)
- The ``channel_strategy`` parameter in ``QiskitRuntimeService`` has been removed.
To continue using Q-CTRL in your workflow, please explore the following options:

* If your organization has an existing IBM Quantum Premium Plan instance: migrate to
the Q-CTRL Performance Management Function, found in the
`Qiskit Functions Catalog <https://quantum.ibm.com/functions>`__.

* To continue using Qiskit Runtime with IBM Cloud: migrate to Q-CTRL Fire Opal,
the same performance management product accessible directly through Q-CTRL.
You can `connect your IBM Cloud API key and Qiskit Runtime CRN <https://docs.q-ctrl.com/fire-opal/discover/hardware-providers/how-to-authenticate-with-ibm-credentials>`__
to Fire Opal. (`1966 <https://github.com/Qiskit/qiskit-ibm-runtime/pull/1966>`__)
15 changes: 0 additions & 15 deletions release-notes/unreleased/1923.feat.rst

This file was deleted.

2 changes: 0 additions & 2 deletions release-notes/unreleased/1955.feat.rst

This file was deleted.

4 changes: 0 additions & 4 deletions release-notes/unreleased/1965.other.rst

This file was deleted.

11 changes: 0 additions & 11 deletions release-notes/unreleased/1966.other.rst

This file was deleted.

1 change: 0 additions & 1 deletion release-notes/unreleased/1982.feat.rst

This file was deleted.

2 changes: 0 additions & 2 deletions release-notes/unreleased/1995.feat.rst

This file was deleted.

0 comments on commit 2a5425d

Please sign in to comment.