Skip to content

Latest commit

 

History

History
116 lines (64 loc) · 4.86 KB

File metadata and controls

116 lines (64 loc) · 4.86 KB

2.1.1

  • FIX: replace deprecated API and bump FlutterFire dependencies (#453). (530be48a)

2.1.0

  • FEAT: bump FlutterFire dependencies 2024-09-30 (#407). (d72ce8e3)

2.0.5

  • Update a dependency to the latest release.

2.0.4

  • Update a dependency to the latest release.

2.0.3

  • Update a dependency to the latest release.

2.0.2

  • Update a dependency to the latest release.

2.0.1

  • Update a dependency to the latest release.

2.0.0

Note: This release has breaking changes.

  • BREAKING FEAT(ui_storage): upgrade uuid dependency to ^4.0.0 (#188). (e85c5166)

    UuidFileUploadNamingPolicy and respective factory constructor FileUploadNamingPolicy.uuid now accept V4Options?, instead of Map<String, dynamic>?.

    Here's an example migration:

    final config = FirebaseUIStorageConfiguration(
      storage: storage,
    -  namingPolicy: FileUploadNamingPolicy.uuid({ 'rng': CryptoRNG() }),
    +  namingPolicy: FileUploadNamingPolicy.uuid(V4Options(null, CryptoRNG())),
    );
    
    await FirebaseUIStorage.configure(config);

1.0.4

  • Update a dependency to the latest release.

1.0.3

  • Update a dependency to the latest release.

1.0.2

  • Update a dependency to the latest release.

1.0.1

  • Update a dependency to the latest release.

1.0.0

  • Firebase UI Storage graduated to stable release

  • FEAT(ui_storage,ui_localizations): add UploadButton label (#86). (e13a6b1e)

  • DOCS(ui_storage): add Firebase UI Storage docs (#92). (4c4e3539)

0.1.0-dev.9

0.1.0-dev.8

  • FEAT(ui_storage): add StorageGridView widget (#11206). (48a3a396)
  • FEAT(ui_storage): add shimmer for loading images (#11237). (e2ad9004)
  • FEAT(ui_storage): add StorageListView and PaginatedLoadingController (#11170). (dcf1b22a)

0.1.0-dev.7

0.1.0-dev.6

  • Update a dependency to the latest release.

0.1.0-dev.5

  • Update a dependency to the latest release.

0.1.0-dev.4

  • Update a dependency to the latest release.

0.1.0-dev.3

  • FEAT: update dependency constraints to sdk: '>=2.18.0 <4.0.0' flutter: '>=3.3.0' (#10946). (2772d10f)
  • FEAT(ui_storage): add TaskProgressIndicator (#10859). (6ae57735)

0.1.0-dev.2

0.1.0-dev.1

  • FEAT(ui_storage): configuration API and UploadButton widget (#10699). (e802b3dd)

0.1.0-dev.0

  • Initial Firebase UI Stroage release with top-level configuration and UploadButton
    • i18n is not yet supported and will be coming in future releases