Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-05-31 Thread via GitHub


iliyan-velichkov commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-2141749048

   > Hi all, sorry for the (long) delay. I plan to review and merge this PR in 
the next weeks. If everything looks fine (what I expect) I will prepare and do 
the related release in June/July.
   
   that's great


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-05-30 Thread via GitHub


mibo commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-2139233950

   Hi all, sorry for the (long) delay.
   I plan to review and merge this PR in the next weeks.
   If everything looks fine (what I expect) I will prepare and do the related 
release in June/July.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-05-23 Thread via GitHub


iliyan-velichkov commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-2126753283

   @luksmi do you plan to merge this PR?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Reducing memory usage when using batch request (avoiding OOM even if huge data is transferred) [olingo-odata2]

2024-04-15 Thread via GitHub


zruchala opened a new pull request, #52:
URL: https://github.com/apache/olingo-odata2/pull/52

   Problem:
   
   We experienced OutOfMemory exceptions when sending multiple bigger batch 
requests simultaneously. The current implementation of olingo2 requires the use 
of byte[] or stream input and also creates intermediate data in memory, which 
may be suboptimal in some situations.
   
   The change request allows data to be passed as an input stream:
   ```java
BatchChangeSetPart changeRequest = BatchChangeSetPart.newBuilder()
   .method("POST")
   .uri("ServiceRequestCollection")
   .headers(headers)
   // use batchInputResource as a body (instead of byte[] or 
string)
   .body(batchInputResource)
   .build();
   ```
   
   And also changes the internal implementation to avoid loading intermadiate 
data into memory (if data exceed threshold)
   
   ```java
static class BodyBuilder {
...
   public InputStream getContentAsStream() {
 try {
   return fileBuffer != null ?
 new DeleteOnCloseFileInputStream(fileBuffer) : new 
ByteArrayInputStream(getBufferContent());
 } catch (IOException exception) {
   throw new ODataRuntimeException(exception);
 }
   }
   ```
   
   To sum up, this change allows you to:
   - avoid loading payload into memory before passing batch-request to the 
olingo2 engine. You may use files or other data sources. 
   - decrease overall memory consumption, olingo2 uses disk storage internally 
if the received data exceed limit. 
   
   Changes are backwards compatible.
   
   I am attaching a sample project with a use case:
   
