Skip to content

Commit b8d17d2

Browse files
committed
Publish 0.3.0
SHA256 hashes: jupyterlab-ui-profiler-0.3.0.tgz: 54f991b8e6a14306e69a9c7d34f63cbe1a8c944809782e6bc518a659bb5283ff jupyterlab_ui_profiler-0.3.0-py3-none-any.whl: 7e943a4eacfe95486aa16ad082481c8a77dc3351c9a1c1a0110b8f16bbef4d08 jupyterlab_ui_profiler-0.3.0.tar.gz: 681268461d43bc8d30f981115d1da19db20ebfdbf1c8e0a3d5a87a199b72f4e6
1 parent 90f5626 commit b8d17d2

3 files changed

Lines changed: 35 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 0.3.0
6+
7+
([Full Changelog](https://github.com/jupyterlab/ui-profiler/compare/v0.2.2...90f5626c43ea56d2c580bf6e7b8bdcddb87ca3f3))
8+
9+
### Enhancements made
10+
11+
- Support UI-defined custom scenarios [#60](https://github.com/jupyterlab/ui-profiler/pull/60) ([@krassowski](https://github.com/krassowski))
12+
- Implement a scenario for populating the notebook, fix tests [#57](https://github.com/jupyterlab/ui-profiler/pull/57) ([@krassowski](https://github.com/krassowski))
13+
14+
### Maintenance and upkeep improvements
15+
16+
- Add releaser workflows & cleanup after dependabot [#63](https://github.com/jupyterlab/ui-profiler/pull/63) ([@krassowski](https://github.com/krassowski))
17+
- Bump vega from 5.24.0 to 5.33.0 in /ui-tests [#62](https://github.com/jupyterlab/ui-profiler/pull/62) ([@krassowski](https://github.com/krassowski))
18+
- Bump glob from 10.4.5 to 10.5.0 in /ui-tests [#61](https://github.com/jupyterlab/ui-profiler/pull/61) ([@krassowski](https://github.com/krassowski))
19+
- Fix browser check and integration tests [#59](https://github.com/jupyterlab/ui-profiler/pull/59) ([@krassowski](https://github.com/krassowski))
20+
- Update GitHub Actions [#58](https://github.com/jupyterlab/ui-profiler/pull/58) ([@krassowski](https://github.com/krassowski))
21+
- Updated integration tests workflow [#56](https://github.com/jupyterlab/ui-profiler/pull/56) ([@krassowski](https://github.com/krassowski))
22+
- Bump systeminformation from 5.16.6 to 5.21.8 in /ui-tests [#55](https://github.com/jupyterlab/ui-profiler/pull/55) ([@krassowski](https://github.com/krassowski))
23+
24+
### Contributors to this release
25+
26+
The following people contributed discussions, new ideas, code and documentation contributions, and review.
27+
See [our definition of contributors](https://github-activity.readthedocs.io/en/latest/#how-does-this-tool-define-contributions-in-the-reports).
28+
29+
([GitHub contributors page for this release](https://github.com/jupyterlab/ui-profiler/graphs/contributors?from=2023-05-01&to=2025-12-23&type=c))
30+
31+
@krassowski ([activity](https://github.com/search?q=repo%3Ajupyterlab%2Fui-profiler+involves%3Akrassowski+updated%3A2023-05-01..2025-12-23&type=Issues))
32+
33+
<!-- <END NEW CHANGELOG ENTRY> -->
34+
535
## 0.2.2
636

737
([Full Changelog](https://github.com/jupyterlab/ui-profiler/compare/v0.2.1...61c99c34b8de4ff8f0ac0da4b1af50e774cd543a))
@@ -16,8 +46,6 @@
1646

1747
[@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fui-profiler+involves%3Akrassowski+updated%3A2023-04-30..2023-05-01&type=Issues)
1848

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2149
## 0.2.1
2250

2351
([Full Changelog](https://github.com/jupyterlab/ui-profiler/compare/v0.2.0...308598c8f2f2c344fee6d9ccffd1c379f8b8ecbc))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlab/ui-profiler",
3-
"version": "0.2.2",
3+
"version": "0.3.0",
44
"description": "JupyterLab extension for profiling UI performance",
55
"keywords": [
66
"jupyter",

src/types/_scenario-custom.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
*/
77

88
/**
9-
* Command ID.
9+
* Command ID
1010
*/
11-
export type Identifier = string;
11+
export type Command1 = string;
1212
/**
1313
* Commands used for scenario setup
1414
*/
@@ -32,12 +32,12 @@ export interface CustomScenarioOptions {
3232
* Command to execute
3333
*/
3434
export interface Command {
35-
id: Identifier;
35+
id: Command1;
3636
args: Arguments;
3737
[k: string]: any;
3838
}
3939
/**
40-
* Command arguments.
40+
* Command arguments
4141
*/
4242
export interface Arguments {
4343
[k: string]: any;

0 commit comments

Comments
 (0)