You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,10 @@
3
3
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
4
4
In order to read more about upgrading and BC breaks have a look at the [UPGRADE Document](UPGRADE.md).
5
5
6
+
## 1.2.1 (19. November 2020)
7
+
8
+
+[#10](https://github.com/luyadev/luya-aws/pull/10) Fix issue where content type was not provided correctly, also ensure the disposition is set correctly when uploading or updating and object.
9
+
6
10
## 1.2.0 (27. August 2020)
7
11
8
12
+[#6](https://github.com/luyadev/luya-aws/pull/6) Add new option to update bucket policy, add command to update policy, add helper method with policies as JSON.
Copy file name to clipboardExpand all lines: src/S3FileSystem.php
+30-1Lines changed: 30 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,9 @@
8
8
useyii\base\InvalidConfigException;
9
9
useAws\S3\S3Client;
10
10
useAws\S3\Exception\S3Exception;
11
+
useluya\admin\events\FileEvent;
12
+
useluya\admin\Module;
13
+
useluya\helpers\FileHelper;
11
14
useluya\helpers\StringHelper;
12
15
13
16
/**
@@ -53,7 +56,7 @@ class S3FileSystem extends BaseFileSystemStorage
53
56
public$region;
54
57
55
58
/**
56
-
* @var string The ACL default permission when writing new files.
59
+
* @var string The ACL default permission when writing new files. All available options are `private|public-read|public-read-write|authenticated-read|aws-exec-read|bucket-owner-read|bucket-owner-full-control`
0 commit comments