comparison xml/en/docs/njs/changes.xml @ 2874:60851da88db6

njs-0.7.6.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 19 Jul 2022 16:53:15 +0100
parents f6f8ade13fcb
children 6a4f8a0d669f
comparison
equal deleted inserted replaced
2873:b4eb565bbb1f 2874:60851da88db6
7 <!DOCTYPE article SYSTEM "../../../../dtd/article.dtd"> 7 <!DOCTYPE article SYSTEM "../../../../dtd/article.dtd">
8 8
9 <article name="Changes" 9 <article name="Changes"
10 link="/en/docs/njs/changes.html" 10 link="/en/docs/njs/changes.html"
11 lang="en" 11 lang="en"
12 rev="52" 12 rev="53"
13 toc="no"> 13 toc="no">
14
15 <section id="njs0.7.6" name="Changes with njs 0.7.6">
16
17 <para>
18 Release Date:
19 19 July 2022
20 </para>
21
22 <para>
23 nginx modules:
24 <list type="bullet">
25
26 <listitem>
27 <para>
28 Feature:
29 improved
30 <link doc="reference.xml" id="r_args"><literal>r.args{}</literal></link> object.
31 Added support for multiple arguments with the same key.
32 Added case sensitivity for keys.
33 Keys and values are percent-decoded now.
34 </para>
35 </listitem>
36
37 <listitem>
38 <para>
39 Bugfix:
40 fixed
41 <link doc="reference.xml" id="r_headers_out"><literal>r.headersOut{}</literal></link>
42 setter for special headers.
43 </para>
44 </listitem>
45
46 </list>
47 </para>
48
49 <para>
50 Core:
51 <list type="bullet">
52
53 <listitem>
54 <para>
55 Feature:
56 added <literal>Symbol.for()</literal> and <literal>Symbol.keyfor()</literal>.
57 </para>
58 </listitem>
59
60 <listitem>
61 <para>
62 Feature:
63 added
64 <link doc="reference.xml" id="atob"><literal>atob()</literal></link>
65 and
66 <link doc="reference.xml" id="btoa"><literal>btoa()</literal></link>
67 from
68 <link url="https://html.spec.whatwg.org">WHATWG</link> spec.
69 </para>
70 </listitem>
71
72 <listitem>
73 <para>
74 Bugfix:
75 fixed large non-decimal literals.
76 </para>
77 </listitem>
78
79 <listitem>
80 <para>
81 Bugfix:
82 fixed Unicode argument trimming in <literal>parseInt()</literal>.
83 </para>
84 </listitem>
85
86 <listitem>
87 <para>
88 Bugfix:
89 fixed <literal>break</literal> instruction
90 in <literal>try-catch</literal> block.
91 </para>
92 </listitem>
93
94 <listitem>
95 <para>
96 Bugfix:
97 fixed <literal>async</literal> function declaration in CLI.
98 </para>
99 </listitem>
100
101 </list>
102 </para>
103
104 </section>
105
14 106
15 <section id="njs0.7.5" name="Changes with njs 0.7.5"> 107 <section id="njs0.7.5" name="Changes with njs 0.7.5">
16 108
17 <para> 109 <para>
18 Release Date: 110 Release Date:
252 344
253 <listitem> 345 <listitem>
254 <para> 346 <para>
255 Bugfix: 347 Bugfix:
256 fixed <literal>String.prototype.lastIndexOf()</literal> 348 fixed <literal>String.prototype.lastIndexOf()</literal>
257 with unicode string as <literal>this</literal>. 349 with Unicode string as <literal>this</literal>.
258 </para> 350 </para>
259 </listitem> 351 </listitem>
260 352
261 <listitem> 353 <listitem>
262 <para> 354 <para>