aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2011-10-25 12:48:03 +0200
committerMicael Karlberg <[email protected]>2011-10-25 12:48:03 +0200
commitbe97727709814ca6e872806f30933b267c6f700b (patch)
tree5729880b16aeff37865b01ad7c79bac3a1b8e781 /lib/inets
parent07c75e55e80b81960de6f5b0deecd5eb94712efb (diff)
downloadotp-be97727709814ca6e872806f30933b267c6f700b.tar.gz
otp-be97727709814ca6e872806f30933b267c6f700b.tar.bz2
otp-be97727709814ca6e872806f30933b267c6f700b.zip
Added release notes, appup and correct version.
OTP-9655
Diffstat (limited to 'lib/inets')
-rw-r--r--lib/inets/doc/src/notes.xml14
-rw-r--r--lib/inets/src/inets_app/inets.appup.src44
-rw-r--r--lib/inets/vsn.mk6
3 files changed, 32 insertions, 32 deletions
diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml
index ffbe4bd58f..28d51b4ebd 100644
--- a/lib/inets/doc/src/notes.xml
+++ b/lib/inets/doc/src/notes.xml
@@ -32,6 +32,20 @@
<file>notes.xml</file>
</header>
+ <section><title>Inets 5.3.6</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>[httpd] XSS prevention did not work for hex-encoded URL's. </p>
+ <p>Own Id: OTP-9655</p>
+ </item>
+ </list>
+ </section>
+
+ </section> <!-- 5.3.6 -->
+
+
<section><title>Inets 5.3.5</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/lib/inets/src/inets_app/inets.appup.src b/lib/inets/src/inets_app/inets.appup.src
index c31b0deb30..ea696b9155 100644
--- a/lib/inets/src/inets_app/inets.appup.src
+++ b/lib/inets/src/inets_app/inets.appup.src
@@ -18,6 +18,13 @@
{"%VSN%",
[
+ {"5.3.5",
+ [
+ {load_module, http_util, soft_purge, soft_purge, []},
+ {load_module, httpd_util, soft_purge, soft_purge, [http_util]},
+ {load_module, httpd_file, soft_purge, soft_purge, []}
+ ]
+ },
{"5.3.4",
[
{restart_application, inets}
@@ -42,24 +49,16 @@
[
{restart_application, inets}
]
- },
- {"5.2",
- [
- {restart_application, inets}
- ]
- },
- {"5.1.3",
- [
- {restart_application, inets}
- ]
- },
- {"5.1.2",
- [
- {restart_application, inets}
- ]
}
],
[
+ {"5.3.5",
+ [
+ {load_module, http_util, soft_purge, soft_purge, []},
+ {load_module, httpd_util, soft_purge, soft_purge, [http_util]},
+ {load_module, httpd_file, soft_purge, soft_purge, []}
+ ]
+ },
{"5.3.4",
[
{restart_application, inets}
@@ -84,21 +83,6 @@
[
{restart_application, inets}
]
- },
- {"5.2",
- [
- {restart_application, inets}
- ]
- },
- {"5.1.3",
- [
- {restart_application, inets}
- ]
- },
- {"5.1.2",
- [
- {restart_application, inets}
- ]
}
]
}.
diff --git a/lib/inets/vsn.mk b/lib/inets/vsn.mk
index feb29107bf..6f5f4eb9f7 100644
--- a/lib/inets/vsn.mk
+++ b/lib/inets/vsn.mk
@@ -1,9 +1,11 @@
APPLICATION = inets
-INETS_VSN = 5.3.5
+INETS_VSN = 5.3.6
PRE_VSN =
APP_VSN = "$(APPLICATION)-$(INETS_VSN)$(PRE_VSN)"
-TICKETS = OTP-8940
+TICKETS = OTP-9655
+
+TICKETS_5_3_5 = OTP-8940
TICKETS_5_3_4 = OTP-8739 OTP-8741 OTP-8742