Skip to content

Commit 0fb17ae

Browse files
committed
Publish 2024.8.13
SHA256 hashes: lumino-algorithm-2.0.2.tgz: cdb3ce132decec1aa4afaa9ebfdf686e516e896a84074a3e6d4c7f2161e0e423 lumino-application-2.4.1.tgz: 2dc6f23ffe37b14ef608d68564a2e686e41ad9c960e6bac29661a53c37780e9e lumino-buildutils-2.0.1.tgz: e6e44c32ab7accd332d6f3c65002070a22d811e9a4857323a43da078f3024c3d lumino-collections-2.0.2.tgz: 23436ba1d98cf2788da0f498daf619bbd13dd33e981d74575d3457d37ce72128 lumino-commands-2.3.1.tgz: 3e70d364b270a4deb95474dcb8f1934b25adab3ece5c1f195e2fba65600a93ab lumino-coreutils-2.2.0.tgz: 51b63ed879f02189097d33d01bebdfad86a8ed45ef605b91f3b219d80714e611 lumino-datagrid-2.4.1.tgz: 3b0de31d35ac2321c00375db6757d89b0ebaacf86ef83f10044edcf312f06d50 lumino-default-theme-2.1.7.tgz: 473611c38ef8a37a0f0c295c7856ebd3e1fd2d143f22bbb4f4bfa2815b4349f6 lumino-disposable-2.1.3.tgz: ba735e10d94fdd90a30dfd1361f7b243b57694aba9fdbd3524ee408b85843a81 lumino-domutils-2.0.2.tgz: e165d8517dc712512a47e9ca6697aab78086efde58951e6d57b4a30cde54abea lumino-dragdrop-2.1.5.tgz: c7a6874e10c7d802b1286b3c0aa14d5c5dfd96fa82cfa2294e7605f497adf628 lumino-keyboard-2.0.2.tgz: 4cb7c73830ed98984455a34fce5671ed810b817a11594cac4e99041964f4d482 lumino-messaging-2.0.2.tgz: 05e4929f51c3277602c53c8690103e8e07702421659e08fe608fcbee6e75e87c lumino-polling-2.1.3.tgz: a572bf315ba4fa8f13927f0eb15978e6ad483aac2b151cf56af89735e43475dc lumino-properties-2.0.2.tgz: 2a8b6f879bae2e011fabe56d923cbe6ccfa78f74c8f3fd68e97b6982d244d5d6 lumino-signaling-2.1.3.tgz: d614c006b02cdeda68cb2ec45648506e78e07a79df672ce96f099621a0b0fa88 lumino-virtualdom-2.0.2.tgz: 610fba26b84075d18a41e30d6fd02364ad9d3ba257044ff09b548fc47f91527c lumino-widgets-2.5.0.tgz: d8b383a5c2358d12a0fcc05c665bd0db2e3e1d9401b2580feed2ccf8b0db5ddb
1 parent 2c613f0 commit 0fb17ae

File tree

2 files changed

+41
-3
lines changed

2 files changed

+41
-3
lines changed

CHANGELOG.md

+40-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,46 @@ github_url: 'https://github.com/jupyterlab/lumino/blob/main/CHANGELOG.md'
66

77
<!-- <START NEW CHANGELOG ENTRY> -->
88

9+
## 2024.8.13
10+
11+
([Full Changelog](https://github.com/jupyterlab/lumino/compare/v2024.6.28...2c613f00ffe80fe63debb62108532135b1638e9c))
12+
13+
```
14+
@lumino/application: 2.4.0 => 2.4.1
15+
@lumino/datagrid: 2.4.0 => 2.4.1
16+
@lumino/default-theme: 2.1.6 => 2.1.7
17+
@lumino/widgets: 2.4.0 => 2.5.0
18+
```
19+
20+
### :warning: CSS breaking change
21+
22+
`Widget` does not hide its overflow by default any longer. If this breaks your application styling, you can restore it locally by adding the CSS rule `overflow: hidden`. To restore the previous behavior fully, you can add the following CSS rule:
23+
24+
```css
25+
.lm-Widget {
26+
overflow: hidden;
27+
}
28+
```
29+
30+
### Bugs fixed
31+
32+
- Remove the overflow rule on widgets [#715](https://github.com/jupyterlab/lumino/pull/715) ([@fcollonval](https://github.com/fcollonval))
33+
34+
### Maintenance and upkeep improvements
35+
36+
- Update versions [#718](https://github.com/jupyterlab/lumino/pull/718) ([@fcollonval](https://github.com/fcollonval))
37+
- Bump @75lb/deep-merge from 1.1.1 to 1.1.2 [#717](https://github.com/jupyterlab/lumino/pull/717) ([@dependabot](https://github.com/dependabot))
38+
- Bump tj-actions/changed-files from 44.5.5 to 44.5.7 in the actions group [#716](https://github.com/jupyterlab/lumino/pull/716) ([@dependabot](https://github.com/dependabot))
39+
- Bump the actions group with 2 updates [#712](https://github.com/jupyterlab/lumino/pull/712) ([@dependabot](https://github.com/dependabot))
40+
41+
### Contributors to this release
42+
43+
([GitHub contributors page for this release](https://github.com/jupyterlab/lumino/graphs/contributors?from=2024-06-28&to=2024-08-13&type=c))
44+
45+
[@dependabot](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Adependabot+updated%3A2024-06-28..2024-08-13&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Afcollonval+updated%3A2024-06-28..2024-08-13&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Akrassowski+updated%3A2024-06-28..2024-08-13&type=Issues)
46+
47+
<!-- <END NEW CHANGELOG ENTRY> -->
48+
949
## 2024.6.28
1050

1151
([Full Changelog](https://github.com/jupyterlab/lumino/compare/v2024.3.25...51dd3b375eecc21ad3866a9497546681c4d5a07d))
@@ -63,8 +103,6 @@ github_url: 'https://github.com/jupyterlab/lumino/blob/main/CHANGELOG.md'
63103

64104
[@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Abrichet+updated%3A2024-03-25..2024-06-28&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Adependabot+updated%3A2024-03-25..2024-06-28&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Afcollonval+updated%3A2024-03-25..2024-06-28&type=Issues) | [@g547315](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Ag547315+updated%3A2024-03-25..2024-06-28&type=Issues) | [@ianthomas23](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Aianthomas23+updated%3A2024-03-25..2024-06-28&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3AJasonWeill+updated%3A2024-03-25..2024-06-28&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Akrassowski+updated%3A2024-03-25..2024-06-28&type=Issues) | [@martinRenou](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3AmartinRenou+updated%3A2024-03-25..2024-06-28&type=Issues) | [@tonyfast](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Atonyfast+updated%3A2024-03-25..2024-06-28&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Awelcome+updated%3A2024-03-25..2024-06-28&type=Issues)
65105

66-
<!-- <END NEW CHANGELOG ENTRY> -->
67-
68106
## 2024.3.25
69107

70108
([Full Changelog](https://github.com/jupyterlab/lumino/compare/v2023.11.5...64986395b3f232ec0d23d8e42f4cfddd38d89317))

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lumino-top-level",
3-
"version": "2024.6.28",
3+
"version": "2024.8.13",
44
"private": true,
55
"workspaces": [
66
"examples/*",

0 commit comments

Comments
 (0)