File tree 3 files changed +22
-9
lines changed
3 files changed +22
-9
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) .
6
+
7
+ ## [ 0.14.0]
8
+
9
+ ### Added
10
+
11
+ - Support for PHP 7.2 - [ #256 ] ( https://github.com/owncloud/files_antivirus/issues/256 )
12
+
13
+ ### Changed
14
+
15
+ - Set max version to 10 because core platform is switching to Semver
16
+
6
17
## [ 0.13.0] - 2018-07-11
7
18
### Fixed
19
+
8
20
- Obey file size limits when uploads are chunked [ #226 ] ( https://github.com/owncloud/files_antivirus/pull/226 )
9
21
- Don't log exceptions on virus detection [ #219 ] ( https://github.com/owncloud/files_antivirus/pull/219 )
10
22
11
23
### Changed
12
24
- Return HTTP status code ` 403 ` on virus detection [ #219 ] ( https://github.com/owncloud/files_antivirus/pull/219 )
13
25
14
-
15
26
## [ 0.12.0] - 2018-02-08
16
27
17
28
### Added
@@ -46,6 +57,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
46
57
- App description and makefile updated for new marketplace [ 161] ( https://github.com/owncloud/files_antivirus/pull/161 )
47
58
48
59
### Fixed
60
+
49
61
- Oracle: Error when saving a rule [ 167] ( https://github.com/owncloud/files_antivirus/pull/167 )
50
62
51
63
## [ 0.10.1.0] - 2017-09-15
@@ -258,6 +270,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
258
270
259
271
- Initial implementation
260
272
261
- [ Unreleased ] : https://github.com/owncloud/files_antivirus/compare/v0.13.0...HEAD
262
- [ 0.13.0 ] : https://github.com/owncloud/files_antivirus/compare/v0.12.0...release/0 .13.0
263
- [ 0.12.0 ] : https://github.com/owncloud/files_antivirus/compare/v0.11.2...release/0 .12.0
273
+ [ 0.14.0 ] : https://github.com/owncloud/files_antivirus/compare/v0.13.0...v0.14.0
274
+ [ 0.13.0 ] : https://github.com/owncloud/files_antivirus/compare/v0.12.0...v0 .13.0
275
+ [ 0.12.0 ] : https://github.com/owncloud/files_antivirus/compare/v0.11.2...v0 .12.0
Original file line number Diff line number Diff line change @@ -61,10 +61,11 @@ dist: source appstore
61
61
source :
62
62
rm -rf $(source_build_directory )
63
63
mkdir -p $(source_build_directory )
64
- tar cvzf $(source_package_name ) .tar.gz ../ $( app_name ) \
64
+ tar cvzf $(source_package_name ) .tar.gz \
65
65
--exclude-vcs \
66
66
--exclude=" ../$( app_name) /build" \
67
- --exclude=" ../$( app_name) /*.log"
67
+ --exclude=" ../$( app_name) /*.log" \
68
+ ../$(app_name )
68
69
69
70
# Builds the source package for the app store, ignores php and js tests
70
71
.PHONY : appstore
@@ -101,4 +102,4 @@ test-php-lint:
101
102
102
103
.PHONY : test-php-style
103
104
test-php-style : $(composer_dev_deps )
104
- $(composer_deps ) /bin/php-cs-fixer fix -v --diff --diff-format udiff --dry-run --allow-risky yes
105
+ $(composer_deps ) /bin/php-cs-fixer fix -v --diff --diff-format udiff --dry-run --allow-risky yes
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ More information is available in the Anti-Virus documentation.
21
21
<category >security</category >
22
22
<licence >AGPL</licence >
23
23
<author >Manuel Delgado, Bart Visscher, thinksilicon.de, Viktar Dubiniuk</author >
24
- <version >0.13 .0</version >
24
+ <version >0.14 .0</version >
25
25
<documentation >
26
26
<admin >https://doc.owncloud.com/server/latest/admin_manual/configuration/server/antivirus_configuration.html</admin >
27
27
</documentation >
@@ -32,7 +32,7 @@ More information is available in the Anti-Virus documentation.
32
32
<use-migrations >true</use-migrations >
33
33
<namespace >Files_Antivirus</namespace >
34
34
<dependencies >
35
- <owncloud min-version =" 10.0.9" max-version =" 11.0.0.0 " />
35
+ <owncloud min-version =" 10.0.9" max-version =" 10 " />
36
36
</dependencies >
37
37
<settings >
38
38
<admin >OCA\Files_Antivirus\AdminPanel</admin >
You can’t perform that action at this time.
0 commit comments