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: minio/minio-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.72
Choose a base ref
...
head repository: minio/minio-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.0.73
Choose a head ref
  • 5 commits
  • 13 files changed
  • 5 contributors

Commits on Jun 21, 2024

  1. Configuration menu
    Copy the full SHA
    5d99621 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2024

  1. Configuration menu
    Copy the full SHA
    86e4405 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b28095b View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Configuration menu
    Copy the full SHA
    e0ba2df View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Fix missing CompleteMultipartUpload SSE-C (#1980)

    `putObjectMultipartStreamNoLength` and `putObjectMultipartStreamParallel` were missing SSE-C headers.
    
    Before:
    ```
    c: <DEBUG> POST /trace.json?uploadId=u3RE7kyHylOIHLKTCJOl2xMU6Lz4dJEotSRRQ.t2oqBP9chVWpSLnKVjhvogCEnq1Uzl8DTVyEeBn.d1KWoVFwCeyvfOYAawyP11.szXNYA9nZ8TC7qOHg4tNYVwrMrv HTTP/1.1
    Host: xxxx-us-east-1.s3.dualstack.us-east-1.amazonaws.com
    User-Agent: MinIO (windows; amd64) minio-go/v7.0.73 mc/DEVELOPMENT.GOGET
    Content-Length: 224
    Accept-Encoding: zstd,gzip
    Authorization: AWS4-HMAC-SHA256 Credential=**REDACTED**/20240702/us-east-1/s3/aws4_request, SignedHeaders=content-type;host;x-amz-checksum-crc32c;x-amz-content-sha256;x-amz-date, Signature=**REDACTED**
    Content-Type: application/octet-stream
    X-Amz-Checksum-Crc32c: FTkqvw==
    X-Amz-Content-Sha256: c6463f4718f1420115e5937d0df8b5f1b12360bf19067c7c693f74b5629a21d2
    X-Amz-Date: 20240702T163623Z
    
    mc: <DEBUG> HTTP/1.1 400 Bad Request
    Connection: close
    Transfer-Encoding: chunked
    Content-Type: application/xml
    Date: Tue, 02 Jul 2024 16:36:17 GMT
    Server: AmazonS3
    X-Amz-Id-2: XxNuG0/LrCJhn6zp8qSQTx1hbBSao5zbJF2LuXCjV84hnyMa0WhvyOGbwfYH2xsL0KMPk+PmTUc=
    X-Amz-Request-Id: 8BDWVH8SS555TY65
    ```
    
    After:
    
    ```
    c: <DEBUG> POST /trace.json?uploadId=RcaVx.E7ikFputT7vEDDUSZnfke2GRyOFxjVX1j_VvC_rwGS.DRYCg7hylsb7TXuuPgOSnb58PX05D6hG6pby5RJM2Jf8h7ghYtFS19MsV2i2A.RjNsxsrvesKZV6Or3 HTTP/1.1
    Host: xxxx-us-east-1.s3.dualstack.us-east-1.amazonaws.com
    User-Agent: MinIO (windows; amd64) minio-go/v7.0.73 mc/DEVELOPMENT.GOGET
    Content-Length: 224
    Accept-Encoding: zstd,gzip
    Authorization: AWS4-HMAC-SHA256 Credential=**REDACTED**/20240702/us-east-1/s3/aws4_request, SignedHeaders=content-type;host;x-amz-checksum-crc32c;x-amz-content-sha256;x-amz-date;x-amz-server-side-encryption-customer-algorithm;x-amz-server-side-encryption-customer-key;x-amz-server-side-encryption-customer-key-md5, Signature=**REDACTED**
    Content-Type: application/octet-stream
    X-Amz-Checksum-Crc32c: FTkqvw==
    X-Amz-Content-Sha256: d875307b7d216bbd02e040f30224e256fa16ba3f436f463ad9ea7abc04ef4ceb
    X-Amz-Date: 20240702T163752Z
    X-Amz-Server-Side-Encryption-Customer-Algorithm: AES256
    X-Amz-Server-Side-Encryption-Customer-Key: wC6y20rByatPS9xS1RLsoNvRZAHvssYI1ruYS2iv5cY=
    X-Amz-Server-Side-Encryption-Customer-Key-Md5: fXxP96p2ajAxFivAA0G66w==
    
    mc: <DEBUG> HTTP/1.1 200 OK
    Transfer-Encoding: chunked
    Content-Type: application/xml
    Date: Tue, 02 Jul 2024 16:37:48 GMT
    Server: AmazonS3
    X-Amz-Id-2: xqscCqpoBVPcJT2GpKLMDj6mFntOLrgUeBA3ambHCPnlSzClakQwhZ7VAsjW+K//z6RhCyuuxGE=
    X-Amz-Request-Id: XMBFVMVCPMZ4H0WG
    X-Amz-Server-Side-Encryption-Customer-Algorithm: AES256
    X-Amz-Server-Side-Encryption-Customer-Key-Md5: fXxP96p2ajAxFivAA0G66w==
    ```
    klauspost authored Jul 2, 2024
    Configuration menu
    Copy the full SHA
    60eddd7 View commit details
    Browse the repository at this point in the history
Loading