[olingo-stream.zip](https://github.com/apache/olingo-odata2/files/14978582/olingo-stream.zip)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-03-11 Thread via GitHub


iliyan-velichkov commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-1989259153

   @luksmi would you merge it?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-02-26 Thread via GitHub


iliyan-velichkov commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-1964068080

   > > > @mibo When is this PR expected to be merged?
   > > 
   > > 
   > > @neyasanand consider to use our fork 
https://github.com/codbex/olingo-odata2 until this PR is merged.
   > 
   > Hi @iliyan-velichkov, Thanks for the quick reply. Would codbex version 
with spring boot 3 changes be available in mvnrepository as a tagged version?
   
   We used this forked version in the [Dirigible 
project](https://github.com/search?q=repo%3Aeclipse%2Fdirigible%20com.codbex.olingo=code)
   It is officially released in the maven central - 
https://mvnrepository.com/search?q=com.codbex.olingo


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-02-26 Thread via GitHub


neyasanand commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-1963995324

   > > @mibo When is this PR expected to be merged?
   > 
   > @neyasanand consider to use our fork 
https://github.com/codbex/olingo-odata2 until this PR is merged.
   
   Hi @iliyan-velichkov, Thanks for the quick reply. Would codbex version with 
spring boot 3 changes be available in mvnrepository as a tagged version?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-02-26 Thread via GitHub


iliyan-velichkov commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-1963988287

   > @mibo When is this PR expected to be merged?
   
   @neyasanand consider to use our fork https://github.com/codbex/olingo-odata2 
until this PR is merged.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-02-26 Thread via GitHub


neyasanand commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-1963979438

   @mibo When is this PR expected to be merged? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump xmldom from 0.1.19 to 0.6.0 [olingo-odata4-js]

2024-02-22 Thread via GitHub


dependabot[bot] opened a new pull request, #6:
URL: https://github.com/apache/olingo-odata4-js/pull/6

   Bumps [xmldom](https://github.com/xmldom/xmldom) from 0.1.19 to 0.6.0.
   
   Release notes
   Sourced from https://github.com/xmldom/xmldom/releases;>xmldom's releases.
   
   0.6.0
   https://github.com/xmldom/xmldom/compare/0.5.0...0.6.0;>0.6.0
   Fixes
   
   Stop serializing empty namespace values like 
xmlns:ds= https://redirect.github.com/xmldom/xmldom/pull/168;>[#168](https://github.com/xmldom/xmldom/issues/168)
   BREAKING CHANGE: If your code expected empty namespaces attributes to be 
serialized.
   Thank you https://github.com/pdecat;>@​pdecat and 
https://github.com/FranckDepoortere;>@​FranckDepoortere
   Escape  to lt; when serializing 
attribute values https://redirect.github.com/xmldom/xmldom/issues/198;>[#198](https://github.com/xmldom/xmldom/issues/198)
 / https://redirect.github.com/xmldom/xmldom/pull/199;>[#199](https://github.com/xmldom/xmldom/issues/199)
   
   0.5.0
   Fixes
   
   Avoid misinterpretation of malicious XML input - https://github.com/xmldom/xmldom/security/advisories/GHSA-h6q6-9hqw-rwfv;>GHSA-h6q6-9hqw-rwfv
 (CVE-2021-21366)
   
   
   Improve error reporting; throw on duplicate attribute
   BREAKING CHANGE: It is currently not clear how to consistently deal with 
duplicate attributes, so it's also safer for our users to fail when detecting 
them.
   It's possible to configure the DOMParser.errorHandler before 
parsing, to handle those errors differently.
   To accomplish this and also be able to verify it in tests I needed to
   
   create a new Error type ParseError and export 
it
   Throw ParseError from errorHandler.fatalError 
and prevent those from being caught in XMLReader.
   export DOMHandler constructor as 
__DOMHandler
   
   
   
   Preserve quotes in DOCTYPE declaration
   Since the only purpose of parsing the DOCTYPE is to be able to restore it 
when serializing, we decided that it would be best to leave the parsed 
publicId and systemId as is, including any quotes.
   BREAKING CHANGE: If somebody relies on the actual unquoted values of those 
ids, they will need to take care of either single or double quotes and the 
right escaping.
   (Without this change this would not have been possible because the SAX 
parser already dropped the information about the quotes that have been used in 
the source.)
   https://www.w3.org/TR/2006/REC-xml11-20060816/#dtd;>https://www.w3.org/TR/2006/REC-xml11-20060816/#dtd
   https://www.w3.org/TR/2006/REC-xml11-20060816/#IDAX1KS;>https://www.w3.org/TR/2006/REC-xml11-20060816/#IDAX1KS
 (External Entity Declaration)
   
   
   
   Fix breaking preprocessors' directives when parsing attributes https://redirect.github.com/xmldom/xmldom/pull/171;>[#171](https://github.com/xmldom/xmldom/issues/171)
   fix(dom): Escape ]]gt; when serializing CharData https://redirect.github.com/xmldom/xmldom/pull/181;>[#181](https://github.com/xmldom/xmldom/issues/181)
   Switch to (only) MIT license (drop problematic LGPL license option) https://redirect.github.com/xmldom/xmldom/pull/178;>[#178](https://github.com/xmldom/xmldom/issues/178)
   Export DOMException; remove custom assertions; etc.  https://redirect.github.com/xmldom/xmldom/pull/174;>[#174](https://github.com/xmldom/xmldom/issues/174)
   
   Docs
   
   Update MDN links in readme.md https://redirect.github.com/xmldom/xmldom/pull/188;>[#188](https://github.com/xmldom/xmldom/issues/188)
   
   0.4.0
   Fixes
   
   BREAKING Restore nbsp; behavior from 
v0.1.27 https://redirect.github.com/xmldom/xmldom/pull/67;>[#67](https://github.com/xmldom/xmldom/issues/67)
   BREAKING Typecheck source param before parsing https://redirect.github.com/xmldom/xmldom/pull/113;>[#113](https://github.com/xmldom/xmldom/issues/113)
   Include documents in package files list https://redirect.github.com/xmldom/xmldom/pull/156;>[#156](https://github.com/xmldom/xmldom/issues/156)
   Preserve doctype with sysid https://redirect.github.com/xmldom/xmldom/pull/144;>[#144](https://github.com/xmldom/xmldom/issues/144)
   Remove ES6 syntax from getElementsByClassName https://redirect.github.com/xmldom/xmldom/pull/91;>[#91](https://github.com/xmldom/xmldom/issues/91)
   Revert Add lowercase of åäö in entityMap due to duplicate 
entries https://redirect.github.com/xmldom/xmldom/pull/84;>[#84](https://github.com/xmldom/xmldom/issues/84)
   fix: Convert all line separators to LF https://redirect.github.com/xmldom/xmldom/pull/66;>[#66](https://github.com/xmldom/xmldom/issues/66)
   
   Docs
   
   Update CHANGELOG.md through version 0.3.0 https://redirect.github.com/xmldom/xmldom/pull/63;>[#63](https://github.com/xmldom/xmldom/issues/63)
   Update badges https://redirect.github.com/xmldom/xmldom/pull/78;>[#78](https://github.com/xmldom/xmldom/issues/78)
   Add .editorconfig file https://redirect.github.com/xmldom/xmldom/pull/104;>[#104](https://github.com/xmldom/xmldom/issues/104)
   
   
   
   ... (truncated)
   
   

[PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.107.Final [olingo-odata4]

2024-02-13 Thread via GitHub


dependabot[bot] opened a new pull request, #167:
URL: https://github.com/apache/olingo-odata4/pull/167

   Bumps [io.netty:netty-codec-http](https://github.com/netty/netty) from 
4.1.97.Final to 4.1.107.Final.
   
   Commits
   
   https://github.com/netty/netty/commit/1908d3a8b02b6ebd00b6c3c0f60cf31a8e31d2ca;>1908d3a
 [maven-release-plugin] prepare release netty-4.1.107.Final
   https://github.com/netty/netty/commit/8d7c11357cf567cc26fb6f22897b36f0c335f78f;>8d7c113
 Add ReferenceCountUtil.touch(...) calls before we store messages into… (https://redirect.github.com/netty/netty/issues/13838;>#13838)
   https://github.com/netty/netty/commit/f2542264c1589122365783d3abb92b4aa57700d8;>f254226
 Add reset API to IdleStateHandler (https://redirect.github.com/netty/netty/issues/13598;>#13598)
   https://github.com/netty/netty/commit/442165ecb8e03ac99bbccb31d78c599d68368f76;>442165e
 Save CRC32C Netty allocation to trigger ADLER32 and CRC32 reflective 
initiali...
   https://github.com/netty/netty/commit/b135e37e1bb311aba1cfe9bace8fbd6c14c81075;>b135e37
 Update Brotli4j to v1.16.0 (https://redirect.github.com/netty/netty/issues/13827;>#13827)
   https://github.com/netty/netty/commit/9f19909b7d5010e56ac8075e45e7b7c03ff08d96;>9f19909
 MathUtil.findNextPositivePowerOfTwo instead of JCTools' (https://redirect.github.com/netty/netty/issues/13833;>#13833)
   https://github.com/netty/netty/commit/59a8bd0708583982769b43f7b36bd8ef77f4c761;>59a8bd0
 Snappy: Use unsigned short to handle 2 ^ 16 input size instead of 2 ^ 15 (https://redirect.github.com/netty/netty/issues/13;>#13...
   https://github.com/netty/netty/commit/14e00f50d13d112a1a7a8eaa693c2363adeee629;>14e00f5
 Fix compile error
   https://github.com/netty/netty/commit/94d0cfb347780f1a1f9c7bf4ad4ecb477c5c1310;>94d0cfb
 Correctly override equals and hashCode for our OpenSslSession sub-types (https://redirect.github.com/netty/netty/issues/13829;>#13829)
   https://github.com/netty/netty/commit/f0e9b4041856231498df2fcd44cd96d6ddc57bb2;>f0e9b40
 Ensure key / values are shared between resumed sessions (https://redirect.github.com/netty/netty/issues/13819;>#13819)
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.97.Final...netty-4.1.107.Final;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-codec-http=maven=4.1.97.Final=4.1.107.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.106.Final [olingo-odata4]

2024-02-13 Thread via GitHub


dependabot[bot] commented on PR #166:
URL: https://github.com/apache/olingo-odata4/pull/166#issuecomment-1942995592

   Superseded by #167.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.106.Final [olingo-odata4]

2024-02-13 Thread via GitHub


dependabot[bot] closed pull request #166: Bump io.netty:netty-codec-http from 
4.1.97.Final to 4.1.106.Final
URL: https://github.com/apache/olingo-odata4/pull/166


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-02-05 Thread via GitHub


iliyan-velichkov commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-192012

   @mibo sure, review it when you have team, meanwhile we created our own fork 
for this


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.105.Final [olingo-odata4]

2024-01-21 Thread via GitHub


dependabot[bot] commented on PR #165:
URL: https://github.com/apache/olingo-odata4/pull/165#issuecomment-1903019713

   Superseded by #166.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.105.Final [olingo-odata4]

2024-01-21 Thread via GitHub


dependabot[bot] closed pull request #165: Bump io.netty:netty-codec-http from 
4.1.97.Final to 4.1.105.Final
URL: https://github.com/apache/olingo-odata4/pull/165


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.106.Final [olingo-odata4]

2024-01-21 Thread via GitHub


dependabot[bot] opened a new pull request, #166:
URL: https://github.com/apache/olingo-odata4/pull/166

   Bumps [io.netty:netty-codec-http](https://github.com/netty/netty) from 
4.1.97.Final to 4.1.106.Final.
   
   Commits
   
   https://github.com/netty/netty/commit/9d0ec7b9356487f11921340c6b54f9f0c8c8b4b7;>9d0ec7b
 [maven-release-plugin] prepare release netty-4.1.106.Final
   https://github.com/netty/netty/commit/e2859f4f42cb237484c58ea19f757f88cf610c4b;>e2859f4
 Short-circuit ByteBuf::release (https://redirect.github.com/netty/netty/issues/13782;>#13782)
   https://github.com/netty/netty/commit/d9ca50d5a4acec37c822764fb84d047f41097b21;>d9ca50d
 Prevent sharing the index of the continuation frame header ByteBuf. (https://redirect.github.com/netty/netty/issues/13786;>#13786)
   https://github.com/netty/netty/commit/0e7c27c6536d8411ba4c8f63429a640b129d34bc;>0e7c27c
 DnsNameResolver: Fail query if id space is exhausted (https://redirect.github.com/netty/netty/issues/13784;>#13784)
   https://github.com/netty/netty/commit/b1947417b7444326965086b951b75f0128cf7085;>b194741
 [maven-release-plugin] prepare for next development iteration
   https://github.com/netty/netty/commit/47579d07fe9b0232df4e83120131388864bfb52b;>47579d0
 [maven-release-plugin] prepare release netty-4.1.105.Final
   https://github.com/netty/netty/commit/684dfd88e319bb7870d88977bd6a63d5fea765c0;>684dfd8
 Be able to retry the query via TCP if a query failed because of a timeout 
whe...
   https://github.com/netty/netty/commit/47e1f43c23c8eb861e64d68be96c670c2db53c06;>47e1f43
 Expose DNS error codes through the UnknownHostException (https://redirect.github.com/netty/netty/issues/13721;>#13721)
   https://github.com/netty/netty/commit/4dea3f7cf525edb953b4d913d9c36ab8259c6649;>4dea3f7
 Avoid using JVM HashCode on Http 2 DefaultStream (https://redirect.github.com/netty/netty/issues/13760;>#13760)
   https://github.com/netty/netty/commit/3b81f2c294ea81a4f2bb959d2797aa523dcb2055;>3b81f2c
 Save HTTP 2 pseudo-header lower-case validation (https://redirect.github.com/netty/netty/issues/13765;>#13765)
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.97.Final...netty-4.1.106.Final;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-codec-http=maven=4.1.97.Final=4.1.106.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2024-01-18 Thread via GitHub


mibo commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-1898798835

   Hi @iliyan-velichkov , Thanks for your contribution and sorry for the late 
response.
   I will check but I can not promise that I have time to work on this in 
January.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.104.Final [olingo-odata4]

2024-01-16 Thread via GitHub


dependabot[bot] closed pull request #160: Bump io.netty:netty-codec-http from 
4.1.97.Final to 4.1.104.Final
URL: https://github.com/apache/olingo-odata4/pull/160


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.104.Final [olingo-odata4]

2024-01-16 Thread via GitHub


dependabot[bot] commented on PR #160:
URL: https://github.com/apache/olingo-odata4/pull/160#issuecomment-1894852540

   Superseded by #165.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.105.Final [olingo-odata4]

2024-01-16 Thread via GitHub


dependabot[bot] opened a new pull request, #165:
URL: https://github.com/apache/olingo-odata4/pull/165

   Bumps [io.netty:netty-codec-http](https://github.com/netty/netty) from 
4.1.97.Final to 4.1.105.Final.
   
   Commits
   
   https://github.com/netty/netty/commit/47579d07fe9b0232df4e83120131388864bfb52b;>47579d0
 [maven-release-plugin] prepare release netty-4.1.105.Final
   https://github.com/netty/netty/commit/684dfd88e319bb7870d88977bd6a63d5fea765c0;>684dfd8
 Be able to retry the query via TCP if a query failed because of a timeout 
whe...
   https://github.com/netty/netty/commit/47e1f43c23c8eb861e64d68be96c670c2db53c06;>47e1f43
 Expose DNS error codes through the UnknownHostException (https://redirect.github.com/netty/netty/issues/13721;>#13721)
   https://github.com/netty/netty/commit/4dea3f7cf525edb953b4d913d9c36ab8259c6649;>4dea3f7
 Avoid using JVM HashCode on Http 2 DefaultStream (https://redirect.github.com/netty/netty/issues/13760;>#13760)
   https://github.com/netty/netty/commit/3b81f2c294ea81a4f2bb959d2797aa523dcb2055;>3b81f2c
 Save HTTP 2 pseudo-header lower-case validation (https://redirect.github.com/netty/netty/issues/13765;>#13765)
   https://github.com/netty/netty/commit/ce0366bf9f09ede4600ed9ded699db4a379411d9;>ce0366b
 Lazily allocate ChunkedWriteHandler#queue (https://redirect.github.com/netty/netty/issues/13711;>#13711)
   https://github.com/netty/netty/commit/09ba8c3eb7d2943fd612a3ae20055619675661fa;>09ba8c3
 DnsNameResolver: Limit connect timeout to query timeout (https://redirect.github.com/netty/netty/issues/13778;>#13778)
   https://github.com/netty/netty/commit/3370c4ee0e2b30fc87e5a1eaa064d2770519e81e;>3370c4e
 h2: propagate stream close without read pending, avoid SOOE if !autoRead (https://redirect.github.com/netty/netty/issues/13;>#13...
   https://github.com/netty/netty/commit/7ad4c4b0795b71f46577cb1bb4c6f4244e209a89;>7ad4c4b
 Inline duplicate variable declaration (https://redirect.github.com/netty/netty/issues/13763;>#13763)
   https://github.com/netty/netty/commit/78639fa5ec1da3271dbe79eac28cbf02171c0b73;>78639fa
 Fix exception on HTTP chunk size overflow (https://redirect.github.com/netty/netty/issues/13735;>#13735)
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.97.Final...netty-4.1.105.Final;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-codec-http=maven=4.1.97.Final=4.1.105.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump tomcat.version from 10.0.27 to 10.1.18 [olingo-odata4]

2024-01-09 Thread via GitHub


dependabot[bot] opened a new pull request, #164:
URL: https://github.com/apache/olingo-odata4/pull/164

   Bumps `tomcat.version` from 10.0.27 to 10.1.18.
   Updates `org.apache.tomcat.embed:tomcat-embed-core` from 10.0.27 to 10.1.18
   
   Updates `org.apache.tomcat:tomcat-jasper` from 10.0.27 to 10.1.18
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump tomcat.version from 10.0.27 to 10.1.17 [olingo-odata4]

2024-01-09 Thread via GitHub


dependabot[bot] closed pull request #162: Bump tomcat.version from 10.0.27 to 
10.1.17
URL: https://github.com/apache/olingo-odata4/pull/162


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump tomcat.version from 10.0.27 to 10.1.17 [olingo-odata4]

2024-01-09 Thread via GitHub


dependabot[bot] commented on PR #162:
URL: https://github.com/apache/olingo-odata4/pull/162#issuecomment-1884082553

   Superseded by #164.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump com.fasterxml.jackson.core:jackson-databind from 2.14.3 to 2.16.0 [olingo-odata4]

2023-12-24 Thread via GitHub


dependabot[bot] closed pull request #154: Bump 
com.fasterxml.jackson.core:jackson-databind from 2.14.3 to 2.16.0
URL: https://github.com/apache/olingo-odata4/pull/154


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump com.fasterxml.jackson.core:jackson-databind from 2.14.3 to 2.16.0 [olingo-odata4]

2023-12-24 Thread via GitHub


dependabot[bot] commented on PR #154:
URL: https://github.com/apache/olingo-odata4/pull/154#issuecomment-1868671536

   Superseded by #163.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump com.fasterxml.jackson.core:jackson-databind from 2.14.3 to 2.16.1 [olingo-odata4]

2023-12-24 Thread via GitHub


dependabot[bot] opened a new pull request, #163:
URL: https://github.com/apache/olingo-odata4/pull/163

   Bumps 
[com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson)
 from 2.14.3 to 2.16.1.
   
   Commits
   
   See full diff in https://github.com/FasterXML/jackson/commits;>compare view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind=maven=2.14.3=2.16.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump tomcat.version from 10.0.27 to 10.1.17 [olingo-odata4]

2023-12-21 Thread via GitHub


dependabot[bot] opened a new pull request, #162:
URL: https://github.com/apache/olingo-odata4/pull/162

   Bumps `tomcat.version` from 10.0.27 to 10.1.17.
   Updates `org.apache.tomcat.embed:tomcat-embed-core` from 10.0.27 to 10.1.17
   
   Updates `org.apache.tomcat:tomcat-jasper` from 10.0.27 to 10.1.17
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump org.apache.tomcat.embed:tomcat-embed-core from 10.0.27 to 10.1.16 [olingo-odata4]

2023-12-21 Thread via GitHub


dependabot[bot] opened a new pull request, #161:
URL: https://github.com/apache/olingo-odata4/pull/161

   Bumps org.apache.tomcat.embed:tomcat-embed-core from 10.0.27 to 10.1.16.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.tomcat.embed:tomcat-embed-core=maven=10.0.27=10.1.16)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/olingo-odata4/network/alerts).
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.103.Final [olingo-odata4]

2023-12-17 Thread via GitHub


dependabot[bot] closed pull request #159: Bump io.netty:netty-codec-http from 
4.1.97.Final to 4.1.103.Final
URL: https://github.com/apache/olingo-odata4/pull/159


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.103.Final [olingo-odata4]

2023-12-17 Thread via GitHub


dependabot[bot] commented on PR #159:
URL: https://github.com/apache/olingo-odata4/pull/159#issuecomment-1859253005

   Superseded by #160.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.104.Final [olingo-odata4]

2023-12-17 Thread via GitHub


dependabot[bot] opened a new pull request, #160:
URL: https://github.com/apache/olingo-odata4/pull/160

   Bumps [io.netty:netty-codec-http](https://github.com/netty/netty) from 
4.1.97.Final to 4.1.104.Final.
   
   Commits
   
   https://github.com/netty/netty/commit/257742648994569cadce5a6fac079bc8c041b141;>2577426
 [maven-release-plugin] prepare release netty-4.1.104.Final
   https://github.com/netty/netty/commit/c29508672c7e9aa01bbe2a14f7438d82c5b25f91;>c295086
 [maven-release-plugin] prepare for next development iteration
   https://github.com/netty/netty/commit/a34f445516e191ca6c4646f46c280f302e9e3ca7;>a34f445
 [maven-release-plugin] prepare release netty-4.1.103.Final
   https://github.com/netty/netty/commit/3ac963f11c3ab978faf0fa8d4d5bb2a9b42d048e;>3ac963f
 Add check for JAVA8_HOME to release script (https://redirect.github.com/netty/netty/issues/13725;>#13725)
   https://github.com/netty/netty/commit/b4dad390dffefb04a2b2d518ad1c3515b0f7fb47;>b4dad39
 [maven-release-plugin] prepare for next development iteration
   https://github.com/netty/netty/commit/0da2058cbf1b1d76b0cb00036daabe89c32aaa7b;>0da2058
 [maven-release-plugin] prepare release netty-4.1.102.Final
   https://github.com/netty/netty/commit/f9e20ac0490d2877c81def47a7d4046e06d9f410;>f9e20ac
 Make SizeClasses as composition with PoolArena instead of inheritance to 
redu...
   https://github.com/netty/netty/commit/ade1223dd31d32e5ea0288b8a0f0fd148e231d0f;>ade1223
 Add support for RISC-V (https://redirect.github.com/netty/netty/issues/13670;>#13670)
   https://github.com/netty/netty/commit/e2c706adad8fa3c5c5d5f15d1b6b2fb0a582a06d;>e2c706a
 ConnectTimeoutException: include timeout value (https://redirect.github.com/netty/netty/issues/13719;>#13719)
   https://github.com/netty/netty/commit/1e2b9557953587720243319a150218144d100327;>1e2b955
 Bump ch.qos.logback:logback-classic from 1.2.3 to 1.2.13 (https://redirect.github.com/netty/netty/issues/13718;>#13718)
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.97.Final...netty-4.1.104.Final;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-codec-http=maven=4.1.97.Final=4.1.104.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-12-17 Thread via GitHub


mibo merged PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-12-14 Thread via GitHub


rarathore commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1855957733

   
   What is release plan for Olingo 5.x.x?
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-12-14 Thread via GitHub


sangeetrathore1 commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1855951418

   What is release plan for Olingo 5.x.x?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2023-12-14 Thread via GitHub


iliyan-velichkov commented on PR #51:
URL: https://github.com/apache/olingo-odata2/pull/51#issuecomment-1855884607

   Hi @mibo could you please check this PR?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Add support for Spring Boot 3.2.0 [olingo-odata2]

2023-12-14 Thread via GitHub


iliyan-velichkov opened a new pull request, #51:
URL: https://github.com/apache/olingo-odata2/pull/51

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.102.Final [olingo-odata4]

2023-12-13 Thread via GitHub


dependabot[bot] commented on PR #157:
URL: https://github.com/apache/olingo-odata4/pull/157#issuecomment-1855039695

   Superseded by #159.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.102.Final [olingo-odata4]

2023-12-13 Thread via GitHub


dependabot[bot] closed pull request #157: Bump io.netty:netty-codec-http from 
4.1.97.Final to 4.1.102.Final
URL: https://github.com/apache/olingo-odata4/pull/157


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.103.Final [olingo-odata4]

2023-12-13 Thread via GitHub


dependabot[bot] opened a new pull request, #159:
URL: https://github.com/apache/olingo-odata4/pull/159

   Bumps [io.netty:netty-codec-http](https://github.com/netty/netty) from 
4.1.97.Final to 4.1.103.Final.
   
   Commits
   
   https://github.com/netty/netty/commit/a34f445516e191ca6c4646f46c280f302e9e3ca7;>a34f445
 [maven-release-plugin] prepare release netty-4.1.103.Final
   https://github.com/netty/netty/commit/3ac963f11c3ab978faf0fa8d4d5bb2a9b42d048e;>3ac963f
 Add check for JAVA8_HOME to release script (https://redirect.github.com/netty/netty/issues/13725;>#13725)
   https://github.com/netty/netty/commit/b4dad390dffefb04a2b2d518ad1c3515b0f7fb47;>b4dad39
 [maven-release-plugin] prepare for next development iteration
   https://github.com/netty/netty/commit/0da2058cbf1b1d76b0cb00036daabe89c32aaa7b;>0da2058
 [maven-release-plugin] prepare release netty-4.1.102.Final
   https://github.com/netty/netty/commit/f9e20ac0490d2877c81def47a7d4046e06d9f410;>f9e20ac
 Make SizeClasses as composition with PoolArena instead of inheritance to 
redu...
   https://github.com/netty/netty/commit/ade1223dd31d32e5ea0288b8a0f0fd148e231d0f;>ade1223
 Add support for RISC-V (https://redirect.github.com/netty/netty/issues/13670;>#13670)
   https://github.com/netty/netty/commit/e2c706adad8fa3c5c5d5f15d1b6b2fb0a582a06d;>e2c706a
 ConnectTimeoutException: include timeout value (https://redirect.github.com/netty/netty/issues/13719;>#13719)
   https://github.com/netty/netty/commit/1e2b9557953587720243319a150218144d100327;>1e2b955
 Bump ch.qos.logback:logback-classic from 1.2.3 to 1.2.13 (https://redirect.github.com/netty/netty/issues/13718;>#13718)
   https://github.com/netty/netty/commit/8b20d6bc9226d52bfcddb8a565879b0d5d28162e;>8b20d6b
 Use Http2Headers.size() instead of isEmpty() (https://redirect.github.com/netty/netty/issues/13717;>#13717)
   https://github.com/netty/netty/commit/bd126894b4490a2c807b3b73be7a0d0704ee0a36;>bd12689
 Adds topicFilter method to MqttTopicSubscription and deprecate topicName (https://redirect.github.com/netty/netty/issues/13;>#13...
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.97.Final...netty-4.1.103.Final;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-codec-http=maven=4.1.97.Final=4.1.103.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump github/codeql-action from 2 to 3 [olingo-odata4]

2023-12-13 Thread via GitHub


dependabot[bot] opened a new pull request, #158:
URL: https://github.com/apache/olingo-odata4/pull/158

   Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 
to 3.
   
   Release notes
   Sourced from https://github.com/github/codeql-action/releases;>github/codeql-action's 
releases.
   
   CodeQL Bundle v2.15.4
   Bundles CodeQL CLI v2.15.4
   
   (https://github.com/github/codeql-cli-binaries/blob/HEAD/CHANGELOG.md;>changelog,
 https://github.com/github/codeql-cli-binaries/releases/tag/v2.15.4;>release)
   
   Includes the following CodeQL language packs from https://github.com/github/codeql/tree/codeql-cli/v2.15.4;>github/codeql@codeql-cli/v2.15.4:
   
   codeql/cpp-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/cpp/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/cpp/ql/src;>source)
   codeql/cpp-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/cpp/ql/lib/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/cpp/ql/lib;>source)
   codeql/csharp-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/csharp/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/csharp/ql/src;>source)
   codeql/csharp-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/csharp/ql/lib/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/csharp/ql/lib;>source)
   codeql/go-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/go/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/go/ql/src;>source)
   codeql/go-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/go/ql/lib/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/go/ql/lib;>source)
   codeql/java-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/java/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/java/ql/src;>source)
   codeql/java-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/java/ql/lib/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/java/ql/lib;>source)
   codeql/javascript-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/javascript/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/javascript/ql/src;>source)
   codeql/javascript-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/javascript/ql/lib/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/javascript/ql/lib;>source)
   codeql/python-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/python/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/python/ql/src;>source)
   codeql/python-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/python/ql/lib/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/python/ql/lib;>source)
   codeql/ruby-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/ruby/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/ruby/ql/src;>source)
   codeql/ruby-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/ruby/ql/lib/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/ruby/ql/lib;>source)
   codeql/swift-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/swift/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/swift/ql/src;>source)
   codeql/swift-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.4/swift/ql/lib/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.4/swift/ql/lib;>source)
   
   CodeQL Bundle
   Bundles CodeQL CLI v2.15.3
   
   (https://github.com/github/codeql-cli-binaries/blob/HEAD/CHANGELOG.md;>changelog,
 https://github.com/github/codeql-cli-binaries/releases/tag/v2.15.3;>release)
   
   Includes the following CodeQL language packs from https://github.com/github/codeql/tree/codeql-cli/v2.15.3;>github/codeql@codeql-cli/v2.15.3:
   
   codeql/cpp-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.3/cpp/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.3/cpp/ql/src;>source)
   codeql/cpp-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.3/cpp/ql/lib/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.3/cpp/ql/lib;>source)
   codeql/csharp-queries (https://github.com/github/codeql/tree/codeql-cli/v2.15.3/csharp/ql/src/CHANGELOG.md;>changelog,
 https://github.com/github/codeql/tree/codeql-cli/v2.15.3/csharp/ql/src;>source)
   codeql/csharp-all (https://github.com/github/codeql/tree/codeql-cli/v2.15.3/csharp/ql/lib/CHANGELOG.md;>changelog,
 

Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-12-13 Thread via GitHub


danishnawab commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1853780971

   @mibo do you have an estimate on when 5.0.0 will be available for general 
use? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Fix compilation and add github workflows [olingo-odata2]

2023-12-13 Thread via GitHub


iliyan-velichkov commented on PR #50:
URL: https://github.com/apache/olingo-odata2/pull/50#issuecomment-1853485491

   @mibo please review this PR


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Fix compilation and add github workflows [olingo-odata2]

2023-12-13 Thread via GitHub


iliyan-velichkov opened a new pull request, #50:
URL: https://github.com/apache/olingo-odata2/pull/50

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rebase fork [olingo-odata2]

2023-12-12 Thread via GitHub


iliyan-velichkov closed pull request #49: Rebase fork
URL: https://github.com/apache/olingo-odata2/pull/49


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Rebase fork [olingo-odata2]

2023-12-12 Thread via GitHub


iliyan-velichkov opened a new pull request, #49:
URL: https://github.com/apache/olingo-odata2/pull/49

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.101.Final [olingo-odata4]

2023-12-12 Thread via GitHub


dependabot[bot] closed pull request #155: Bump io.netty:netty-codec-http from 
4.1.97.Final to 4.1.101.Final
URL: https://github.com/apache/olingo-odata4/pull/155


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.101.Final [olingo-odata4]

2023-12-12 Thread via GitHub


dependabot[bot] commented on PR #155:
URL: https://github.com/apache/olingo-odata4/pull/155#issuecomment-1853172191

   Superseded by #157.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.102.Final [olingo-odata4]

2023-12-12 Thread via GitHub


dependabot[bot] opened a new pull request, #157:
URL: https://github.com/apache/olingo-odata4/pull/157

   Bumps [io.netty:netty-codec-http](https://github.com/netty/netty) from 
4.1.97.Final to 4.1.102.Final.
   
   Commits
   
   https://github.com/netty/netty/commit/0da2058cbf1b1d76b0cb00036daabe89c32aaa7b;>0da2058
 [maven-release-plugin] prepare release netty-4.1.102.Final
   https://github.com/netty/netty/commit/f9e20ac0490d2877c81def47a7d4046e06d9f410;>f9e20ac
 Make SizeClasses as composition with PoolArena instead of inheritance to 
redu...
   https://github.com/netty/netty/commit/ade1223dd31d32e5ea0288b8a0f0fd148e231d0f;>ade1223
 Add support for RISC-V (https://redirect.github.com/netty/netty/issues/13670;>#13670)
   https://github.com/netty/netty/commit/e2c706adad8fa3c5c5d5f15d1b6b2fb0a582a06d;>e2c706a
 ConnectTimeoutException: include timeout value (https://redirect.github.com/netty/netty/issues/13719;>#13719)
   https://github.com/netty/netty/commit/1e2b9557953587720243319a150218144d100327;>1e2b955
 Bump ch.qos.logback:logback-classic from 1.2.3 to 1.2.13 (https://redirect.github.com/netty/netty/issues/13718;>#13718)
   https://github.com/netty/netty/commit/8b20d6bc9226d52bfcddb8a565879b0d5d28162e;>8b20d6b
 Use Http2Headers.size() instead of isEmpty() (https://redirect.github.com/netty/netty/issues/13717;>#13717)
   https://github.com/netty/netty/commit/bd126894b4490a2c807b3b73be7a0d0704ee0a36;>bd12689
 Adds topicFilter method to MqttTopicSubscription and deprecate topicName (https://redirect.github.com/netty/netty/issues/13;>#13...
   https://github.com/netty/netty/commit/f2dfae3d3715cfd3ece69594daa09f6a15b74323;>f2dfae3
 Remove native-image.properties from netty-transport (https://redirect.github.com/netty/netty/issues/13596;>#13596)
   https://github.com/netty/netty/commit/84a13a92e1d757965438dc41a5611b19dd47ec44;>84a13a9
 Deprecate disabling HTTP header validation (https://redirect.github.com/netty/netty/issues/13609;>#13609)
   https://github.com/netty/netty/commit/7dba4fcf499425914e09993d1f2bd439794cb3d6;>7dba4fc
 Upgrade to maven-wrapper 3.2.0 (https://redirect.github.com/netty/netty/issues/13697;>#13697)
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.97.Final...netty-4.1.102.Final;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-codec-http=maven=4.1.97.Final=4.1.102.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-12-03 Thread via GitHub


eduardoraupp commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1837421036

   @mibo Hey sir!!!
   any news for the release?
   Thank you!!!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump actions/setup-java from 3 to 4 [olingo-odata4]

2023-11-29 Thread via GitHub


dependabot[bot] opened a new pull request, #156:
URL: https://github.com/apache/olingo-odata4/pull/156

   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 
4.
   
   Release notes
   Sourced from https://github.com/actions/setup-java/releases;>actions/setup-java's 
releases.
   
   v4.0.0
   What's Changed
   In the scope of this release, the version of the Node.js runtime was 
updated to 20. The majority of dependencies were updated to the latest 
versions. From now on, the code for the setup-java will run on Node.js 20 
instead of Node.js 16.
   Breaking changes
   
   Update Node.js runtime to version 20 by https://github.com/aparnajyothi-y;>@​aparnajyothi-y in 
https://redirect.github.com/actions/setup-java/pull/558;>actions/setup-java#558
   
   Non-breaking changes
   
   Adding support for microsoft openjdk 21.0.0 by https://github.com/ralfstuckert;>@​ralfstuckert in https://redirect.github.com/actions/setup-java/pull/546;>actions/setup-java#546
   Update @​actions/cache dependency and documentation by https://github.com/IvanZosimov;>@​IvanZosimov in https://redirect.github.com/actions/setup-java/pull/549;>actions/setup-java#549
   Implementation of the cache-dependency-path option to control caching 
dependency by https://github.com/itchyny;>@​itchyny 
in https://redirect.github.com/actions/setup-java/pull/499;>actions/setup-java#499
   
   New Contributors
   
   https://github.com/ralfstuckert;>@​ralfstuckert made 
their first contribution in https://redirect.github.com/actions/setup-java/pull/546;>actions/setup-java#546
   https://github.com/itchyny;>@​itchyny made 
their first contribution in https://redirect.github.com/actions/setup-java/pull/499;>actions/setup-java#499
   
   Full Changelog: https://github.com/actions/setup-java/compare/v3...v4.0.0;>https://github.com/actions/setup-java/compare/v3...v4.0.0
   v3.13.0
   What's changed
   In the scope of this release, support for Dragonwell JDK was added by https://github.com/Accelerator1996;>@​Accelerator1996 in 
https://redirect.github.com/actions/setup-java/pull/532;>actions/setup-java#532
   steps:
- name: Checkout
  uses: actions/checkout@v3
- name: Setup-java
  uses: actions/setup-java@v3
  with:
distribution: 'dragonwell'
java-version: '17'
   
   Several inaccuracies were also fixed:
   
   Fix XML namespaces wrongly using https by https://github.com/gnodet;>@​gnodet in https://redirect.github.com/actions/setup-java/pull/503;>actions/setup-java#503
   Fix typo and remove unintentional(?) word by https://github.com/CyberFlameGO;>@​CyberFlameGO in https://redirect.github.com/actions/setup-java/pull/518;>actions/setup-java#518
   Fix usage link within the README.md file by https://github.com/dassiorleando;>@​dassiorleando in https://redirect.github.com/actions/setup-java/pull/525;>actions/setup-java#525
   
   New Contributors
   
   https://github.com/CyberFlameGO;>@​CyberFlameGO made 
their first contribution in https://redirect.github.com/actions/setup-java/pull/518;>actions/setup-java#518
   https://github.com/dassiorleando;>@​dassiorleando made 
their first contribution in https://redirect.github.com/actions/setup-java/pull/525;>actions/setup-java#525
   https://github.com/gnodet;>@​gnodet made their 
first contribution in https://redirect.github.com/actions/setup-java/pull/503;>actions/setup-java#503
   https://github.com/Accelerator1996;>@​Accelerator1996 
made their first contribution in https://redirect.github.com/actions/setup-java/pull/532;>actions/setup-java#532
   
   Full Changelog: https://github.com/actions/setup-java/compare/v3...v3.13.0;>https://github.com/actions/setup-java/compare/v3...v3.13.0
   v3.12.0
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/actions/setup-java/commit/387ac29b308b003ca37ba93a6cab5eb57c8f5f93;>387ac29
 Upgrade Node to v20 (https://redirect.github.com/actions/setup-java/issues/558;>#558)
   https://github.com/actions/setup-java/commit/9eda6b51cc4f6ee99be3dd5537b85e389e47bda9;>9eda6b5
 feat: implement cache-dependency-path option to control caching dependency 
(#...
   https://github.com/actions/setup-java/commit/78078da0cd035d0d177cc2cb696e05d96fba7d11;>78078da
 Update @​actions/cache dependency and documentation (https://redirect.github.com/actions/setup-java/issues/549;>#549)
   https://github.com/actions/setup-java/commit/5caaba646e214abb5c4c808eb8fe13db519ab757;>5caaba6
 add support for microsoft openjdk 21.0.0 (https://redirect.github.com/actions/setup-java/issues/546;>#546)
   See full diff in https://github.com/actions/setup-java/compare/v3...v4;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-java=github_actions=3=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve 

Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-11-27 Thread via GitHub


danishnawab commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1827589798

   > I tested some of the Olingo samples with the 
[5.0.0-ALPHA-02](https://search.maven.org/search?q=g:org.apache.olingo=5.0.0-ALPHA-02)
 and everything worked as expected.
   > 
   > I plan to continue with the release if there are no objections.
   
   I have already successfully used the 5.x ALPHA in production without any 
issues. So I welcome a full release. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-11-25 Thread via GitHub


mibo commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1826671480

   I tested some of the Olingo samples with the 
[5.0.0-ALPHA-02](https://search.maven.org/search?q=g:org.apache.olingo=5.0.0-ALPHA-02)
 and everything worked as expected.
   
   I plan to continue with the release if there are no objections.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-11-19 Thread via GitHub


mibo commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1818387254

   Created a 
[5.0.0-ALPHA-02](https://search.maven.org/search?q=g:org.apache.olingo=5.0.0-ALPHA-02)
 with some additional dependency updates.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump io.netty:netty-codec-http from 4.1.97.Final to 4.1.101.Final [olingo-odata4]

2023-11-19 Thread via GitHub


dependabot[bot] opened a new pull request, #155:
URL: https://github.com/apache/olingo-odata4/pull/155

   Bumps [io.netty:netty-codec-http](https://github.com/netty/netty) from 
4.1.97.Final to 4.1.101.Final.
   
   Commits
   
   https://github.com/netty/netty/commit/c6a6aadaface1b2b66d2608dcdc6e4c04c1648cc;>c6a6aad
 [maven-release-plugin] prepare release netty-4.1.101.Final
   https://github.com/netty/netty/commit/5cb2e4f19718464cde92cd78ea12b514cabc3bc8;>5cb2e4f
 Descriptive message for errors related to unknown http2 streams (https://redirect.github.com/netty/netty/issues/13691;>#13691)
   https://github.com/netty/netty/commit/7e18e8344819428a5560064ac15a2f035b4728fd;>7e18e83
 Bump Brotli4j to v1.13.0 (https://redirect.github.com/netty/netty/issues/13685;>#13685)
   https://github.com/netty/netty/commit/41dcc5d572a9737784ae4243cc915621f499188c;>41dcc5d
 Upgrade java versions to latest patch release (https://redirect.github.com/netty/netty/issues/13684;>#13684)
   https://github.com/netty/netty/commit/9af0564c05daa10855401f3b7cb1ef05b816fd3e;>9af0564
 Upgrade to maven 3.9.5 (https://redirect.github.com/netty/netty/issues/13683;>#13683)
   https://github.com/netty/netty/commit/2e3f54031f266a92c913e1d70f1cfb4592810263;>2e3f540
 Allowlist ReferenceCountUpdater.retryRelease0 in Netty blockhound int… (https://redirect.github.com/netty/netty/issues/13677;>#13677)
   https://github.com/netty/netty/commit/d2a72648ca2278abcc0099a9f740ec7f4d196e11;>d2a7264
 Add service-loaded extension points for channel initialization (https://redirect.github.com/netty/netty/issues/13565;>#13565)
   https://github.com/netty/netty/commit/5a982148ba06ea74ffbefde0f6e577c1fcd9aad2;>5a98214
 Change the default value of maxMessagePerRead to 16 in ChannelMetadata (https://redirect.github.com/netty/netty/issues/13680;>#13680)
   https://github.com/netty/netty/commit/af9ba8d9ba78bb148802e3052eb0548b7caa4be2;>af9ba8d
 Also set MAX_MESSAGES_PER_READ to 16 by default in EpollDomainDatagra… (https://redirect.github.com/netty/netty/issues/13678;>#13678)
   https://github.com/netty/netty/commit/7800070656daf4728a91ce3d527651334d0c7745;>7800070
 Change default value of MAX_MESSAGES_PER_READ for DatagramChannel imp… (https://redirect.github.com/netty/netty/issues/13676;>#13676)
   Additional commits viewable in https://github.com/netty/netty/compare/netty-4.1.97.Final...netty-4.1.101.Final;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.netty:netty-codec-http=maven=4.1.97.Final=4.1.101.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump com.fasterxml.jackson.core:jackson-databind from 2.14.3 to 2.16.0 [olingo-odata4]

2023-11-19 Thread via GitHub


dependabot[bot] opened a new pull request, #154:
URL: https://github.com/apache/olingo-odata4/pull/154

   Bumps 
[com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson)
 from 2.14.3 to 2.16.0.
   
   Commits
   
   See full diff in https://github.com/FasterXML/jackson/commits;>compare view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind=maven=2.14.3=2.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump jackson.version from 2.14.0 to 2.15.3 [olingo-odata4]

2023-11-19 Thread via GitHub


dependabot[bot] commented on PR #148:
URL: https://github.com/apache/olingo-odata4/pull/148#issuecomment-1818146740

   Superseded by #153.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump jackson.version from 2.14.0 to 2.15.3 [olingo-odata4]

2023-11-19 Thread via GitHub


dependabot[bot] closed pull request #148: Bump jackson.version from 2.14.0 to 
2.15.3
URL: https://github.com/apache/olingo-odata4/pull/148


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump jackson.version from 2.14.0 to 2.16.0 [olingo-odata4]

2023-11-19 Thread via GitHub


dependabot[bot] opened a new pull request, #153:
URL: https://github.com/apache/olingo-odata4/pull/153

   Bumps `jackson.version` from 2.14.0 to 2.16.0.
   Updates `com.fasterxml.jackson.core:jackson-core` from 2.14.0 to 2.16.0
   
   Commits
   
   https://github.com/FasterXML/jackson-core/commit/2af46f18403d962d18121918c822d13224a3943c;>2af46f1
 [maven-release-plugin] prepare release jackson-core-2.16.0
   https://github.com/FasterXML/jackson-core/commit/6f337da4c46b3034e315f422a91cf65a49ccf256;>6f337da
 Prepare for 2.16.0 release
   https://github.com/FasterXML/jackson-core/commit/1cfb490529989ac5ab158615030dfad699a3a705;>1cfb490
 Make JacksonFeatureSet java.io.Serializable
   https://github.com/FasterXML/jackson-core/commit/f878f33b019654607af054e83fb3033e0f45de03;>f878f33
 Update release notes wrt https://redirect.github.com/FasterXML/jackson-core/issues/1136;>#1136
   https://github.com/FasterXML/jackson-core/commit/a0c853a52ff08bad659e9051cf3a1a76e62059cf;>a0c853a
 Change error mesage to mention -INF (https://redirect.github.com/FasterXML/jackson-core/issues/1136;>#1136)
   https://github.com/FasterXML/jackson-core/commit/2d137d8198a56d5ddec39c63d29a835878693e3f;>2d137d8
 Bump the github-actions group with 2 updates (https://redirect.github.com/FasterXML/jackson-core/issues/1134;>#1134)
   https://github.com/FasterXML/jackson-core/commit/ce0e92eaa2e8164bcd5e9401b3d00f701dbca27c;>ce0e92e
 Add missing name-length check in a test
   https://github.com/FasterXML/jackson-core/commit/97030b97c226f3d0b5d0d6b319861e69914715de;>97030b9
 Merge branch '2.16' of github.com:FasterXML/jackson-core into 2.16
   https://github.com/FasterXML/jackson-core/commit/3e1cbb9fa077332fccdcd66cf53bdde6090e98a4;>3e1cbb9
 Unit test cleanup
   https://github.com/FasterXML/jackson-core/commit/69712d838556a5becc09b15efd093eab6e140df3;>69712d8
 Maximum Property name length affects input/read (https://redirect.github.com/FasterXML/jackson-core/issues/1130;>#1130)
   Additional commits viewable in https://github.com/FasterXML/jackson-core/compare/jackson-core-2.14.0...jackson-core-2.16.0;>compare
 view
   
   
   
   
   Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.14.0 to 
2.16.0
   
   Commits
   
   See full diff in https://github.com/FasterXML/jackson/commits;>compare view
   
   
   
   
   Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-xml` from 
2.14.0 to 2.16.0
   
   Commits
   
   https://github.com/FasterXML/jackson-dataformat-xml/commit/fe6ffce81ea500387905813f56a0f3be500c0762;>fe6ffce
 [maven-release-plugin] prepare release jackson-dataformat-xml-2.16.0
   https://github.com/FasterXML/jackson-dataformat-xml/commit/f265cbb185b7ef2793e4400317b0c08c49a5ce29;>f265cbb
 Prepare for 2.16.0 release
   https://github.com/FasterXML/jackson-dataformat-xml/commit/34cd570fd15979223701f1c604619ef5dde70bca;>34cd570
 Back to snapshot dep
   https://github.com/FasterXML/jackson-dataformat-xml/commit/ad8b5f89229d9f7c9f14831183be68d629d8c55f;>ad8b5f8
 [maven-release-plugin] prepare for next development iteration
   https://github.com/FasterXML/jackson-dataformat-xml/commit/7639c87cdb4503cac434285545e9c86096f34c14;>7639c87
 [maven-release-plugin] prepare release jackson-dataformat-xml-2.16.0-rc1
   https://github.com/FasterXML/jackson-dataformat-xml/commit/d795d2422979ddda937ca02c652dec8752bd37c7;>d795d24
 Prepare for 2.16.0-rc1 release
   https://github.com/FasterXML/jackson-dataformat-xml/commit/bba471a679a235b8cd3a5bfb9d1a156cdd3e8f1d;>bba471a
 Add OpenSSF Score badge
   https://github.com/FasterXML/jackson-dataformat-xml/commit/177beb2210fff35e2e75ba5158177a57460d4ecc;>177beb2
 Remove maven wrapper jar
   https://github.com/FasterXML/jackson-dataformat-xml/commit/bc0adc282d8bc1f617cdac3934cc8abbcf5d26d2;>bc0adc2
 Create reproducer test case for https://redirect.github.com/FasterXML/jackson-dataformat-xml/issues/509;>#509
 (https://redirect.github.com/FasterXML/jackson-dataformat-xml/issues/604;>#604)
   https://github.com/FasterXML/jackson-dataformat-xml/commit/36459c62d95b34fc0e32bd82a4e034f03ad1967f;>36459c6
 Prepare for 2.16.0-rc1
   Additional commits viewable in https://github.com/FasterXML/jackson-dataformat-xml/compare/jackson-dataformat-xml-2.14.0...jackson-dataformat-xml-2.16.0;>compare
 view
   
   
   
   
   Updates `com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider` from 
2.14.0 to 2.16.0
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it

Re: [PR] Bump actions/checkout from 3 to 4 [olingo-odata4]

2023-11-19 Thread via GitHub


dependabot[bot] closed pull request #140: Bump actions/checkout from 3 to 4
URL: https://github.com/apache/olingo-odata4/pull/140


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump actions/checkout from 3 to 4 [olingo-odata4]

2023-11-19 Thread via GitHub


mibo commented on PR #140:
URL: https://github.com/apache/olingo-odata4/pull/140#issuecomment-1817982662

   @dependabot close


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump pax.exam.version from 4.13.1 to 4.13.5 [olingo-odata4]

2023-11-19 Thread via GitHub


dependabot[bot] closed pull request #146: Bump pax.exam.version from 4.13.1 to 
4.13.5
URL: https://github.com/apache/olingo-odata4/pull/146


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump pax.exam.version from 4.13.1 to 4.13.5 [olingo-odata4]

2023-11-19 Thread via GitHub


mibo commented on PR #146:
URL: https://github.com/apache/olingo-odata4/pull/146#issuecomment-1817980427

   @dependabot close


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.codehaus.mojo:properties-maven-plugin from 1.0.0 to 1.2.1 [olingo-odata4]

2023-11-19 Thread via GitHub


dependabot[bot] commented on PR #150:
URL: https://github.com/apache/olingo-odata4/pull/150#issuecomment-1817980187

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.codehaus.mojo:properties-maven-plugin from 1.0.0 to 1.2.1 [olingo-odata4]

2023-11-19 Thread via GitHub


mibo closed pull request #150: Bump org.codehaus.mojo:properties-maven-plugin 
from 1.0.0 to 1.2.1
URL: https://github.com/apache/olingo-odata4/pull/150


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-11-18 Thread via GitHub


eduardoraupp commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1817465754

   > I uploaded the alpha release build. It should soon be available in [Maven 
central](https://search.maven.org/search?q=g:org.apache.olingo) (already in 
[Sonatype 
nexus](https://central.sonatype.com/search?q=org.apache.olingo=true=published=org.apache.olingo)).
   > 
   > It is based on this PR, please test it and provide feedback. I will take 
some time and do another review round in the next days. Based on this and the 
feedback I will provide another alpha version or proceed with the 5.0.0 release.
   
   Thank you for accepting my PR @mibo. I will keep working on the framework 
evolution! I hope also become a committer soon!!! :)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] upgrade jdk and java ee [olingo-odata4]

2023-11-18 Thread via GitHub


mibo commented on PR #130:
URL: https://github.com/apache/olingo-odata4/pull/130#issuecomment-1817435611

   Short update, for me it is a bit easier with a branch/PR in this repo.
   Hence I created #151 to test and proceed with the upgrade.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-11-18 Thread via GitHub


mibo commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1817435160

   I uploaded the alpha release build. It should soon be available in [Maven 
central](https://search.maven.org/search?q=g:org.apache.olingo).
   
   It is based on this PR, please test it and provide feedback.
   I will take some time and do another review round in the next days.
   Based on this and the feedback I will provide another alpha version or 
proceed with the 5.0.0 release.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.codehaus.mojo:exec-maven-plugin from 1.2.1 to 3.1.0 [olingo-odata4]

2023-11-16 Thread via GitHub


dependabot[bot] closed pull request #147: Bump 
org.codehaus.mojo:exec-maven-plugin from 1.2.1 to 3.1.0
URL: https://github.com/apache/olingo-odata4/pull/147


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.codehaus.mojo:exec-maven-plugin from 1.2.1 to 3.1.0 [olingo-odata4]

2023-11-16 Thread via GitHub


dependabot[bot] commented on PR #147:
URL: https://github.com/apache/olingo-odata4/pull/147#issuecomment-1815668742

   Superseded by #152.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump org.codehaus.mojo:exec-maven-plugin from 1.2.1 to 3.1.1 [olingo-odata4]

2023-11-16 Thread via GitHub


dependabot[bot] opened a new pull request, #152:
URL: https://github.com/apache/olingo-odata4/pull/152

   Bumps 
[org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin)
 from 1.2.1 to 3.1.1.
   
   Release notes
   Sourced from https://github.com/mojohaus/exec-maven-plugin/releases;>org.codehaus.mojo:exec-maven-plugin's
 releases.
   
   3.1.1
   
    New features and improvements
   
   Remove unused killAfter options (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/394;>#394)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   https://redirect.github.com/mojohaus/exec-maven-plugin/issues/391;>#391
 Cope with Thread::stop being unavailable in JDK 20+ (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/393;>#393)
 https://github.com/kriegaex;>@​kriegaex
   Only prefix program output with thread name when running with multiple 
threads (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/157;>#157)
 https://github.com/hankolerd;>@​hankolerd
   https://redirect.github.com/mojohaus/exec-maven-plugin/issues/389;>#389
 Add option 'blockSystemExit' to 'java' mojo (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/390;>#390)
 https://github.com/kriegaex;>@​kriegaex
   Require Maven 3.6.3+ (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/385;>#385)
 https://github.com/slachiewicz;>@​slachiewicz
   Ensure maven.properties can be forwarded to system properties for 
exec:java (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/346;>#346)
 https://github.com/rmannibucau;>@​rmannibucau
   
    Bug Fixes
   
   Fix https://redirect.github.com/mojohaus/exec-maven-plugin/issues/158;>#158
 - Fix non ascii character handling (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/372;>#372)
 https://github.com/jebeaudet;>@​jebeaudet
   https://redirect.github.com/mojohaus/exec-maven-plugin/issues/323;>#323
 exec arguments missing (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/324;>#324)
 https://github.com/bmarwell;>@​bmarwell
   
    Dependency updates
   
   Bump org.codehaus.plexus:plexus-utils from 3.0.16 to 3.0.24 in 
/src/it/projects/java_module-module+mainclass (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/382;>#382)
 https://github.com/dependabot;>@​dependabot
   Bump org.codehaus.plexus:plexus-utils from 3.0.16 to 3.0.24 in 
/src/it/projects/java_module-mainclass (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/380;>#380)
 https://github.com/dependabot;>@​dependabot
   Bump org.codehaus.plexus:plexus-utils from 3.0.16 to 3.0.24 in 
/src/it/projects/java_module-export (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/379;>#379)
 https://github.com/dependabot;>@​dependabot
   Bump org.codehaus.plexus:plexus-utils from 3.0.16 to 3.0.24 in 
/src/it/projects/longModulepath with spaces (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/383;>#383)
 https://github.com/dependabot;>@​dependabot
   Bump org.codehaus.plexus:plexus-utils from 3.0.16 to 3.0.24 in 
/src/it/projects/jigsaw (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/381;>#381)
 https://github.com/dependabot;>@​dependabot
   Bump org.codehaus.plexus:plexus-utils from 3.0.16 to 3.0.24 in 
/src/it/mrm/java_module (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/378;>#378)
 https://github.com/dependabot;>@​dependabot
   Bump org.codehaus.mojo:mojo-parent from 76 to 77 (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/384;>#384)
 https://github.com/dependabot;>@​dependabot
   Require Maven 3.6.3+ (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/385;>#385)
 https://github.com/slachiewicz;>@​slachiewicz
   Bump plexus-utils from 3.5.1 to 4.0.0 (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/368;>#368)
 https://github.com/dependabot;>@​dependabot
   Bump parent from 70 to 76 (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/375;>#375)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   Bump groovy from 3.0.17 to 3.0.18 (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/371;>#371)
 https://github.com/dependabot;>@​dependabot
   Bump groovy from 3.0.16 to 3.0.17 (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/365;>#365)
 https://github.com/dependabot;>@​dependabot
   Bump groovy from 3.0.15 to 3.0.16 (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/363;>#363)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 3.5.0 to 3.5.1 (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/362;>#362)
 https://github.com/dependabot;>@​dependabot
   Bump groovy from 3.0.14 to 3.0.15 (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/361;>#361)
 https://github.com/dependabot;>@​dependabot
   Bump groovy from 3.0.13 to 3.0.14 (https://redirect.github.com/mojohaus/exec-maven-plugin/pull/354;>#354)
 https://github.com/dependabot;>@​dependabot
   Bump mockito-core from 

Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-11-15 Thread via GitHub


mibo commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1812911472

   Quick update, I plan to provide a `5.0.0-ALPHA` version to give all an easy 
option to test the upgrade.
   Most likely the version will be available by this weekend.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-11-14 Thread via GitHub


eduardoraupp commented on PR #151:
URL: https://github.com/apache/olingo-odata4/pull/151#issuecomment-1811137345

   that is fantastic!!!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [OLINGO-1600] Upgrade JDK 17 + Jakarta + Spring (6) [olingo-odata4]

2023-11-06 Thread via GitHub


mibo opened a new pull request, #151:
URL: https://github.com/apache/olingo-odata4/pull/151

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.codehaus.mojo:properties-maven-plugin from 1.0.0 to 1.2.0 [olingo-odata4]

2023-10-24 Thread via GitHub


dependabot[bot] closed pull request #136: Bump 
org.codehaus.mojo:properties-maven-plugin from 1.0.0 to 1.2.0
URL: https://github.com/apache/olingo-odata4/pull/136


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump org.codehaus.mojo:properties-maven-plugin from 1.0.0 to 1.2.1 [olingo-odata4]

2023-10-24 Thread via GitHub


dependabot[bot] opened a new pull request, #150:
URL: https://github.com/apache/olingo-odata4/pull/150

   Bumps 
[org.codehaus.mojo:properties-maven-plugin](https://github.com/mojohaus/properties-maven-plugin)
 from 1.0.0 to 1.2.1.
   
   Release notes
   Sourced from https://github.com/mojohaus/properties-maven-plugin/releases;>org.codehaus.mojo:properties-maven-plugin's
 releases.
   
   1.2.1
   
    New features and improvements
   
   Introduce properties manager for easy implements other properties 
formats (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/113;>#113)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   read-project-properties optimization - set all properties in one call 
(https://redirect.github.com/mojohaus/properties-maven-plugin/pull/112;>#112)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   
    Bug Fixes
   
   Avoid NPE on outputFile checking (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/114;>#114)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   Fix unwarranted circular property definition error from 
CircularDefinitionPreventer (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/110;>#110)
 https://github.com/PayBas;>@​PayBas
   
    Dependency updates
   
   Bump org.codehaus.mojo:mojo-parent from 76 to 77 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/108;>#108)
 https://github.com/dependabot;>@​dependabot
   
    Maintenance
   
   Add documentation about plugin limitations (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/115;>#115)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   Update ReadPropertiesMojo.java to fix javadoc tag (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/107;>#107)
 https://github.com/mykelalvis;>@​mykelalvis
   
   1.2.0
   
    New features and improvements
   
   Add override option to preserve existing properties from 
being overridden (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/103;>#103)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   Require Maven 3.5.4+ (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/99;>#99)
 https://github.com/slachiewicz;>@​slachiewicz
   Accept default value in placeholders for unresolved property values (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/1;>#1)
 https://github.com/diamondT;>@​diamondT
   
    Bug Fixes
   
   Fix for https://redirect.github.com/mojohaus/properties-maven-plugin/issues/27;>#27
 Unwarranted circular property definition (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/28;>#28)
 https://github.com/psenechal-stingray;>@​psenechal-stingray
   
    Dependency updates
   
   Bump parent from 72 to 76 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/104;>#104)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   Require Maven 3.5.4+ (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/99;>#99)
 https://github.com/slachiewicz;>@​slachiewicz
   Bump plexus-utils from 3.5.1 to 4.0.0 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/101;>#101)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 3.5.0 to 3.5.1 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/97;>#97)
 https://github.com/dependabot;>@​dependabot
   Bump mojo-parent from 70 to 72 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/94;>#94)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 3.4.2 to 3.5.0 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/91;>#91)
 https://github.com/dependabot;>@​dependabot
   Bump mojo-parent from 69 to 70 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/87;>#87)
 https://github.com/dependabot;>@​dependabot
   Bump mojo-parent from 67 to 69 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/85;>#85)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 3.4.1 to 3.4.2 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/82;>#82)
 https://github.com/dependabot;>@​dependabot
   Bump release-drafter/release-drafter from 5.19.0 to 5.20.0 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/81;>#81)
 https://github.com/dependabot;>@​dependabot
   Bump actions/setup-java from 2 to 3 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/78;>#78)
 https://github.com/dependabot;>@​dependabot
   Bump mojo-parent from 65 to 67 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/77;>#77)
 https://github.com/dependabot;>@​dependabot
   Bump actions/checkout from 2 to 3 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/72;>#72)
 https://github.com/dependabot;>@​dependabot
   Bump release-drafter/release-drafter from 5.18.1 to 5.19.0 (https://redirect.github.com/mojohaus/properties-maven-plugin/pull/73;>#73)
 

Re: [PR] Bump org.codehaus.mojo:properties-maven-plugin from 1.0.0 to 1.2.0 [olingo-odata4]

2023-10-24 Thread via GitHub


dependabot[bot] commented on PR #136:
URL: https://github.com/apache/olingo-odata4/pull/136#issuecomment-1778408252

   Superseded by #150.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Update some links to https [olingo-site]

2023-10-22 Thread via GitHub


mibo commented on PR #4:
URL: https://github.com/apache/olingo-site/pull/4#issuecomment-1774171447

   Thanks for contribution 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Update some links to https [olingo-site]

2023-10-22 Thread via GitHub


mibo merged PR #4:
URL: https://github.com/apache/olingo-site/pull/4


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Updated Olingo release versions [olingo-site]

2023-10-22 Thread via GitHub


mibo merged PR #5:
URL: https://github.com/apache/olingo-site/pull/5


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1604] Prepare and do release of 2.0.13 [olingo-odata2]

2023-10-22 Thread via GitHub


mibo merged PR #48:
URL: https://github.com/apache/olingo-odata2/pull/48


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1603] Release 4.10.0 [olingo-odata4]

2023-10-22 Thread via GitHub


mibo merged PR #145:
URL: https://github.com/apache/olingo-odata4/pull/145


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Updated Olingo release versions [olingo-site]

2023-10-22 Thread via GitHub


mibo opened a new pull request, #5:
URL: https://github.com/apache/olingo-site/pull/5

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump jackson.version from 2.14.0 to 2.15.3 [olingo-odata4]

2023-10-15 Thread via GitHub


dependabot[bot] opened a new pull request, #148:
URL: https://github.com/apache/olingo-odata4/pull/148

   Bumps `jackson.version` from 2.14.0 to 2.15.3.
   Updates `com.fasterxml.jackson.core:jackson-core` from 2.14.0 to 2.15.3
   
   Commits
   
   https://github.com/FasterXML/jackson-core/commit/80e6c424ef876f31f07d3ce12c68ecd5294fe004;>80e6c42
 [maven-release-plugin] prepare release jackson-core-2.15.3
   https://github.com/FasterXML/jackson-core/commit/18d61c95b221530070e9f2751190c8c078cc8aba;>18d61c9
 Prepare for 2.15.3 release
   https://github.com/FasterXML/jackson-core/commit/372a009c7f40e44166fc9a27f5fbade1ccdf80e6;>372a009
 Update release notes wrt https://redirect.github.com/FasterXML/jackson-core/issues/;>#
   https://github.com/FasterXML/jackson-core/commit/e2d2fc2193f167ddef407d58dbb31af9632061b4;>e2d2fc2
 Call the right filterFinishArray/Object from FilteringParserDelegate (https://redirect.github.com/FasterXML/jackson-core/issues/;>#)
   https://github.com/FasterXML/jackson-core/commit/e5f00049293a8c9c0ee9b72b41c34f2cf5725f73;>e5f0004
 Update Maven wrapper version
   https://github.com/FasterXML/jackson-core/commit/f3da625bb775a36c4b12abb4ed942d77f43214c2;>f3da625
 Further tweaking of release notes
   https://github.com/FasterXML/jackson-core/commit/22fd10878398816d6d03dc438d571034f43b3137;>22fd108
 Add ref to https://redirect.github.com/FasterXML/jackson-core/issues/943;>#943 
in release-notes/VERSION-2.x
   https://github.com/FasterXML/jackson-core/commit/c94fd875fc430cb4b21154bb9d2320cf2693c305;>c94fd87
 2.15.3-SNAPSHOT
   https://github.com/FasterXML/jackson-core/commit/b7e1bb9b928b3a7c3f38b15395a56b0d9624da3c;>b7e1bb9
 [maven-release-plugin] prepare for next development iteration
   https://github.com/FasterXML/jackson-core/commit/1fe0290afdafcce003123f3caea31beb5f13c539;>1fe0290
 [maven-release-plugin] prepare release jackson-core-2.15.2
   Additional commits viewable in https://github.com/FasterXML/jackson-core/compare/jackson-core-2.14.0...jackson-core-2.15.3;>compare
 view
   
   
   
   
   Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.14.0 to 
2.15.3
   
   Commits
   
   See full diff in https://github.com/FasterXML/jackson/commits;>compare view
   
   
   
   
   Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-xml` from 
2.14.0 to 2.15.3
   
   Commits
   
   https://github.com/FasterXML/jackson-dataformat-xml/commit/746bda99b1a3e196f5879c8818681052de1eddc1;>746bda9
 [maven-release-plugin] prepare release jackson-dataformat-xml-2.15.3
   https://github.com/FasterXML/jackson-dataformat-xml/commit/fd589a502a3c9ec4a41f461c089851aa2873bee9;>fd589a5
 Prepare for 2.15.3 release
   https://github.com/FasterXML/jackson-dataformat-xml/commit/1a06d23a8e7ee1781cb26365098aaca4f004e9e2;>1a06d23
 2.15.3-SNAPSHOT
   https://github.com/FasterXML/jackson-dataformat-xml/commit/c96cf3e160b96973535d0341eaf06158820f;>c96cf3e
 [maven-release-plugin] prepare for next development iteration
   https://github.com/FasterXML/jackson-dataformat-xml/commit/129404fa3be53b76503d6831a825605b5a2c365a;>129404f
 [maven-release-plugin] prepare release jackson-dataformat-xml-2.15.2
   https://github.com/FasterXML/jackson-dataformat-xml/commit/37352b3a097765732a33ea9ebf71954e4316d778;>37352b3
 2.15.2 release
   https://github.com/FasterXML/jackson-dataformat-xml/commit/536a3237d26b3092edbbf2a9c9e948ff3f71c632;>536a323
 Fix a test
   https://github.com/FasterXML/jackson-dataformat-xml/commit/0dde658e3b01d07abf45ce84c26978d928310475;>0dde658
 Add a test wrt https://redirect.github.com/FasterXML/jackson-dataformat-xml/issues/579;>#579
   https://github.com/FasterXML/jackson-dataformat-xml/commit/679c7937932680fcb7de57f906bebe25a317b337;>679c793
 Minor test addition
   https://github.com/FasterXML/jackson-dataformat-xml/commit/25c2cac3d8ebe36a287daa5bfe8e6acde73745a5;>25c2cac
 Back to snapshot dep
   Additional commits viewable in https://github.com/FasterXML/jackson-dataformat-xml/compare/jackson-dataformat-xml-2.14.0...jackson-dataformat-xml-2.15.3;>compare
 view
   
   
   
   
   Updates `com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider` from 
2.14.0 to 2.15.3
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - 

[PR] Bump sl4j.version from 1.7.7 to 2.0.9 [olingo-odata4]

2023-10-15 Thread via GitHub


dependabot[bot] opened a new pull request, #149:
URL: https://github.com/apache/olingo-odata4/pull/149

   Bumps `sl4j.version` from 1.7.7 to 2.0.9.
   Updates `org.slf4j:slf4j-api` from 1.7.7 to 2.0.9
   
   Updates `org.slf4j:slf4j-simple` from 1.7.7 to 2.0.9
   
   Updates `org.slf4j:slf4j-log4j12` from 1.7.36 to 2.0.9
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump org.codehaus.mojo:exec-maven-plugin from 1.2.1 to 3.1.0 [olingo-odata4]

2023-10-15 Thread via GitHub


dependabot[bot] opened a new pull request, #147:
URL: https://github.com/apache/olingo-odata4/pull/147

   Bumps 
[org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin)
 from 1.2.1 to 3.1.0.
   
   Release notes
   Sourced from https://github.com/mojohaus/exec-maven-plugin/releases;>org.codehaus.mojo:exec-maven-plugin's
 releases.
   
   3.1.0
   
    New features and improvements
   
   Require Maven 3.2.5 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/319;>#319)
 https://github.com/slawekjaranowski;>@​slawekjaranowski
   Support stream inheritance for the forked process, fixes https://redirect.github.com/mojohaus/exec-maven-plugin/issues/71;>#71 
(https://redirect.github.com/mojohaus/exec-maven-plugin/issues/196;>#196)
 https://github.com/gnodet;>@​gnodet
   
    Bug Fixes
   
   Fix NullPointerException when using plugin dependencies in version 1.6.0 
(https://redirect.github.com/mojohaus/exec-maven-plugin/issues/77;>#77)
 https://github.com/jonasrutishauser;>@​jonasrutishauser
   preload common pool - issue https://redirect.github.com/mojohaus/exec-maven-plugin/issues/198;>#198
 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/279;>#279)
 https://github.com/rmannibucau;>@​rmannibucau
   fix handling of LongModulePathArgument and LongClassPathArgument (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/172;>#172)
 https://github.com/jan-feindt;>@​jan-feindt
   Do not drop environment variables that contain '=' in their value, or 
have no value.  (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/97;>#97)
 https://github.com/AlanUnderwood;>@​AlanUnderwood
   Empty argument tag should add empty string instead of null (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/150;>#150)
 https://github.com/Anders-E;>@​Anders-E
   Fixes https://redirect.github.com/mojohaus/exec-maven-plugin/issues/160;>#160,
 ensure the java classloader is a child first one and supports to excludes some 
gathered classpath element to solve manually conflicts (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/161;>#161)
 https://github.com/rmannibucau;>@​rmannibucau
   
    Dependency updates
   
   Bump commons-io from 1.1 to 2.7 in /src/it/projects/project6/project5lib 
(https://redirect.github.com/mojohaus/exec-maven-plugin/issues/320;>#320)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in 
/src/it/projects/java_module-mainclass (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/313;>#313)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in /src/it/projects/longModulepath 
with spaces (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/312;>#312)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in 
/src/it/projects/java_module-module+mainclass (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/311;>#311)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in /src/it/projects/jigsaw (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/310;>#310)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in /src/it/mrm/java_module (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/309;>#309)
 https://github.com/dependabot;>@​dependabot
   Bump mojo-parent from 68 to 69 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/314;>#314)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in 
/src/it/projects/java_module-export (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/308;>#308)
 https://github.com/dependabot;>@​dependabot
   Bump mrm-maven-plugin from 1.3.0 to 1.4.1 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/307;>#307)
 https://github.com/dependabot;>@​dependabot
   Bump mojo-parent from 67 to 68 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/305;>#305)
 https://github.com/dependabot;>@​dependabot
   Bump groovy from 3.0.10 to 3.0.11 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/302;>#302)
 https://github.com/dependabot;>@​dependabot
   Bump maven-invoker-plugin from 3.2.2 to 3.3.0 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/301;>#301)
 https://github.com/dependabot;>@​dependabot
   Bump mockito-core from 4.5.1 to 4.6.1 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/303;>#303)
 https://github.com/dependabot;>@​dependabot
   Bump plexus-utils from 3.4.1 to 3.4.2 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/299;>#299)
 https://github.com/dependabot;>@​dependabot
   Bump release-drafter/release-drafter from 5.19.0 to 5.20.0 (https://redirect.github.com/mojohaus/exec-maven-plugin/issues/296;>#296)
 https://github.com/dependabot;>@​dependabot
   Bump mockito-core from 4.5.0 to 4.5.1 

[PR] Bump pax.exam.version from 4.13.1 to 4.13.5 [olingo-odata4]

2023-10-15 Thread via GitHub


dependabot[bot] opened a new pull request, #146:
URL: https://github.com/apache/olingo-odata4/pull/146

   Bumps `pax.exam.version` from 4.13.1 to 4.13.5.
   Updates `org.ops4j.pax.exam:pax-exam-junit4` from 4.13.1 to 4.13.5
   
   Updates `org.ops4j.pax.exam:pax-exam` from 4.13.1 to 4.13.5
   
   Updates `org.ops4j.pax.exam:pax-exam-container-karaf` from 4.13.1 to 4.13.5
   
   Updates `org.ops4j.pax.exam:pax-exam-link-mvn` from 4.13.1 to 4.13.5
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for simple IN expression. [olingo-odata4]

2023-10-15 Thread via GitHub


mibo commented on PR #49:
URL: https://github.com/apache/olingo-odata4/pull/49#issuecomment-1763365923

   Hi @aanavaneeth, 
   
   Unfortunately, I did not have enough time to resolve the merge conflicts and 
to verify that the change conforms to the specification.
   
   Hence, I decided to not merge it for the ongoing 4.10.0 release.
   However, if someone (maybe you or @yz271544 ) can resolve the merge 
conflicts, I will clarify regarding spec conformity.
   If everything is fine, it can be part of the 5.0.0 release planned for 
Nov/Dec this year.
   
   Kind Regards, Michael 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add support for simple IN expression. [olingo-odata4]

2023-10-15 Thread via GitHub


aanavaneeth commented on PR #49:
URL: https://github.com/apache/olingo-odata4/pull/49#issuecomment-1763315950

   Can this be merged in 4.10.0? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] upgrade jdk and java ee [olingo-odata4]

2023-10-15 Thread via GitHub


mibo commented on PR #130:
URL: https://github.com/apache/olingo-odata4/pull/130#issuecomment-1763308370

   @rspilker Thanks for asking, but currently there is nothing that the 
community can do.
   
   The 4.10.0 (see #145) release is ongoing and hopefully be done by the end of 
October.
   Afterward I will invest time here, most likely merging the PR and preparing 
the 'upgrade' release with the major version bump to 5.0.0 
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1603] Release 4.10.0 [olingo-odata4]

2023-10-14 Thread via GitHub


mibo closed pull request #145: [OLINGO-1603] Release 4.10.0
URL: https://github.com/apache/olingo-odata4/pull/145


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [OLINGO-1603] Release 4.10.0 [olingo-odata4]

2023-10-14 Thread via GitHub


mibo opened a new pull request, #145:
URL: https://github.com/apache/olingo-odata4/pull/145

   Do release of Olingo 4.10.0


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] OData4HttpHandler does not honor split while processing request [olingo-odata4]

2023-10-13 Thread via GitHub


mibo merged PR #12:
URL: https://github.com/apache/olingo-odata4/pull/12


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Update ODataErrorResponseChecker.java [olingo-odata4]

2023-10-13 Thread via GitHub


mibo commented on PR #19:
URL: https://github.com/apache/olingo-odata4/pull/19#issuecomment-1762152336

   Fixed with OLINGO-1190, see ac02329d


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Update ODataErrorResponseChecker.java [olingo-odata4]

2023-10-13 Thread via GitHub


mibo closed pull request #19: Update ODataErrorResponseChecker.java
URL: https://github.com/apache/olingo-odata4/pull/19


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Update ErrorTest.java [olingo-odata4]

2023-10-13 Thread via GitHub


mibo closed pull request #23: Update ErrorTest.java
URL: https://github.com/apache/olingo-odata4/pull/23


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Update ErrorTest.java [olingo-odata4]

2023-10-13 Thread via GitHub


mibo commented on PR #23:
URL: https://github.com/apache/olingo-odata4/pull/23#issuecomment-1762149655

   It is intended to not expose internal server error messages.
   See [Improper Error 
Handling](https://owasp.org/www-community/Improper_Error_Handling).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] OpenType attribute is missing in meta serializer [olingo-odata4]

2023-10-13 Thread via GitHub


mibo closed pull request #27: OpenType attribute is missing in meta serializer
URL: https://github.com/apache/olingo-odata4/pull/27


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] OpenType attribute is missing in meta serializer [olingo-odata4]

2023-10-13 Thread via GitHub


mibo commented on PR #27:
URL: https://github.com/apache/olingo-odata4/pull/27#issuecomment-1762147884

   Fixed, see 
https://github.com/apache/olingo-odata4/commit/d0f52977e66645f79ddfe22aff17be3be22e9acb


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [OLINGO-1167] Reference with fully qualified name [olingo-odata4]

2023-10-13 Thread via GitHub


mibo closed pull request #22: [OLINGO-1167] Reference with fully qualified name
URL: https://github.com/apache/olingo-odata4/pull/22


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



  1   2   3   >