Skip to content

Commit 04062c1

Browse files
committed
version 1.2.1
1 parent 6d7be6f commit 04062c1

File tree

5 files changed

+23
-18
lines changed

5 files changed

+23
-18
lines changed

README.md

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,39 @@ OWASP Java Encoder Project
33

44
[![Build Status](https://travis-ci.org/OWASP/owasp-java-encoder.svg?branch=master)](https://travis-ci.org/OWASP/owasp-java-encoder) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
55

6-
Contextual Output Encoding is a computer programming technique necessary to stop Cross Site Scripting. This project is a Java 1.5+ simple-to-use drop-in high-performance encoder class with little baggage.
6+
Contextual Output Encoding is a computer programming technique necessary to stop
7+
Cross-Site Scripting. This project is a Java 1.5+ simple-to-use drop-in high-performance
8+
encoder class with little baggage.
79

8-
For more information on how to use this project, please see https://www.owasp.org/index.php/OWASP_Java_Encoder_Project#tab=Use_the_Java_Encoder_Project.
10+
For more information on how to use this project, please see the [OWASP wiki](https://www.owasp.org/index.php/OWASP_Java_Encoder_Project#tab=Use_the_Java_Encoder_Project).
911

1012
Start using the OWASP Java Encoders
1113
-----------------------------------
1214
You can download a JAR from [Maven Central](https://search.maven.org/#search|ga|1|g%3A%22org.owasp.encoder%22%20a%3A%22encoder%22).
1315

14-
JSP tags and functions are available in the encoder-jsp, also available in [Central](http://search.maven.org/remotecontent?filepath=org/owasp/encoder/encoder-jsp/1.2/encoder-jsp-1.2.jar). This jar requires the core library.
16+
JSP tags and EL functions are available in the encoder-jsp, also available in [Central](http://search.maven.org/remotecontent?filepath=org/owasp/encoder/encoder-jsp/1.2/encoder-jsp-1.2.jar).
1517

1618
The jars are also available in Maven:
1719

1820
```xml
1921
<dependency>
20-
<groupId>org.owasp.encoder</groupId>
21-
<artifactId>encoder</artifactId>
22-
<version>1.2</version>
22+
<groupId>org.owasp.encoder</groupId>
23+
<artifactId>encoder</artifactId>
24+
<version>1.2.1</version>
2325
</dependency>
2426

2527
<dependency>
26-
<groupId>org.owasp.encoder</groupId>
27-
<artifactId>encoder-jsp</artifactId>
28-
<version>1.2</version>
28+
<groupId>org.owasp.encoder</groupId>
29+
<artifactId>encoder-jsp</artifactId>
30+
<version>1.2.1</version>
2931
</dependency>
3032
```
3133

3234
Quick Overview
3335
--------------
34-
The OWASP Java Encoder library is intended for quick contextual encoding with very little overhead, either in performance or usage. To get started, simply add the encoder-1.2.jar, import org.owasp.encoder.Encode and start using.
36+
The OWASP Java Encoder library is intended for quick contextual encoding with very little
37+
overhead, either in performance or usage. To get started, simply add the encoder-1.2.jar,
38+
import org.owasp.encoder.Encode and start using.
3539

3640
Example usage:
3741

@@ -46,6 +50,11 @@ Happy Encoding!
4650

4751
News
4852
----
53+
### 2017-02-19 - 1.2.1 Release
54+
The team is happy to announce that version 1.2.1 has been released!
55+
* The CDATA Encoder was modified so that it does not emit intermediate characters between adjacent CDATA sections.
56+
* The documentation on [gh-pages](https://owasp.github.io/owasp-java-encoder/) has been improved.
57+
4958
### 2015-04-12 - 1.2 Release on GitHub
5059
OWASP Java Encoder has been moved to GitHub. Version 1.2 was also released!
5160

core/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="US-ASCII"?>
2-
32
<!--
43
~ Copyright (c) 2015 OWASP.
54
~ All rights reserved.
@@ -43,7 +42,7 @@
4342
<parent>
4443
<groupId>org.owasp.encoder</groupId>
4544
<artifactId>encoder-parent</artifactId>
46-
<version>1.2.1-SNAPSHOT</version>
45+
<version>1.2.1</version>
4746
</parent>
4847

4948
<artifactId>encoder</artifactId>

esapi/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="US-ASCII"?>
2-
32
<!--
43
~ Copyright (c) 2015 OWASP.
54
~ All rights reserved.
@@ -43,7 +42,7 @@
4342
<parent>
4443
<groupId>org.owasp.encoder</groupId>
4544
<artifactId>encoder-parent</artifactId>
46-
<version>1.2.1-SNAPSHOT</version>
45+
<version>1.2.1</version>
4746
</parent>
4847

4948
<artifactId>encoder-esapi</artifactId>

jsp/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="US-ASCII"?>
2-
32
<!--
43
~ Copyright (c) 2015 OWASP.
54
~ All rights reserved.
@@ -43,7 +42,7 @@
4342
<parent>
4443
<groupId>org.owasp.encoder</groupId>
4544
<artifactId>encoder-parent</artifactId>
46-
<version>1.2.1-SNAPSHOT</version>
45+
<version>1.2.1</version>
4746
</parent>
4847

4948
<artifactId>encoder-jsp</artifactId>

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="US-ASCII"?>
2-
32
<!--
43
~ Copyright (c) 2015 OWASP.
54
~ All rights reserved.
@@ -42,7 +41,7 @@
4241

4342
<groupId>org.owasp.encoder</groupId>
4443
<artifactId>encoder-parent</artifactId>
45-
<version>1.2.1-SNAPSHOT</version>
44+
<version>1.2.1</version>
4645
<packaging>pom</packaging>
4746

4847
<name>OWASP Java Encoder Project</name>

0 commit comments

Comments
 (0)