Branch: refs/heads/2.7
Home: https://github.com/openSUSE/open-build-service
Commit: b5ceb5c5e4f8293f4984440f98be4c2a43f1e7ea
https://github.com/openSUSE/open-build-service/commit/b5ceb5c5e4f8293f49844…
Author: Karsten Keil <keil(a)b1-systems.de>
Date: 2016-06-03 (Fri, 03 Jun 2016)
Changed paths:
M src/api/app/controllers/source_controller.rb
Log Message:
-----------
[api] Fix adding commit messages for project meta
The api and the backend support commit messages for the project meta
but the controller function did ignore the comment parameter.
Commit: 6f7f20c16518a8fa1d2e445ccb2be60cc0eb0656
https://github.com/openSUSE/open-build-service/commit/6f7f20c16518a8fa1d2e4…
Author: Adrian Schröter <adrian(a)suse.de>
Date: 2016-06-03 (Fri, 03 Jun 2016)
Changed paths:
M src/api/app/controllers/source_controller.rb
M src/api/app/models/package.rb
M src/api/test/functional/source_controller_test.rb
M src/api/test/unit/code_quality_test.rb
Log Message:
-----------
[api] test comment setting on meta objects
for projects and packages
Commit: 980e8afb639187378ed8e1f9001c9845b40ce6c0
https://github.com/openSUSE/open-build-service/commit/980e8afb639187378ed8e…
Author: Adrian Schröter <adrian(a)suse.de>
Date: 2016-06-03 (Fri, 03 Jun 2016)
Changed paths:
M src/api/app/models/issue_tracker.rb
Log Message:
-----------
[api] fix upstream CVE database parsing
Compare: https://github.com/openSUSE/open-build-service/compare/8046ea85cc79...980e8…
Branch: refs/heads/master
Home: https://github.com/openSUSE/open-build-service
Commit: 815778b340803be3ed65e9094e6893971f9d2fb1
https://github.com/openSUSE/open-build-service/commit/815778b340803be3ed65e…
Author: Karsten Keil <keil(a)b1-systems.de>
Date: 2016-06-01 (Wed, 01 Jun 2016)
Changed paths:
M src/api/app/controllers/source_controller.rb
Log Message:
-----------
[api] Fix adding commit messages for project meta
The api and the backend support commit messages for the project meta
but the controller function did ignore the comment parameter.
Commit: 16f53acd479024fdf32c1809ce480dc99426f775
https://github.com/openSUSE/open-build-service/commit/16f53acd479024fdf32c1…
Author: Adrian Schröter <adrian(a)suse.de>
Date: 2016-06-01 (Wed, 01 Jun 2016)
Changed paths:
M src/api/app/controllers/source_controller.rb
M src/api/app/models/package.rb
M src/api/test/functional/source_controller_test.rb
M src/api/test/unit/code_quality_test.rb
Log Message:
-----------
[api] test comment setting on meta objects
for projects and packages
Commit: dd91dad4d538333e90ebc7f98ab1b7b7aba39c7c
https://github.com/openSUSE/open-build-service/commit/dd91dad4d538333e90ebc…
Author: Björn Geuken <bgeuken(a)suse.de>
Date: 2016-06-03 (Fri, 03 Jun 2016)
Changed paths:
M src/api/app/controllers/source_controller.rb
M src/api/app/models/package.rb
M src/api/test/functional/source_controller_test.rb
M src/api/test/unit/code_quality_test.rb
Log Message:
-----------
Merge pull request #1848 from adrianschroeter/metacomment
comment handling fixes for meta data
Compare: https://github.com/openSUSE/open-build-service/compare/f38c5ae1cc38...dd91d…
Branch: refs/heads/master
Home: https://github.com/openSUSE/osc
Commit: acbd2c17c7649c825f3afb6593aec8df1e77c6ca
https://github.com/openSUSE/osc/commit/acbd2c17c7649c825f3afb6593aec8df1e77…
Author: Marcus Huewe <suse-tux(a)gmx.de>
Date: 2016-06-02 (Thu, 02 Jun 2016)
Changed paths:
M osc/core.py
Log Message:
-----------
Revert "Simplify core.http_request"
This reverts commit c53a7681ef289181b03e1077efbfd246bf1247f6 (for now!).
It seems to break local obs instances (see issue #202) (this needs
further debugging). Moreover, it breaks the python 3.4 - excerpt
from a travis run:
======================================================================
ERROR: test_added_missing2 (test_commit.TestCommit)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/opt/python/3.4.2/lib/python3.4/urllib/request.py", line 1111, in do_request_
mv = memoryview(data)
TypeError: memoryview: _io.BufferedReader object does not have the buffer interface
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/travis/build/openSUSE/osc/tests/common.py", line 122, in wrapped_test_method
test_method(*args)
File "/home/travis/build/openSUSE/osc/tests/common.py", line 122, in wrapped_test_method
test_method(*args)
File "/home/travis/build/openSUSE/osc/tests/common.py", line 122, in wrapped_test_method
test_method(*args)
File "/home/travis/build/openSUSE/osc/tests/common.py", line 122, in wrapped_test_method
test_method(*args)
File "/home/travis/build/openSUSE/osc/tests/common.py", line 122, in wrapped_test_method
test_method(*args)
File "/home/travis/build/openSUSE/osc/tests/test_commit.py", line 290, in test_added_missing2
p.commit()
File "/home/travis/build/openSUSE/osc/tests/osc/core.py", line 1471, in commit
self.put_source_file(filename, tdir)
File "/home/travis/build/openSUSE/osc/tests/osc/core.py", line 1319, in put_source_file
http_PUT(u, file = tfilename)
File "/home/travis/build/openSUSE/osc/tests/osc/core.py", line 3243, in http_PUT
def http_PUT(*args, **kwargs): return http_request('PUT', *args, **kwargs)
File "/home/travis/build/openSUSE/osc/tests/osc/core.py", line 3231, in http_request
fd = urlopen(req, data=data)
File "/opt/python/3.4.2/lib/python3.4/urllib/request.py", line 153, in urlopen
return opener.open(url, data, timeout)
File "/opt/python/3.4.2/lib/python3.4/urllib/request.py", line 453, in open
req = meth(req)
File "/opt/python/3.4.2/lib/python3.4/urllib/request.py", line 1116, in do_request_
data))
ValueError: Content-Length should be specified for iterable data of type <class '_io.BufferedReader'> <_io.BufferedReader name='/tmp/osc_test571whun4/osctest/added_missing/.osc/_in_commit/bar'>