Skip to content

Commit 86927f4

Browse files
committed
Add a small changelog for 7.2
1 parent 763817c commit 86927f4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docs/source/changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ ipywidgets changelog
44
A summary of changes in ipywidgets. For more detailed information, see the issues and pull requests for the appropriate milestone on [GitHub](https://github.com/jupyter-widgets/ipywidgets).
55

66

7+
7.2
8+
---
9+
To see the full list of pull requests and issues, see the [7.2 milestone](https://github.com/jupyter-widgets/ipywidgets/milestone/25?closed=1) on GitHub.
10+
11+
Changes include:
12+
13+
- Installing widgetsnbextension now automatically enables ipywidgets in Jupyter Notebook 5.3 or later. ([#1911](https://github.com/jupyter-widgets/ipywidgets/pull/1911))
14+
- `link` and `dlink` are now exported from ipywidgets for convenience, so that you can import them directly from ipywidgets instead of needing to import them from traitlets. ([#1923](https://github.com/jupyter-widgets/ipywidgets/pull/1923))
15+
- A new option `manual_name` has been added to `interact_manual()` to change the name of the update button, for example `interact_manual(manual_name='Update')`. ([#1924](https://github.com/jupyter-widgets/ipywidgets/pull/1923))
16+
- The Output widget now has a `.capture()` method, which returns a decorator to capture the output of a function.
17+
```python
18+
from ipywidgets import Output
19+
out = Output()
20+
21+
@out.capture()
22+
def f():
23+
print('This output is captured')
24+
```
25+
The `.capture()` method has a `clear_output` boolean argument to automatically clear the output every time the function is run, as well as a `wait` argument corresponding to the `clear_output` wait argument. ([#1934](https://github.com/jupyter-widgets/ipywidgets/pull/1934))
26+
- The JavaScript base widget manager class now has a `resolveUrl` method to resolve a URL relative to the current notebook location. ([#1993](https://github.com/jupyter-widgets/ipywidgets/pull/1993))
27+
- The html manager now has exposes flexibility in which JavaScript file is fetched for a package and the loader used to fetch the library. ([#1995](https://github.com/jupyter-widgets/ipywidgets/pull/1995))
28+
- The `@jupyter-widgets/controls` widget specification version was also bumped to `1.2.0`
29+
730
7.1
831
---
932
To see the full list of pull requests and issues, see the [7.1 milestone](https://github.com/jupyter-widgets/ipywidgets/milestone/23?closed=1) on GitHub.

0 commit comments

Comments
 (0)