GraphvizWebEditor
GraphvizWebEditor copied to clipboard
Update dependency league/flysystem to v3
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| league/flysystem | require | major | ~2.0 -> ~3.0 |
Release Notes
thephpleague/flysystem
v3.10.3
Fixed
- [Local] Handle checksum errors without message (#1590)
v3.10.2
Fixed
- [Filesystem] Ensure adapter is used for exposing temporary URLs.
v3.10.1
Fixed
- [Filesystem] Added missing constructor argument to allow temporary URL generator injection.
v3.10.0
Added
- [Filesystem] added
temporaryUrlmethod - [AsyncAWS] added
temporaryUrlmethod - [AWS S3] added
temporaryUrlmethod - [Azure Blob Storage] added
temporaryUrlmethod - [MountManager] added
temporaryUrlmethod - [Google Cloud Storage] added
temporaryUrlmethod - [ReadOnly] added
temporaryUrlmethod - [PathPrefixing] added
temporaryUrlmethod
v3.9.0
Added
- [Filesystem] Added ability to inject custom public URL generator into a filesystem.
- [MountManager] added
checksumandpublicUrlmethods - [ZipArchive] Do not prefix directories when creating/reading an archive
- [ShardedPrefixPublicUrlGenerator] added url generator strategy that distributes over a list of prefixes
v3.8.0
Added
- [ChecksumAlgoIsNotSupported] Exception to indicate a checksum is not supported by the checksum provider, filesystem will fall back to ad-hoc generation.
v3.7.0
Added
- [Filesystem] added
checksummethod - [AWS S3] added
checksummethod - [Async S3] added
checksummethod - [Google Cloud Storage] added
checksummethod - [Azure Blob Storage] added
checksummethod
v3.6.0
Added
- [Filesystem] Added public url method
- [Azure Blob Storage] Added public url method
- [AWS S3] Added public url method
- [Async S3] Added public url method
- [GCS] Added public url method
- [WebDAV] Added public url method
- [ReadOnly] Added public url method
- [PathPrefixing] Added public url method
v3.5.2
Fixed
- [SFTP v2/v3] Fixed possible race-condition during directory creation leading to false failures.
v3.5.1
Fixed
- [WebDAV] Strip directory prefix in
createDirectoryto prevent double prefixing indirectoryExists.
v3.5.0
Added
- [AWS S3] Allow specifying visibility on move and copy
v3.4.0
Added
- Added FTP configuration option useRawListOptions (null|false|true).
- UnableToListContents exception was added to uniformly represent content listing exceptions.
Fixed
- [FTP] Don't use raw list options for FileZilla FTP servers (#1553)
- [WebDAV] Correct path formatting for move and copy operations (#1552)
v3.3.0
Added
- StaticInMemoryAdapterRegistry contributed by @kbond
- ReadonlyFilesystemAdapter contributed by @kbond
- PathPrefixedAdapter contributed by @shyim
Fixed
- WebDAV prefix is now encoded and the dir is not required to be pre-created (#1533)
v3.2.1
Fixed
- [ZipArchive] reverted regression introduced in #1525
v3.2.0
Added
- [AwsS3V3] Added configuration options for forwarded options, multipart upload configuration, and metadata fields.
Fixes
- [ZipArchive] delete top-level directory when deleting directories.
- [AwsS3V3] add
ChecksumAlgorithmto forwarded options. - [AwsS3V3] add
ContentMD5to forwarded options. - [AwsS3V3] made forwarded options and metadata fields configurable.
- [SftpV3] upgrade minimum version, PHP 8 and the lowest version fails to authenticate.
v3.1.1
- [AwsS3V3] Corrected exception type (#1524)
v3.1.0
- Added option for the Local adapter to create the root directory only on the first mutating (write/copy/move) action.
v3.0.23
- Added reasons for exceptions for all adapters that were missing previous exception messages.
v3.0.22
- [AwsS3V3] Added reasons for exceptions
- [AwsS3V3] Use ListObjectsV2 instead of ListObjects
v3.0.21
- [AwsS3V3] Use ListObjectsV2 instead of ListObjects
v3.0.20
Fixed
- [Core] Fix deprecated ${var} string interpolation patterns (#1470)
v3.0.19
Fixed
- [FTP] Turn errors into proper exceptions when resolving the connection root (#1460)
v3.0.18
Fixed
- [SFTP v3] Fix retries (#1451)
v3.0.17
Fixed
- [SFTP v2] Avoid type errors when public key is not retrieved (#1446)
- [SFTP v3] Avoid type errors when public key is not retrieved (#1446)
v3.0.16
Fixed
- [Local] fall back to extension lookups when the mime-type comes up as inconclusive.
v3.0.15
Fixed
- [GCS] Allow setting upload metadata
- [GCS] Allow setting contentType, or resolve it
- [SFTP v2+v3] Delete top-level directory too.
v3.0.14
Added
- [InMemory] allow to set a last-updated time (#1438)
- [SFTP V3] allow configuring preferred algo's (#1440)
v3.0.13
Fixed
- [AWS S3 V3] Do not return top-level directory when listing that same directory
v3.0.12
Fixed
- [SFTP V3] Fix issue where listing is false.
- [Async AWS S3] Cosmetic fix for directory prefixing.
v3.0.11
Fixed
- [AWS S3] Use globally configured options.
v3.0.10
Fixed
- [AWS S3] fix detecting directories that only contain other directories but no files.
- [AWS S3] when checking for directory existence, limit the result set (perf)
- [AWS S3] throw interface exception when failing to delete directory
- [Async AWS S3] when checking for directory existence, limit the result set (perf)
v3.0.9
Fixed
- [AWS S3] support setting an ACL as a direct option instead of using visibility.
v3.0.8
Fixed
- [AWS S3] Set ContentType when mime-type config option is set during writes, like in v1.
v3.0.7
Fixed
- [WebDAV] added missing composer.json for sub-split
v3.0.6
Added
- [WebDAV] new adapter added
Fixed
- [Core] Trim slashed uniformly in the attribute classes.
- [Core] Uniformly use directory_visibility over visibility for directory usage.
- [FTP] export-ignore the test case.
v3.0.5
Added
- [AzureBlobStorage] New adapter added
Fixed
- [AsyncAwsS3] Make EXTRA_METADATA_FIELDS protected to prevent error when extending the class
v3.0.4
Fixed
- [FTP] Do not require setting of the root directory, use '' by default.
v3.0.3
Fixed
- [FTP] Made connection resolving lazy again (#1414)
v3.0.2
- Added reasons for exceptions for all adapters that were missing previous exception messages.
v3.0.1
Fixed
- [FTP] Turn errors into proper exceptions when resolving the connection root (#1460)
v3.0.0
Added
- FilesystemReader::has to check for directory or file existence
- FilesystemReader::directoryExists to check for directory existence
- FilesystemReader::fileExists to check for file existence
- FilesystemAdapter::directoryExists to check for directory existence
- FilesystemAdapter::fileExists to check for file existence
v2.5.0
Added
- [AWS S3] Allow specifying visibility on move and copy
v2.4.5
- [SFTP v3] Fix retries (#1451)
v2.4.4
Fixed
- [SFTP v2] Avoid type errors when public key is not retrieved (#1446)
- [SFTP v3] Avoid type errors when public key is not retrieved (#1446)
v2.4.3
Fixed
- [AWS S3] Set ContentType when mime-type config option is set during writes, like in v1.
v2.4.2
Fixed
- [FTP] Made connection resolving lazy again (#1414)
v2.4.1
Fixed
- [FTP] Fix relative connection root handling
v2.4.0
Added
- [SFTP V3] New adapter officially published
v2.3.2
Fixed
- [FTP] Check for FTP\Connection object in addition to a
resourcefor connectivity checks and connection handling. - [Local] Simplify writeStream, as a bonus, have an EXT_LOCK on it now by default.
v2.3.1
Fixed
- [ZipArchive] copy stream, the ziparchive is closed after getting the stream
- [Core] PHP 8.1 compatibility updates
- [LocalFilesystem] parse permissions during listing
- [LocalFilesystem] clear realstatcache
- [FTP] PHP 8.1 compatibility updates
- [Core] Upgraded PHP-CS-Fixer
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
Kudos, SonarCloud Quality Gate passed! 
0 Bugs
0 Vulnerabilities
0 Security Hotspots
0 Code Smells
No Coverage information
0.0% Duplication