[Pkg-owncloud-commits] [owncloud] annotated tag v5.0.15RC1 created (now fa4a3d3)
David Prévot
taffit at moszumanska.debian.org
Fri Apr 18 22:49:52 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a change to annotated tag v5.0.15RC1
in repository owncloud.
at fa4a3d3 (tag)
tagging 781901016146ce37210bf7db2693b2e63a0fe338 (commit)
replaces v5.0.14a
tagged by Frank Karlitschek
on Tue Feb 25 14:08:00 2014 +0100
- Log -----------------------------------------------------------------
5.0.15 RC1
Andreas Fischer (1):
Get rid of the SELECT query. Try UPDATE, on failure INSERT.
Arthur Schiwon (1):
LDAP: improve compilation of filters
Bjoern Schiessle (5):
don't unshare on delete
use more accurate error codes
remove needless element tag
getData() always needs to return an array, backport of #6988
don't send delete for every single file if a folder gets deleted
Björn Schießle (1):
Merge pull request #7362 from owncloud/fix-7259-5
Frank Karlitschek (3):
fix the privatedata key value store
Merge pull request #7268 from owncloud/stable5-fix-ocspriv
5.0.15 RC1
Jan-Christoph Borchardt (1):
Merge pull request #7185 from owncloud/backport_6777_mobile_style_for_public_pages_stable5
Joas Schilling (1):
Make google drive client secret and dropbox api secret a password field
Jörn Friedrich Dreyer (12):
Concatenate string in SQL instead of PHP
remove duplicate exe mimetype, add correct msi mimetype
Fix mimetype detection
always be verbose when logging db error
use 'download.zip' as default name for zip downloads instead of 'owncloud.zip'
Merge pull request #6859 from owncloud/always_log_db_error_verbose_stable5
initial backport of #6777 - mobile public pages - to stable5
add missing mobile.css
fix .gitignore for stable5
fix undefined index
unset box-shadow for mobile devices, unsupported in all but the latest mobile browsers
fix scrolling for mobile browsers
Lukas Reschke (11):
Use the proper content-type
An admin should not be able to add remote and public services on its own. This should only be possible programmatically.
Check whether the Key is set
Check whether the app is set
Merge pull request #6733 from owncloud/stable5-files-filenameescapingfixes
Backport #7259 to stable5
Partially backport #7305 to stable5
Revert "Backport #7259 to stable5"
Revert "Partially backport #7305 to stable5"
Backport #7259 to stable5
Added extra checks for ext storage class
Thomas Müller (13):
Merge pull request #6665 from owncloud/fix_empty_mimetypes_stable5
Merge pull request #6821 from owncloud/backport_5601
Merge pull request #6860 from owncloud/neutral_download_zip_default_name_stable5
Merge pull request #7188 from owncloud/fix_gitignore_stable5
no need to check if the user is logged in - this is already done in the ocs dispatcher itself
fixing php notice: Undefined index key
no need to check if the user is logged in
PHPDoc comment updated - checkLoggedIn() removed
fixing undefined index in delete()
first two tests
unit tests for set added
adding unit tests for delete
testing update and delete
Vincent Petry (8):
Fixed various file name escaping issues in core apps
Removed unused versions md5 code
Merge pull request #7227 from owncloud/stable5-removeunusedversionsmd5
Merge pull request #4782 from owncloud/tune_legacy_cache_webdav_properties_prefixing
Merge pull request #7313 from owncloud/stable5_fix_folder_delete
Merge pull request #7365 from owncloud/backport-7305
Fix case where port is missing
Merge pull request #7387 from owncloud/stable5-fixhostnamewithport
tomneedham (1):
Change to using OC_User::setUserID() instead of OC::'
-----------------------------------------------------------------------
This annotated tag includes the following new commits:
new f802fcf Concatenate string in SQL instead of PHP
new 244f277 remove duplicate exe mimetype, add correct msi mimetype
new 48cd4ad Merge pull request #6665 from owncloud/fix_empty_mimetypes_stable5
new 3f7550c Fixed various file name escaping issues in core apps
new 969650e don't unshare on delete
new ae4d106 Fix mimetype detection
new 3cbea9b Merge pull request #6821 from owncloud/backport_5601
new bfcb93b always be verbose when logging db error
new 35d423d use 'download.zip' as default name for zip downloads instead of 'owncloud.zip'
new b4860d5 Merge pull request #6860 from owncloud/neutral_download_zip_default_name_stable5
new 075b56b Merge pull request #6859 from owncloud/always_log_db_error_verbose_stable5
new 7e48b31 use more accurate error codes
new b4b05c3 remove needless element tag
new 5e24e21 getData() always needs to return an array, backport of #6988
new 2248433 initial backport of #6777 - mobile public pages - to stable5
new 3baee7a add missing mobile.css
new 83a7196 fix .gitignore for stable5
new 102d5ab fix undefined index
new bb8f03c Merge pull request #7188 from owncloud/fix_gitignore_stable5
new f7e9151 Removed unused versions md5 code
new 8d5430c Merge pull request #7227 from owncloud/stable5-removeunusedversionsmd5
new cf05ecb Use the proper content-type
new cada6b5 fix the privatedata key value store
new 90f9437 no need to check if the user is logged in - this is already done in the ocs dispatcher itself adding @return
new 4c287ef fixing php notice: Undefined index key
new 9a28f2d no need to check if the user is logged in
new 42b7dd8 PHPDoc comment updated - checkLoggedIn() removed
new ddc14ae fixing undefined index in delete()
new 0ae41c3 Get rid of the SELECT query. Try UPDATE, on failure INSERT.
new bace2bc Make google drive client secret and dropbox api secret a password field
new 86858b4 first two tests
new e7ccfc6 unit tests for set added
new 7d52a51 adding unit tests for delete
new 606c22d testing update and delete
new 382ddab Merge pull request #4782 from owncloud/tune_legacy_cache_webdav_properties_prefixing
new b6db4e9 unset box-shadow for mobile devices, unsupported in all but the latest mobile browsers
new bee41b6 fix scrolling for mobile browsers
new 0b00057 An admin should not be able to add remote and public services on its own. This should only be possible programmatically. This change is due the fact that an admin may not be expected to execute arbitrary code in every environment.
new 3f5038a Check whether the Key is set
new 626b90f Check whether the app is set
new 2649bb7 Merge pull request #6733 from owncloud/stable5-files-filenameescapingfixes
new ab93d29 don't send delete for every single file if a folder gets deleted
new d8c6196 Merge pull request #7185 from owncloud/backport_6777_mobile_style_for_public_pages_stable5
new f144650 Merge pull request #7313 from owncloud/stable5_fix_folder_delete
new 74a46e2 LDAP: improve compilation of filters
new 7bc69c7 Backport #7259 to stable5
new 2589974 Partially backport #7305 to stable5
new 3d72340 Revert "Backport #7259 to stable5"
new b886545 Revert "Partially backport #7305 to stable5"
new e9671c9 Backport #7259 to stable5
new 04e2df3 Change to using OC_User::setUserID() instead of OC::'
new 1679c91 Added extra checks for ext storage class
new 195393e Merge pull request #7362 from owncloud/fix-7259-5
new bbe2019 Merge pull request #7365 from owncloud/backport-7305
new 153fde6 Fix case where port is missing
new 3730875 Merge pull request #7268 from owncloud/stable5-fix-ocspriv
new 0be9426 Merge pull request #7387 from owncloud/stable5-fixhostnamewithport
new 7819010 5.0.15 RC1
The 58 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list