Skip to content

Releases: HBLL-Collection-Development/omeka-s-any-cloud

v3.2.1

13 Jun 07:55
v3.2.1
000c485
Compare
Choose a tag to compare
  • Add missing use statement in AzureFactory (#49)

v3.2.0

26 Jan 03:23
83a2a13
Compare
Choose a tag to compare

v3.1.5

09 Oct 13:52
0e2ada7
Compare
Choose a tag to compare
  1. Automatically zip up and create a release when you push a tag. It will automatically fix the version number in config/module.ini based on the tag name in the zip file in case you forget to do it before creating the release.
  2. Fix config/module.ini so comment is parsed correctly

v3.1.1

30 Sep 20:39
26c160e
Compare
Choose a tag to compare

This patch allows to configure the module entirely from local.config.php by doing two things:

It creates a Laminas service for each adapter, so that administrators can configure which adapter to use by modifying the Omeka\File\Store alias directly in local.config.php. For instance

    'Omeka\File\Store' => 'AnyCloud\File\Store\Scaleway'

Doing this prevents using the local store by mistake (for instance when the module is disabled or needs to be updated)

It allows to configure each adapter in the file_store section of local.config.php. For instance you can set up the dropbox adapter like this:

    'file_store' => [
        'dropbox' => [
            'access_token' => 'ACCESS_TOKEN',
        ],
    ],

This is to avoid exposing secrets through Omeka administration interface

When an adapter is configured like this, its corresponding section is disabled in the admin configuration form

Fixes #19

v3.0.1

21 Aug 21:11
d5c29d6
Compare
Choose a tag to compare
  • Updated included vendors folder

v3.0.0

19 Feb 22:41
34cc721
Compare
Choose a tag to compare
  • Upgraded for Omeka S v4 and PHP 8+ compatibility
  • Updated Flysystem to v3
  • Removed Rackspace storage provider (not available in Flysystem v3)

v2.0.0

05 Jan 06:27
714a455
Compare
Choose a tag to compare

Changed

  • Upped version number to v2.0.0
  • Upgraded for Omeka S v3 compatibility
  • Updated to latest composer repositories for dependencies

v1.1.5

17 Jun 15:33
Compare
Choose a tag to compare

Changed

  • Upped version number to v1.1.5
  • Added public visibility for all S3 Storage adapter cloud items by default (thanks @jajm)

v1.1.4

19 Jan 17:44
Compare
Choose a tag to compare

Changed

  • Upped version number to v1.1.4
  • Added README.md to binary download

v1.1.3

21 Nov 16:55
be2aed2
Compare
Choose a tag to compare

Changed

  • Upped version number to v1.1.3
  • Fixed code style errors
  • Made more compatible with PHP 7