Skip to content

Commit

Permalink
Release candidate for version 2.3.1 (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
amirhosv authored Aug 30, 2023
1 parent 2a1b77f commit 296f382
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 2.3.1

### Patches
* Use AWS-LC [v1.15.0](https://github.com/aws/aws-lc/releases/tag/v1.15.0) for ACCP
* RSA performance on Graviton 2 has improved in version v1.15.0 of AWS-LC.
* For more details, please refer to [the release notes for v1.15.0](https://github.com/aws/aws-lc/releases/tag/v1.15.0)
* Use [fips-2022-11-02](https://github.com/aws/aws-lc/tree/fips-2022-11-02) branch of AWS-LC at commit ID `d780e5e025c47cd782fd3d5d70a033e59fe80166` for ACCP-FIPS
* Round RSA key sizes up when generating keys for ACCP [PR 321](https://github.com/corretto/amazon-corretto-crypto-provider/pull/321)
* Throwing exceptions for too-short signatures [PR 320](https://github.com/corretto/amazon-corretto-crypto-provider/pull/320)

## 2.3.0

### Overview
Expand Down
2 changes: 1 addition & 1 deletion aws-lc
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
}

group = 'software.amazon.cryptools'
version = '2.3.0'
version = '2.3.1'
ext.isFips = Boolean.getBoolean('FIPS')
ext.isLegacyBuild = Boolean.getBoolean('LEGACY_BUILD')

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle-kt-dsl/lib/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val accpVersion = "2.3.0"
val accpVersion = "2.3.1"
val accpLocalJar: String by project
val fips: Boolean by project

Expand Down
10 changes: 10 additions & 0 deletions tests/ci/codebuild/run_accp_legacy_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
version: 0.2

phases:
install:
commands:
- apt-get -y install curl
- mkdir go_tmp && cd go_tmp
- curl https://dl.google.com/go/go1.18.3.linux-amd64.tar.gz --output go.tar.gz
- tar -xf go.tar.gz
- mv go ../go_root && cd ..
build:
commands:
- export GOROOT=$(pwd)/go_root
- export GO111MODULE=on
- export PATH=$GOROOT/bin:$PATH
- ./gradlew -DLEGACY_BUILD=true -DJAVA_HOME=$JAVA_HOME -DJAVA_MAJOR_VERSION=11 -DTEST_JAVA_HOME=$JAVA_HOME -DENABLE_NATIVE_TEST_HOOKS=ON release

0 comments on commit 296f382

Please sign in to comment.