Re: [VOTE] RC01 for release of Apache Olingo 2.0.11

2019-02-03 Thread Rai, Archana
+1 for the release

On 03-Feb-2019 10:47 PM, mibo  wrote:
Hi All,

This is a vote on first release candidate (RC01) for next Apache Olingo release 
version "2.0.11".
The vote will be open for at least 72 hours (it will close on Wednesday 
06/02/2019 on 8pm CET) and passes if no binding vote is (-1).

[ ] +1 Release this package as Apache Olingo 2.0.11
[ ] -1 Do not release this package because...

The release candidate is available here:
https://dist.apache.org/repos/dist/dev/olingo/Olingo-2.0.11-RC01/

The release candidate has been signed through the key 15AB5637 in:
http://keyserver.kjsl.org:11371/pks/lookup?search=0x15AB5637=vindex

The release candidate is based on the sources tagged with 2.0.11-RC01:
https://gitbox.apache.org/repos/asf?p=olingo-odata2.git;a=shortlog;h=refs/tags/2.0.11-RC01

and is based on the following commit id: 
5926cc88119dd1e8b8860d856d497bdd5f9b4824

The Olingo keys file can be found here:
https://dist.apache.org/repos/dist/release/olingo/KEYS

To perform a RAT check please use the following parameters:
`mvn clean install -Pbuild.quality`
This will assure that the RAT check is performed with the necessary excludes.

Release distribution files:
// compilable sources
olingo-odata2-parent-2.0.11-RC01-source-release.zip
olingo-odata2-parent-2.0.11-RC01-source-release.zip.asc
olingo-odata2-parent-2.0.11-RC01-source-release.zip.sha512

// javadoc distribution
olingo-odata2-dist-javadoc-2.0.11-RC01-javadoc.zip
olingo-odata2-dist-javadoc-2.0.11-RC01-javadoc.zip.asc
olingo-odata2-dist-javadoc-2.0.11-RC01-javadoc.zip.sha512

// odata lib distribution with dependencies
olingo-odata2-dist-lib-2.0.11-RC01-lib.zip
olingo-odata2-dist-lib-2.0.11-RC01-lib.zip.asc
olingo-odata2-dist-lib-2.0.11-RC01-lib.zip.sha512

// jpa processor distribution with dependencies
olingo-odata2-dist-jpa-2.0.11-RC01-jpa.zip
olingo-odata2-dist-jpa-2.0.11-RC01-jpa.zip.asc
olingo-odata2-dist-jpa-2.0.11-RC01-jpa.zip.sha512

// reference scenario war files with dependencies + Apache CXF
olingo-odata2-dist-ref-2.0.11-RC01-ref.zip
olingo-odata2-dist-ref-2.0.11-RC01-ref.zip.asc
olingo-odata2-dist-ref-2.0.11-RC01-ref.zip.sha512

// java annotation processor distribution with dependencies
olingo-odata2-dist-janos-2.0.11-RC01-janos.zip
olingo-odata2-dist-janos-2.0.11-RC01-janos.zip.asc
olingo-odata2-dist-janos-2.0.11-RC01-janos.zip.sha512

Kind Regards, Michael



[jira] [Updated] (OLINGO-1335) Release Olingo V2 in version 2.0.11

