You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In **1.32.0** we added the possibility to access all Unit variables form inside NJS.
31
+
32
+
As reported in GitHub issue `#1169 <https://github.com/nginx/unit/issues/1169>`__ the variables were cached and would hold the wrong value, which is not how this feature should work. With version 1.32.1, we have fixed this issue.
33
+
34
+
35
+
==============
36
+
Full Changelog
37
+
==============
38
+
39
+
.. code-block:: none
40
+
41
+
Changes with Unit 1.32.1 26 Mar 2024
42
+
43
+
*) Bugfix: NJS variables in templates may have incorrect values due to
44
+
improper caching.
45
+
46
+
*) Bugfix: Wasm application process hangs after receiving restart signal
47
+
from the control.
48
+
49
+
50
+
51
+
For a full list of changes and bugfixes,
52
+
please see the `changelog <../../../CHANGES.txt>`__.
While the **wasmtime-cli** interface is good for testing Wasm components locally, there are more requirements for production workloads.
198
+
While the **wasmtime-cli** interface is good for testing Wasm components locally, there are more requirements for production workloads.
198
199
199
200
With NGINX Units Wasm runtime, you will be able to run your Wasm workloads next to other host applications on a single host and make use of all the other powerful Unit features. Given Units design and as we have decoupled the listeners from the application runtime, you can make full use of the Unit Router to make routing decisions before sharing a request with your Wasm Component or add HTTPS to your stack.
200
201
@@ -216,7 +217,7 @@ Create a **config.json** file:
0 commit comments