Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure returned versionId is a string when listing objects #1193

Merged
merged 4 commits into from
Aug 10, 2023

Commits on Jul 20, 2023

  1. Ensure returned versionId is a string when listing objects

    Returned versionId is a string when calling statObject(), as it is read
    without transformation (casting) from the headers.
    
    However, the xml parser casts automatically what looks like a number in
    the responses. Consequentially, when the S3 storage provider returns a
    VersionId with only numbers, listObjects() returns an object with a
    versionId as a number, which is inconsistent with what returns other
    methods like statObjects() and may result in erratic behaviors for the
    program using these methods.
    fflorent committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    28478ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a217631 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2023

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

Commits on Aug 9, 2023

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