Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adobe/S3Mock
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.14.0
Choose a base ref
...
head repository: adobe/S3Mock
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.15.0
Choose a head ref
  • 10 commits
  • 29 files changed
  • 5 contributors

Commits on Jun 26, 2023

  1. Copy the full SHA
    c086a09 View commit details
  2. Store and return all encryption headers.

    Fixes #1178
    afranken committed Jun 26, 2023
    Copy the full SHA
    221546f View commit details
  3. Integration Tests for encryption headers

    Fixes #1178
    afranken committed Jun 26, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d6afc97 View commit details

Commits on Jun 27, 2023

  1. Prepare 2.15.0, changelog

    Fixes #1178
    afranken committed Jun 27, 2023

    Partially verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    07dd43d View commit details

Commits on Jun 28, 2023

  1. Merge pull request #1190 from adobe/1178-encryption-headers

    Store and return all encryption headers.
    afranken authored Jun 28, 2023
    Copy the full SHA
    daf29cf View commit details
  2. Bump checkstyle from 10.12.0 to 10.12.1

    Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 10.12.0 to 10.12.1.
    - [Release notes](https://github.com/checkstyle/checkstyle/releases)
    - [Commits](checkstyle/checkstyle@checkstyle-10.12.0...checkstyle-10.12.1)
    
    ---
    updated-dependencies:
    - dependency-name: com.puppycrawl.tools:checkstyle
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jun 28, 2023
    Copy the full SHA
    37537c0 View commit details
  3. Bump aws-v2.version from 2.20.92 to 2.20.94

    Bumps `aws-v2.version` from 2.20.92 to 2.20.94.
    
    Updates `aws-query-protocol` from 2.20.92 to 2.20.94
    
    Updates `aws-xml-protocol` from 2.20.92 to 2.20.94
    
    Updates `s3` from 2.20.92 to 2.20.94
    
    Updates `url-connection-client` from 2.20.92 to 2.20.94
    
    Updates `aws-crt-client` from 2.20.92 to 2.20.94
    
    Updates `regions` from 2.20.92 to 2.20.94
    
    Updates `utils` from 2.20.92 to 2.20.94
    
    ---
    updated-dependencies:
    - dependency-name: software.amazon.awssdk:aws-query-protocol
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: software.amazon.awssdk:aws-xml-protocol
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: software.amazon.awssdk:s3
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: software.amazon.awssdk:url-connection-client
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: software.amazon.awssdk:aws-crt-client
      dependency-type: direct:development
      update-type: version-update:semver-patch
    - dependency-name: software.amazon.awssdk:regions
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: software.amazon.awssdk:utils
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jun 28, 2023
    Copy the full SHA
    2f66fd6 View commit details
  4. Bump aws-java-sdk-s3 from 1.12.494 to 1.12.497

    Bumps [aws-java-sdk-s3](https://github.com/aws/aws-sdk-java) from 1.12.494 to 1.12.497.
    - [Changelog](https://github.com/aws/aws-sdk-java/blob/master/CHANGELOG.md)
    - [Commits](aws/aws-sdk-java@1.12.494...1.12.497)
    
    ---
    updated-dependencies:
    - dependency-name: com.amazonaws:aws-java-sdk-s3
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jun 28, 2023
    Copy the full SHA
    213e5b1 View commit details
  5. Copy the full SHA
    0003570 View commit details
  6. Copy the full SHA
    4b8c1da View commit details
Showing with 389 additions and 339 deletions.
  1. +101 −47 CHANGELOG.md
  2. +2 −2 README.md
  3. +1 −1 build-config/pom.xml
  4. +1 −1 docker/pom.xml
  5. +1 −1 integration-tests/pom.xml
  6. +2 −1 integration-tests/src/test/kotlin/com/adobe/testing/s3mock/its/GetPutDeleteObjectV1IT.kt
  7. +47 −0 integration-tests/src/test/kotlin/com/adobe/testing/s3mock/its/GetPutDeleteObjectV2IT.kt
  8. +5 −5 pom.xml
  9. +1 −1 server/pom.xml
  10. +13 −35 server/src/main/java/com/adobe/testing/s3mock/MultipartController.java
  11. +17 −30 server/src/main/java/com/adobe/testing/s3mock/ObjectController.java
  12. +10 −13 server/src/main/java/com/adobe/testing/s3mock/service/MultipartService.java
  13. +4 −10 server/src/main/java/com/adobe/testing/s3mock/service/ObjectService.java
  14. +10 −13 server/src/main/java/com/adobe/testing/s3mock/store/MultipartStore.java
  15. +4 −1 server/src/main/java/com/adobe/testing/s3mock/store/MultipartUploadInfo.java
  16. +7 −16 server/src/main/java/com/adobe/testing/s3mock/store/ObjectStore.java
  17. +12 −33 server/src/main/java/com/adobe/testing/s3mock/store/S3ObjectMetadata.java
  18. +36 −41 server/src/main/java/com/adobe/testing/s3mock/util/HeaderUtil.java
  19. +13 −9 server/src/test/java/com/adobe/testing/s3mock/ObjectControllerTest.java
  20. +63 −38 server/src/test/java/com/adobe/testing/s3mock/store/MultipartStoreTest.java
  21. +31 −31 server/src/test/java/com/adobe/testing/s3mock/store/ObjectStoreTest.java
  22. +1 −3 server/src/test/java/com/adobe/testing/s3mock/store/StoreTestBase.java
  23. +1 −1 server/src/test/java/com/adobe/testing/s3mock/store/StoresWithExistingFileRootTest.java
  24. +1 −1 testsupport/common/pom.xml
  25. +1 −1 testsupport/junit4/pom.xml
  26. +1 −1 testsupport/junit5/pom.xml
  27. +1 −1 testsupport/pom.xml
  28. +1 −1 testsupport/testcontainers/pom.xml
  29. +1 −1 testsupport/testng/pom.xml
148 changes: 101 additions & 47 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,78 @@
# Changelog

**The current major version 2 will receive new features and bug fixes on a continuous basis.**

## PLANNED - 4.x - RELEASE TBD ~ late 2023 / early 2024
Version 4.x will be JDK17 LTS bytecode compatible (maybe JDK21 LTS, depending on the release date), with Docker integration.
**The current major version 2 will receive new features, dependency updates and bug fixes on a continuous basis.**

<!-- TOC -->
* [Changelog](#changelog)
* [PLANNED - 4.x - RELEASE TBD ~ late 2023 / early 2024](#planned---4x---release-tbd--late-2023--early-2024)
* [Planned changes](#planned-changes)
* [PLANNED - 3.x - RELEASE TBD ~ July 2023](#planned---3x---release-tbd--july-2023)
* [3.x - PLANNED](#3x---planned)
* [3.x - PLANNED](#3x---planned-1)
* [3.0.0 - PLANNED RELEASE TBD ~ July 2023](#300---planned-release-tbd--july-2023)
* [CURRENT - 2.x - THIS VERSION IS UNDER ACTIVE DEVELOPMENT](#current---2x---this-version-is-under-active-development)
* [2.16.0 - PLANNED](#2160---planned)
* [2.15.0](#2150)
* [2.14.0](#2140)
* [2.13.1](#2131)
* [2.13.0](#2130)
* [2.12.2](#2122)
* [2.12.1](#2121)
* [2.12.0](#2120)
* [2.11.0](#2110)
* [2.10.2](#2102)
* [2.10.1](#2101)
* [2.10.0](#2100)
* [2.9.1](#291)
* [2.9.0](#290)
* [2.8.0](#280)
* [2.7.2](#272)
* [2.7.1](#271)
* [2.7.0](#270)
* [2.6.3](#263)
* [2.6.2](#262)
* [2.6.1](#261)
* [2.6.0](#260)
* [2.5.4](#254)
* [2.5.3](#253)
* [2.5.2](#252)
* [2.5.1](#251)
* [2.5.0](#250)
* [2.4.16](#2416)
* [2.4.15](#2415)
* [2.4.14](#2414)
* [2.4.13](#2413)
* [2.4.11 - 2.4.12](#2411---2412)
* [2.4.10](#2410)
* [2.4.9](#249)
* [2.4.8](#248)
* [2.4.7](#247)
* [2.4.6](#246)
* [2.4.2 - 2.4.5](#242---245)
* [2.4.1](#241)
* [2.4.0](#240)
* [2.3.3](#233)
* [2.3.2](#232)
* [2.3.1](#231)
* [2.3.0](#230)
* [2.2.3](#223)
* [2.2.2](#222)
* [2.2.1](#221)
* [2.2.0](#220)
* [2.1.35](#2135)
* [2.1.34](#2134)
* [2.1.33](#2133)
* [2.1.32](#2132)
* [2.1.31](#2131-1)
* [2.1.30](#2130-1)
* [2.1.29](#2129)
* [2.1.28](#2128)
* [2.1.27](#2127)
* [1.0.0](#100)
<!-- TOC -->

# PLANNED - 4.x - RELEASE TBD ~ late 2023 / early 2024
Version 4.x is JDK17 LTS bytecode compatible (maybe JDK21 LTS, depending on the release date), with Docker integration.

Any JUnit / direct Java usage support will most likely be dropped and only supported on a best-effort basis.
(i.e. the modules will be deleted from the code base and not released anymore. It *may* be possible to
@@ -13,7 +82,7 @@ to easily to run `S3MockApplication#start` from a static context. These workarou

Running S3Mock in unit tests is still supported by using [TestContainers](https://www.testcontainers.org/).

**Once 4.x is released, 3.x will receive bug fixes, new features will be best-effort only.**
**Once 4.x is released, 3.x may receive bug fixes and features, this will be best-effort only.**

**Once 4.x is released, 2.x support will be best-effort entirely.**

@@ -29,53 +98,18 @@ Running S3Mock in unit tests is still supported by using [TestContainers](https:
* Version updates
* Bump java version from 17 to 21 (?)

## PLANNED 3.x - RELEASE TBD ~ July 2023
Version 3.x will be JDK17 LTS bytecode compatible, with Docker and JUnit / direct Java integration.

**Once 3.x is released, 2.x may receive bug fixes and features, this will be best-effort only.**

**Once 4.x is released, 3.x ay receive bug fixes and features, this will be best-effort only.**

## CURRENT - 2.x - THIS VERSION IS UNDER ACTIVE DEVELOPMENT
Version 2.x is JDK8 LTS bytecode compatible, with Docker and JUnit / direct Java integration.

**The current major version 2 will receive new features and bug fixes on a continuous basis.**
# PLANNED - 3.x - RELEASE TBD ~ July 2023
Version 3.x is JDK17 LTS bytecode compatible, with Docker and JUnit / direct Java integration.

**Once 3.x is released, 2.x may receive bug fixes and features, this will be best-effort only.**

**Once 4.x is released, 2.x support will be best-effort entirely.**

### Planned changes

* Features and fixes
* Support for GetObjectAttributes API
* Support for Presigned URIs
* Support for Bucket subdomains
* Support for Version APIs
* Refactorings
* TBD
* Version updates
* TBD

## 3.x - PLANNED
3.x is JDK17 LTS bytecode compatible, with Docker and JUnit / direct Java integration.

* Features and fixes
* Support for Bucket subdomains
* This one may be impossible to do in a minor version update, as all paths would need to match
keys only. Not sure if we can somehow duplicate the path patterns and stay compatible for both
"path style access" and "bucket subdomain access".
* Started draft PR: [#925](https://github.com/adobe/S3Mock/pull/925)
* Refactorings
* TBD
* Version updates
* TBD
**Once 4.x is released, 3.x may receive bug fixes and features, this will be best-effort only.**

## 3.x - PLANNED
3.x is JDK17 LTS bytecode compatible, with Docker and JUnit / direct Java integration.

* Features and fixes
* Support for Versions in APIs
* Support Versions in APIs
* Refactorings
* TBD
* Version updates
@@ -100,22 +134,42 @@ Version 2.x is JDK8 LTS bytecode compatible, with Docker and JUnit / direct Java
* Use new Spring Boot 3 features
* Use new Spring Framework 6 features
* Dependency cleanup
* Code cleanup
* Version updates
* Bump spring-boot.version from 2.x to 3.x
* This will update all Spring Boot dependencies as well, including Spring Framework 6.x
* Bump java version from 8 to 17
* This change is necessary, as Spring Framework 6 and Spring Boot 3 raise the baseline Java version from 8 to 17.

# CURRENT - 2.x - THIS VERSION IS UNDER ACTIVE DEVELOPMENT
Version 2.x is JDK8 LTS bytecode compatible, with Docker and JUnit / direct Java integration.

**The current major version 2 will receive new features, dependency updates and bug fixes on a continuous basis.**

## 2.15.0 - PLANNED
**Once 3.x is released, 2.x may receive bug fixes and features, this will be best-effort only.**

**Once 4.x is released, 2.x support will be best-effort entirely.**

## 2.16.0 - PLANNED
2.x is JDK8 LTS bytecode compatible, with Docker and JUnit / direct Java integration.

* Features and fixes
* Support for GetObjectAttributes API
* Started draft PR: [#832](https://github.com/adobe/S3Mock/pull/832/)
* Add support for GetObjectAttributes API (fixes #536)
* Refactorings
* TBD
* Version updates
* TBD

## 2.15.0
2.x is JDK8 LTS bytecode compatible, with Docker and JUnit / direct Java integration.

* Features and fixes
* Store and return all encryption headers (fixes #1178)
* Version updates
* Bump aws-v2.version from 2.20.92 to 2.20.94
* Bump aws-java-sdk-s3 from 1.12.494 to 1.12.497
* Bump checkstyle from 10.12.0 to 10.12.1

## 2.14.0
2.x is JDK8 LTS bytecode compatible, with Docker and JUnit / direct Java integration.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -41,8 +41,8 @@ The `S3Mock` server can be started as a standalone *Docker* container, using *Te

## Changelog

See the [changelog](CHANGELOG.md) for detailed information about changes in releases and planned changes.
We also use GitHub's [releases](https://github.com/adobe/S3Mock/releases) to document changes.
See [GitHub releases](https://github.com/adobe/S3Mock/releases).
See also the [changelog](CHANGELOG.md) for detailed information about changes in releases and changes planned for future releases.

## Implemented S3 APIs

2 changes: 1 addition & 1 deletion build-config/pom.xml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@
<parent>
<groupId>com.adobe.testing</groupId>
<artifactId>s3mock-parent</artifactId>
<version>2.14.0</version>
<version>2.15.0</version>
</parent>

<artifactId>s3mock-build-config</artifactId>
2 changes: 1 addition & 1 deletion docker/pom.xml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
<parent>
<groupId>com.adobe.testing</groupId>
<artifactId>s3mock-parent</artifactId>
<version>2.14.0</version>
<version>2.15.0</version>
</parent>

<artifactId>s3mock-docker</artifactId>
2 changes: 1 addition & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
<parent>
<groupId>com.adobe.testing</groupId>
<artifactId>s3mock-parent</artifactId>
<version>2.14.0</version>
<version>2.15.0</version>
</parent>

<artifactId>s3mock-integration-tests</artifactId>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2022 Adobe.
* Copyright 2017-2023 Adobe.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -151,6 +151,7 @@ internal class GetPutDeleteObjectV1IT : S3TestBase() {
assertThat(objectMetadata.userMetadata)
.`as`("User metadata should be identical!")
.isEqualTo(metadata.userMetadata)
assertThat(objectMetadata.sseAwsKmsKeyId).isEqualTo(TEST_ENC_KEY_ID)
}

/**
Original file line number Diff line number Diff line change
@@ -27,6 +27,7 @@ import software.amazon.awssdk.services.s3.model.GetObjectRequest
import software.amazon.awssdk.services.s3.model.HeadObjectRequest
import software.amazon.awssdk.services.s3.model.PutObjectRequest
import software.amazon.awssdk.services.s3.model.S3Exception
import software.amazon.awssdk.services.s3.model.ServerSideEncryption
import java.io.File
import java.io.FileInputStream
import java.io.InputStream
@@ -320,6 +321,52 @@ internal class GetPutDeleteObjectV2IT : S3TestBase() {
assertThat(getObject.response().contentRange()).isEqualTo("bytes 5242380-5242879/5242880")
}

/**
* Tests if Object can be uploaded with KMS and Metadata can be retrieved.
*/
@Test
@S3VerifiedFailure(year = 2023,
reason = "No KMS configuration for AWS test account")
fun testPutObject_withEncryption(testInfo: TestInfo) {
val bucketName = givenBucketV2(testInfo)
val uploadFile = File(UPLOAD_FILE_NAME)

val sseCustomerAlgorithm = "someCustomerAlgorithm"
val sseCustomerKey = "someCustomerKey"
val sseCustomerKeyMD5 = "someCustomerKeyMD5"
val ssekmsEncryptionContext = "someEncryptionContext"
val putObject = s3ClientV2.putObject(
PutObjectRequest.builder()
.bucket(bucketName)
.key(UPLOAD_FILE_NAME)
.ssekmsKeyId(TEST_ENC_KEY_ID)
.sseCustomerAlgorithm(sseCustomerAlgorithm)
.sseCustomerKey(sseCustomerKey)
.sseCustomerKeyMD5(sseCustomerKeyMD5)
.ssekmsEncryptionContext(ssekmsEncryptionContext)
.serverSideEncryption(ServerSideEncryption.AWS_KMS)
.build(),
RequestBody.fromFile(uploadFile)
)

assertThat(putObject.ssekmsKeyId()).isEqualTo(TEST_ENC_KEY_ID)
assertThat(putObject.sseCustomerAlgorithm()).isEqualTo(sseCustomerAlgorithm)
assertThat(putObject.sseCustomerKeyMD5()).isEqualTo(sseCustomerKeyMD5)
assertThat(putObject.serverSideEncryption()).isEqualTo(ServerSideEncryption.AWS_KMS)

val getObject = s3ClientV2.getObject(
GetObjectRequest.builder()
.bucket(bucketName)
.key(UPLOAD_FILE_NAME)
.build()
)

assertThat(getObject.response().ssekmsKeyId()).isEqualTo(TEST_ENC_KEY_ID)
assertThat(getObject.response().sseCustomerAlgorithm()).isEqualTo(sseCustomerAlgorithm)
assertThat(getObject.response().sseCustomerKeyMD5()).isEqualTo(sseCustomerKeyMD5)
assertThat(getObject.response().serverSideEncryption()).isEqualTo(ServerSideEncryption.AWS_KMS)
}

fun givenObjectV2WithRandomBytes(bucketName: String): String {
val key = randomName
s3ClientV2.putObject(
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@

<groupId>com.adobe.testing</groupId>
<artifactId>s3mock-parent</artifactId>
<version>2.14.0</version>
<version>2.15.0</version>
<packaging>pom</packaging>

<name>S3Mock - Parent</name>
@@ -73,7 +73,7 @@
<scm>
<connection>scm:git:https://github.com/adobe/S3Mock.git</connection>
<developerConnection>scm:git:https://github.com/adobe/S3Mock.git</developerConnection>
<tag>2.14.0</tag>
<tag>2.15.0</tag>
<url>https://github.com/adobe/S3Mock/tree/main</url>
</scm>

@@ -89,10 +89,10 @@
</distributionManagement>

<properties>
<aws-v2.version>2.20.92</aws-v2.version>
<aws-v2.version>2.20.94</aws-v2.version>

<aws.version>1.12.494</aws.version>
<checkstyle.version>10.12.0</checkstyle.version>
<aws.version>1.12.497</aws.version>
<checkstyle.version>10.12.1</checkstyle.version>
<commons-codec.version>1.15</commons-codec.version>
<commons-io.version>2.13.0</commons-io.version>
<docker-builder.image.name>s3mock-buildx</docker-builder.image.name>
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
<parent>
<groupId>com.adobe.testing</groupId>
<artifactId>s3mock-parent</artifactId>
<version>2.14.0</version>
<version>2.15.0</version>
</parent>

<artifactId>s3mock</artifactId>
Loading