File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,13 @@ Breaking changes since 1.2.1 include:
48
48
- Since decorator errors now raise exceptions, if you had a script with such an error that otherwise works, that
49
49
script will now give an exception and fail to load. The error should be self-explanatory, and it's good to know
50
50
so you can fix it.
51
+ - Since an exception is now raised if you call a function with an invalid keyword argument (ie, one not included
52
+ in the function's argument definition), if you previsouly had a misspelled keyword argument that was silently
53
+ ignored, you will now get an exception. It's good to know that is the case, and it should be easy to fix.
54
+ - The use of ``pyscript.config["apps"][YOUR_APP] `` to get application configuration is still available but now
55
+ deprecated. The ``apps `` entry in ``pyscript.config `` will be removed in a future release. This is to prevent
56
+ wayward applications from seeing configuration settings for other apps. The new ``pyscript.app_config `` variable
57
+ should be used instead - it is set to ``pyscript.config["apps"][YOUR_APP] `` for each app.
51
58
52
59
Bug fixes since 1.2.1 include:
53
60
You can’t perform that action at this time.
0 commit comments