2019-02-03 Thread Michael Bolz (JIRA)


 [ 
https://issues.apache.org/jira/browse/OLINGO-1335?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Bolz updated OLINGO-1335:
-
Fix Version/s: (was: V2 2.0.11)
   V2 2.0.12

> Release Olingo V2 in version 2.0.11
> ---
>
> Key: OLINGO-1335
> URL: https://issues.apache.org/jira/browse/OLINGO-1335
> Project: Olingo
>  Issue Type: Task
>  Components: odata2-annotation, odata2-core, odata2-documentation, 
> odata2-jpa
>Affects Versions: V2 2.0.11
>Reporter: Michael Bolz
>Assignee: Michael Bolz
>Priority: Major
> Fix For: V2 2.0.12
>
>
> Provide a new Olingo V2 release (version 2.0.11).
> Includes:
> - Release candidate
> - Voting
> - Release
> - Update Distribution
> - Update Website



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


Re: Is my patch submission for OLINGO-1332 correct ?

2019-02-03 Thread Mi Bo
Hi Jérôme,

Thanks for creating the issue and the contribution.
How you have done it is definitely the correct way.
Perhaps an additional (JUnit) test would be nice but for now it is fine
and I will check your contribution as soon I have some time this week.

Kind Regards, Michael
Am 1. Feb. 2019, 14:48 +0100 schrieb Jérôme BAROTIN :
> Hi,
>
> I'm using olingo and I found a bug in the 4.5.0. I have created a issue in
> the JIRA (OLINGO-1332).
>
> I think that fixing is very easy, so I sent a proposal thought a git path.
>
> Is that the correct way to process ? Or there is any pull request system ?
>
> Best,
>
> Jérôme


[jira] [Assigned] (OLINGO-1332) Header Perfer: "return=minimal" or "return=representation" return Error "Prefer Header not supported"

2019-02-03 Thread Michael Bolz (JIRA)


 [ 
https://issues.apache.org/jira/browse/OLINGO-1332?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Bolz reassigned OLINGO-1332:


Assignee: Michael Bolz

> Header Perfer: "return=minimal" or "return=representation" return Error 
> "Prefer Header not supported"
> -
>
> Key: OLINGO-1332
> URL: https://issues.apache.org/jira/browse/OLINGO-1332
> Project: Olingo
>  Issue Type: Bug
>  Components: odata4-server
>Affects Versions: (Java) V4 4.5.0
>Reporter: Jerome BAROTIN
>Assignee: Michael Bolz
>Priority: Major
> Attachments: OLINGO-1332.patch
>
>
>  
> Hi,
> {color:#33}Considering the following python script  :{color}
> {code:java}
> # -*- encoding: utf-8 -*-
> import requests
> headers = {
>     'Content-Type': 'application/json',
>     'Prefer': 'return=minimal'
> }
> url = "http://localhost:8080/Customers(2)"
> r = requests.get(url, headers=headers))
> print(r.content){code}
> If I run it on my olingo implementation, I've got the following content : 
> {noformat}
> b'{"error":{"code":null,"message":"The Prefer header \'return=minimal\' is 
> not supported for this HTTP Method."}}'{noformat}
>  
>  
>  
>  
> {color:#808080} {color}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[VOTE] RC01 for release of Apache Olingo 2.0.11

2019-02-03 Thread mibo
Hi All,

This is a vote on first release candidate (RC01) for next Apache Olingo release 
version "2.0.11".
The vote will be open for at least 72 hours (it will close on Wednesday 
06/02/2019 on 8pm CET) and passes if no binding vote is (-1).

[ ] +1 Release this package as Apache Olingo 2.0.11
[ ] -1 Do not release this package because...

The release candidate is available here:
https://dist.apache.org/repos/dist/dev/olingo/Olingo-2.0.11-RC01/

The release candidate has been signed through the key 15AB5637 in:
http://keyserver.kjsl.org:11371/pks/lookup?search=0x15AB5637=vindex

The release candidate is based on the sources tagged with 2.0.11-RC01:
https://gitbox.apache.org/repos/asf?p=olingo-odata2.git;a=shortlog;h=refs/tags/2.0.11-RC01

and is based on the following commit id: 
5926cc88119dd1e8b8860d856d497bdd5f9b4824

The Olingo keys file can be found here:
https://dist.apache.org/repos/dist/release/olingo/KEYS

To perform a RAT check please use the following parameters:
`mvn clean install -Pbuild.quality`
This will assure that the RAT check is performed with the necessary excludes.

Release distribution files:
// compilable sources
olingo-odata2-parent-2.0.11-RC01-source-release.zip
olingo-odata2-parent-2.0.11-RC01-source-release.zip.asc
olingo-odata2-parent-2.0.11-RC01-source-release.zip.sha512

// javadoc distribution
olingo-odata2-dist-javadoc-2.0.11-RC01-javadoc.zip
olingo-odata2-dist-javadoc-2.0.11-RC01-javadoc.zip.asc
olingo-odata2-dist-javadoc-2.0.11-RC01-javadoc.zip.sha512

// odata lib distribution with dependencies
olingo-odata2-dist-lib-2.0.11-RC01-lib.zip
olingo-odata2-dist-lib-2.0.11-RC01-lib.zip.asc
olingo-odata2-dist-lib-2.0.11-RC01-lib.zip.sha512

// jpa processor distribution with dependencies
olingo-odata2-dist-jpa-2.0.11-RC01-jpa.zip
olingo-odata2-dist-jpa-2.0.11-RC01-jpa.zip.asc
olingo-odata2-dist-jpa-2.0.11-RC01-jpa.zip.sha512

// reference scenario war files with dependencies + Apache CXF
olingo-odata2-dist-ref-2.0.11-RC01-ref.zip
olingo-odata2-dist-ref-2.0.11-RC01-ref.zip.asc
olingo-odata2-dist-ref-2.0.11-RC01-ref.zip.sha512

// java annotation processor distribution with dependencies
olingo-odata2-dist-janos-2.0.11-RC01-janos.zip
olingo-odata2-dist-janos-2.0.11-RC01-janos.zip.asc
olingo-odata2-dist-janos-2.0.11-RC01-janos.zip.sha512

Kind Regards, Michael



[jira] [Created] (OLINGO-1335) Release Olingo V2 in version 2.0.11

2019-02-03 Thread Michael Bolz (JIRA)
Michael Bolz created OLINGO-1335:


 Summary: Release Olingo V2 in version 2.0.11
 Key: OLINGO-1335
 URL: https://issues.apache.org/jira/browse/OLINGO-1335
 Project: Olingo
  Issue Type: Task
  Components: odata2-annotation, odata2-core, odata2-documentation, 
odata2-jpa
Affects Versions: V2 2.0.11
Reporter: Michael Bolz
 Fix For: V2 2.0.11


Provide a new Olingo V2 release (version 2.0.11).

Includes:
- Release candidate
- Voting
- Release
- Update Distribution
- Update Website



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Assigned] (OLINGO-1335) Release Olingo V2 in version 2.0.11

2019-02-03 Thread Michael Bolz (JIRA)


 [ 
https://issues.apache.org/jira/browse/OLINGO-1335?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Bolz reassigned OLINGO-1335:


Assignee: Michael Bolz

> Release Olingo V2 in version 2.0.11
> ---
>
> Key: OLINGO-1335
> URL: https://issues.apache.org/jira/browse/OLINGO-1335
> Project: Olingo
>  Issue Type: Task
>  Components: odata2-annotation, odata2-core, odata2-documentation, 
> odata2-jpa
>Affects Versions: V2 2.0.11
>Reporter: Michael Bolz
>Assignee: Michael Bolz
>Priority: Major
> Fix For: V2 2.0.11
>
>
> Provide a new Olingo V2 release (version 2.0.11).
> Includes:
> - Release candidate
> - Voting
> - Release
> - Update Distribution
> - Update Website



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)