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: xtyxtyx/minio-dart
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.5.6
Choose a base ref
...
head repository: xtyxtyx/minio-dart
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.5.7
Choose a head ref
  • 5 commits
  • 3 files changed
  • 3 contributors

Commits on Nov 18, 2024

  1. Bump intl from 0.19.0 to 0.20.0 in the root-pub group

    Bumps the root-pub group with 1 update: [intl](https://github.com/dart-lang/i18n/tree/main/pkgs).
    
    
    Updates `intl` from 0.19.0 to 0.20.0
    - [Release notes](https://github.com/dart-lang/i18n/releases)
    - [Commits](https://github.com/dart-lang/i18n/commits/intl-v0.20.0/pkgs)
    
    ---
    updated-dependencies:
    - dependency-name: intl
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: root-pub
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Nov 18, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    31a88f7 View commit details

Commits on Nov 20, 2024

  1. fix maxKeys error while using listObject query

    lakshit1 authored Nov 20, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    19641dd View commit details

Commits on Nov 24, 2024

  1. Merge pull request #97 from lakshit1/patch-1

    fix maxKeys error while using listObject query
    lijy91 authored Nov 24, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b2cc844 View commit details
  2. Merge pull request #96 from xtyxtyx/dependabot/pub/root-pub-3bbb3e0b62

    Bump intl from 0.19.0 to 0.20.0 in the root-pub group
    lijy91 authored Nov 24, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    a5bfee5 View commit details
  3. v3.5.7

    lijy91 committed Nov 24, 2024
    Copy the full SHA
    3a59a0d View commit details
Showing with 9 additions and 4 deletions.
  1. +5 −0 CHANGELOG.md
  2. +2 −2 lib/src/minio.dart
  3. +2 −2 pubspec.yaml
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.5.7

- fix maxKeys error while using listObject query #97
- Bump intl from 0.19.0 to 0.20.0 in the root-pub group #96

# 3.5.6

- Fix non en-US date time parse #95
4 changes: 2 additions & 2 deletions lib/src/minio.dart
Original file line number Diff line number Diff line change
@@ -564,7 +564,7 @@ class Minio {

if (maxKeys != null) {
maxKeys = maxKeys >= 1000 ? 1000 : maxKeys;
queries['maxKeys'] = maxKeys.toString();
queries['max-keys'] = maxKeys.toString();
}

final resp = await _client.request(
@@ -674,7 +674,7 @@ class Minio {

if (maxKeys != null) {
maxKeys = maxKeys >= 1000 ? 1000 : maxKeys;
queries['maxKeys'] = maxKeys.toString();
queries['max-keys'] = maxKeys.toString();
}

final resp = await _client.request(
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: minio
description: Unofficial MinIO Dart Client SDK that provides simple APIs to access any Amazon S3 compatible object storage server.
version: 3.5.6
version: 3.5.7
homepage: https://github.com/xtyxtyx/minio-dart
issue_tracker: https://github.com/xtyxtyx/minio-dart/issues

@@ -12,7 +12,7 @@ dependencies:
convert: ^3.1.1
crypto: ^3.0.3
http: ^1.1.0
intl: ^0.19.0
intl: ">=0.19.0 <0.21.0"
meta: ^1.12.0
mime: ">=1.0.4 <3.0.0"
path: ^1.8.0