solara-ui 1.37.0__py2.py3-none-any.whl → 1.37.1__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- solara/__init__.py +1 -1
- solara/server/static/solara_bootstrap.py +1 -1
- solara/validate_hooks.py +2 -4
- solara/website/pages/changelog/changelog.md +10 -0
- {solara_ui-1.37.0.dist-info → solara_ui-1.37.1.dist-info}/METADATA +1 -1
- {solara_ui-1.37.0.dist-info → solara_ui-1.37.1.dist-info}/RECORD +10 -10
- {solara_ui-1.37.0.data → solara_ui-1.37.1.data}/data/etc/jupyter/jupyter_notebook_config.d/solara.json +0 -0
- {solara_ui-1.37.0.data → solara_ui-1.37.1.data}/data/etc/jupyter/jupyter_server_config.d/solara.json +0 -0
- {solara_ui-1.37.0.dist-info → solara_ui-1.37.1.dist-info}/WHEEL +0 -0
- {solara_ui-1.37.0.dist-info → solara_ui-1.37.1.dist-info}/licenses/LICENSE +0 -0
solara/__init__.py
CHANGED
|
@@ -119,7 +119,7 @@ async def main():
|
|
|
119
119
|
]
|
|
120
120
|
for dep in requirements:
|
|
121
121
|
await micropip.install(dep, keep_going=True)
|
|
122
|
-
await micropip.install("/wheels/solara-1.37.
|
|
122
|
+
await micropip.install("/wheels/solara-1.37.1-py2.py3-none-any.whl", keep_going=True)
|
|
123
123
|
import solara
|
|
124
124
|
|
|
125
125
|
el = solara.Warning("lala")
|
solara/validate_hooks.py
CHANGED
|
@@ -142,14 +142,12 @@ class HookValidator(ast.NodeVisitor):
|
|
|
142
142
|
if isinstance(func, ast.Call):
|
|
143
143
|
# Nested function, it will appear in another node later
|
|
144
144
|
return
|
|
145
|
+
id_ = None
|
|
145
146
|
if isinstance(func, ast.Name):
|
|
146
147
|
id_ = func.id
|
|
147
148
|
elif isinstance(func, ast.Attribute):
|
|
148
149
|
id_ = func.attr
|
|
149
|
-
|
|
150
|
-
warnings.warn(f"Unexpected function node type: {func}, line={node.lineno}")
|
|
151
|
-
return
|
|
152
|
-
if self.matches_use_function(id_):
|
|
150
|
+
if id_ is not None and self.matches_use_function(id_):
|
|
153
151
|
self.error_on_early_return(node, id_)
|
|
154
152
|
self.error_on_invalid_scope(node, id_)
|
|
155
153
|
self.generic_visit(node)
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Solara Changelog
|
|
2
2
|
|
|
3
|
+
## Version 1.37.0
|
|
4
|
+
|
|
5
|
+
* Feature: We now check if a component follows the rules of hooks https://solara.dev/documentation/advanced/understanding/rules-of-hooks [#706](https://github.com/widgetti/solara/pull/706)
|
|
6
|
+
|
|
7
|
+
Use SOLARA_CHECK_HOOKS=off to disable this check in case this gives unexpected issues, [and please open an issue](https://github.com/widgetti/solara/issues/new).
|
|
8
|
+
* Fix: solara-server skips directories when reading extensions which might cause a startup failure otherwise [#715](https://github.com/widgetti/solara/pull/715)
|
|
9
|
+
|
|
10
|
+
## Version 1.36.0
|
|
11
|
+
* Feature: Provide a jupyter-widgets-popout-container css class on body for doing specific styling in combination with ipypoout [85c1899](85c189919a42b2590558d9713fc3a2440f46b7c0)
|
|
12
|
+
|
|
3
13
|
## Version 1.35.1
|
|
4
14
|
|
|
5
15
|
* Bug Fix: Vulnerability which allowed for accessing any file on the system. [CVE-2024-39903](https://nvd.nist.gov/vuln/detail/CVE-2024-39903)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
prefix/etc/jupyter/jupyter_notebook_config.d/solara.json,sha256=3UhTBQi6z7F7pPjmqXxfddv79c8VGR9H7zStDLp6AwY,115
|
|
2
2
|
prefix/etc/jupyter/jupyter_server_config.d/solara.json,sha256=D9J-rYxAzyD5GOqWvuPjacGUVFHsYtTfZ4FUbRzRvIA,113
|
|
3
|
-
solara/__init__.py,sha256=
|
|
3
|
+
solara/__init__.py,sha256=Fwhz5Tzd-qZC9LKusjxwWZdeshUFRb4o5f8WI9RRBPg,3597
|
|
4
4
|
solara/__main__.py,sha256=hxMYlUg-t-KTOJSVfEHwvcTV51WHX6INpN0F_qaesUg,23672
|
|
5
5
|
solara/alias.py,sha256=9vfLzud77NP8in3OID9b5mmIO8NyrnFjN2_aE0lSb1k,216
|
|
6
6
|
solara/autorouting.py,sha256=iQ-jP5H-kdu1uZyLEFeiHG1IsOLZLzwKVtQPyXSgGSM,23093
|
|
@@ -22,7 +22,7 @@ solara/settings.py,sha256=fCi8q8QSrpL9vX8UnqNYJwyeTZ1OOyni9-uC_eaaTgU,2138
|
|
|
22
22
|
solara/tasks.py,sha256=4qV7HRAKCQ_POHUWkg8Rzx8hiFRO82P6ypgXKb6RUSo,30187
|
|
23
23
|
solara/toestand.py,sha256=cGVw1TAX_Kn9u2IN_GHhCPEOP8W3N0PwA-WHuvk8EgU,23570
|
|
24
24
|
solara/util.py,sha256=ex3Hggy-kTQa4DTEMDlhFTihzqnTfjxWCbHk0ihaZSM,8934
|
|
25
|
-
solara/validate_hooks.py,sha256=
|
|
25
|
+
solara/validate_hooks.py,sha256=F0CYDOVF_23O1apJBIk9lZMq11JmkoE3BrVVT8QvZWI,9999
|
|
26
26
|
solara/components/__init__.py,sha256=kVFPHiqv0-G_jQoL5NJnYskB9l9_2Y9jxVP3fFY8cVg,2636
|
|
27
27
|
solara/components/alert.py,sha256=sNjlrCu2niR6LD9gZFXwvSBMszCKt6nRH58kE7RgsDw,5144
|
|
28
28
|
solara/components/applayout.py,sha256=Q1n8foPT1szjIKqjUum6QxFnUvNj_MheMmyc8r7FIsI,16753
|
|
@@ -137,7 +137,7 @@ solara/server/static/highlight-dark.css,sha256=gmC3pr3x2BqJgTswNoN6AkqfEhBk24hPF
|
|
|
137
137
|
solara/server/static/highlight.css,sha256=k8ZdT5iwrGQ5tXTQHAXuxvZrSUq3kwCdEpy3mlFoZjs,2637
|
|
138
138
|
solara/server/static/main-vuetify.js,sha256=-FLlUqclZdVhCXsqawzpxtQ9vpaDA6KQdwoDKJCr_AI,8926
|
|
139
139
|
solara/server/static/main.js,sha256=mcx4JNQ4Lg4pNdUIqMoZos1mZyYFS48yd_JNFFJUqIE,5679
|
|
140
|
-
solara/server/static/solara_bootstrap.py,sha256=
|
|
140
|
+
solara/server/static/solara_bootstrap.py,sha256=DVlOxL7cHNbKU7-v7V2hmQgh9kZDA_V8a9I1Z4V_-X8,3195
|
|
141
141
|
solara/server/static/sun.svg,sha256=jEKBAGCr7b9zNYv0VUb7lMWKjnU2dX69_Ye_DZWGXJI,6855
|
|
142
142
|
solara/server/static/webworker.js,sha256=cjAFz7-SygStHJnYlJUlJs-gE_7YQeQ-WBDcmKYyjvo,1372
|
|
143
143
|
solara/server/templates/index.html.j2,sha256=JXQo1M-STFHLBOFetgG7509cAq8xUP0VAEtYDzz35fY,31
|
|
@@ -206,7 +206,7 @@ solara/website/pages/apps/multipage/__init__.py,sha256=zljTAXbsV8hqb67dwmx_PhzN-
|
|
|
206
206
|
solara/website/pages/apps/multipage/page1.py,sha256=5hK0RZ8UBBOaZcPKaplbLeb0VvaerhB6m3Jn5C0afRM,872
|
|
207
207
|
solara/website/pages/apps/multipage/page2.py,sha256=uRJ8YPFyKy7GR_Ii8DJSx3akb3H15rQAJZETMt9jVEk,1422
|
|
208
208
|
solara/website/pages/changelog/__init__.py,sha256=iBCpD5LVrFxQtEHX116u_6vqNBktZD3AXR65eTZblFo,227
|
|
209
|
-
solara/website/pages/changelog/changelog.md,sha256=
|
|
209
|
+
solara/website/pages/changelog/changelog.md,sha256=Hc0LQmWH5oZZXEaQtv54vvcnFTdbVPCc0gbyVyWyuuA,18423
|
|
210
210
|
solara/website/pages/contact/__init__.py,sha256=L6o45fHAMClqyWdHWxI6JuiwUTP-U-yXCgd3lxMUcxA,223
|
|
211
211
|
solara/website/pages/contact/contact.md,sha256=zp66RGhOE_tdkRaWKZqGbuk-PnOqBWhDVvX5zSLXoHw,798
|
|
212
212
|
solara/website/pages/documentation/__init__.py,sha256=zJh3kmr6OhFPbax8Igp-LN-m9cZNrs9sq9ifFuC8Kic,6003
|
|
@@ -436,9 +436,9 @@ solara/widgets/vue/gridlayout.vue,sha256=nFZJotdznqI9tUYZ1Elv9OLA0adazxvVZAggMHH
|
|
|
436
436
|
solara/widgets/vue/html.vue,sha256=48K5rjp0AdJDeRV6F3nOHW3J0WXPeHn55r5pGClK2fU,112
|
|
437
437
|
solara/widgets/vue/navigator.vue,sha256=SLrzBI0Eiys-7maXA4e8yyD13-O5b4AnCGE9wKuJDHE,3646
|
|
438
438
|
solara/widgets/vue/vegalite.vue,sha256=E3dlfhR-Ol7nqQZN6wCZC_3Tz98CJW0i_EU39mj0XHw,3986
|
|
439
|
-
solara_ui-1.37.
|
|
440
|
-
solara_ui-1.37.
|
|
441
|
-
solara_ui-1.37.
|
|
442
|
-
solara_ui-1.37.
|
|
443
|
-
solara_ui-1.37.
|
|
444
|
-
solara_ui-1.37.
|
|
439
|
+
solara_ui-1.37.1.data/data/etc/jupyter/jupyter_notebook_config.d/solara.json,sha256=3UhTBQi6z7F7pPjmqXxfddv79c8VGR9H7zStDLp6AwY,115
|
|
440
|
+
solara_ui-1.37.1.data/data/etc/jupyter/jupyter_server_config.d/solara.json,sha256=D9J-rYxAzyD5GOqWvuPjacGUVFHsYtTfZ4FUbRzRvIA,113
|
|
441
|
+
solara_ui-1.37.1.dist-info/METADATA,sha256=jq54RNJUy26Oo3M7l2pebv77nAGo7Qv5oI8Jzd6o-jA,7284
|
|
442
|
+
solara_ui-1.37.1.dist-info/WHEEL,sha256=L5_n4Kc1NmrSdVgbp6hdnwwVwBnoYOCnbHBRMD-qNJ4,105
|
|
443
|
+
solara_ui-1.37.1.dist-info/licenses/LICENSE,sha256=fFJUz-CWzZ9nEc4QZKu44jMEoDr5fEW-SiqljKpD82E,1086
|
|
444
|
+
solara_ui-1.37.1.dist-info/RECORD,,
|
|
File without changes
|
{solara_ui-1.37.0.data → solara_ui-1.37.1.data}/data/etc/jupyter/jupyter_server_config.d/solara.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|