Skip to content

Commit

Permalink
release: scram 3.1
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Solórzano <[email protected]>
  • Loading branch information
jorsol committed Jun 26, 2024
1 parent 45b245e commit 582c484
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 49 deletions.
49 changes: 13 additions & 36 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@
All notable changes to this project will be documented in this file.

## [Unreleased]

## [3.1] - 2024-06-26
### :building_construction: Improvements
- Ensure the LICENSE file is included in the Jar file.
- Ensure the `LICENSE` file is included in the Jar file.
- Update of the `saslprep` dependency to 2.2.

### :ghost: Maintenance
- Added coverage report module.
- Updated dependencies and maven plugins.
- Remove `nexus-staging-maven-plugin`.

## 3.0 - 2024-04-03
## [3.0] - 2024-04-03
### :boom: Breaking changes
- :warning: Full refactor of the `scram` java implementation, this release is compatible with Java 8+, but it's incompatible with previous releases :warning:

Expand All @@ -28,37 +36,6 @@ All notable changes to this project will be documented in this file.
- Migrate the main repo back to GitHub.
- Remove the shaded Bouncy Castle pbkdf2 and base64 implementation used for Java 7 support.

# 2.1

* Updated saslprep to version 1.1 to remove a build dependency coming from stringprep module

# 2.0

* Out of beta testing

# 2.0-beta3

* Fixed licenses issues

# 2.0-beta2

* Added saslprep tests

# 2.0-beta1

* Add new dependency StringPrep

# 1.9-beta1

* API change to be compatible with Java 7
* Added standard SASLPrep
* Failover to bouncy castle implementation of PBKDF2WithHmacSHA256 to support Oracle JDK 7

# 1.0.0-beta.2

* Fix maven issue and javadoc

# 1.0.0-beta.1

* First version

[3.0]: https://github.com/ongres/scram/compare/2.1...3.0
[3.1]: https://github.com/ongres/scram/compare/3.0...3.1
[Unreleased]: https://github.com/ongres/scram/compare/3.1...main
2 changes: 1 addition & 1 deletion coverage-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.ongres.scram</groupId>
<artifactId>scram-parent</artifactId>
<version>3.1-SNAPSHOT</version>
<version>3.1</version>
<relativePath>../scram-parent/pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.ongres.scram</groupId>
<artifactId>scram-parent</artifactId>
<version>3.1-SNAPSHOT</version>
<version>3.1</version>
<relativePath>scram-parent/pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion scram-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.ongres.scram</groupId>
<artifactId>scram-parent</artifactId>
<version>3.1-SNAPSHOT</version>
<version>3.1</version>
<relativePath>../scram-parent/pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion scram-client/src/it/jpms-scram-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.ongres.scram.it</groupId>
<artifactId>jpms-scram-client</artifactId>
<name>JPMS Scram Client</name>
<version>3.1-SNAPSHOT</version>
<version>3.1</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion scram-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.ongres.scram</groupId>
<artifactId>scram-parent</artifactId>
<version>3.1-SNAPSHOT</version>
<version>3.1</version>
<relativePath>../scram-parent/pom.xml</relativePath>
</parent>

Expand Down
15 changes: 7 additions & 8 deletions scram-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.ongres.scram</groupId>
<artifactId>scram-parent</artifactId>
<version>3.1-SNAPSHOT</version>
<version>3.1</version>
<packaging>pom</packaging>

<name>SCRAM - Parent</name>
Expand Down Expand Up @@ -44,6 +44,7 @@
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<connection>scm:git:https://github.com/ongres/scram.git</connection>
<developerConnection>scm:git:[email protected]:ongres/scram.git</developerConnection>
<tag>3.1</tag>
<url>https://github.com/ongres/scram</url>
</scm>

Expand All @@ -54,12 +55,12 @@

<distributionManagement>
<repository>
<id>ossrh-release</id>
<id>ossrh</id>
<name>OSSRH Release repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>ossrh-snapshot</id>
<id>ossrh</id>
<name>OSSRH Snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
Expand All @@ -71,11 +72,11 @@
<base.java.version>8</base.java.version>
<maven.compiler.source>${base.java.version}</maven.compiler.source>
<maven.compiler.target>${base.java.version}</maven.compiler.target>
<project.build.outputTimestamp>2024-04-03T17:00:00Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2024-06-26T00:50:00Z</project.build.outputTimestamp>
<!-- Dependency versions -->
<jetbrains-annotations.version>24.1.0</jetbrains-annotations.version>
<junit5.version>5.10.2</junit5.version>
<saslprep.version>2.1</saslprep.version>
<saslprep.version>2.2</saslprep.version>
<!-- Plugins versions -->
<compiler-plugin.version>3.13.0</compiler-plugin.version>
<jar-plugin.version>3.4.2</jar-plugin.version>
Expand Down Expand Up @@ -486,9 +487,7 @@
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-XDcompilePolicy=simple</arg>
<arg>-Xplugin:ErrorProne \
-XepAllErrorsAsWarnings \
-XepDisableWarningsInGeneratedCode</arg>
<arg>-Xplugin:ErrorProne -XepAllErrorsAsWarnings -XepDisableWarningsInGeneratedCode</arg>
<!-- Required on JDK 16+ due to JEP 396 -->
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>
Expand Down

0 comments on commit 582c484

Please sign in to comment.