Re: [PR] Fixes issue with AzureBlobStore blockid incorrectly using base64url encoding [jclouds]

2024-08-04 Thread via GitHub


gaul commented on PR #208:
URL: https://github.com/apache/jclouds/pull/208#issuecomment-2267365074

   Thank you for your contribution @twick00!  I approved the JIRA request.  I 
only use the mailing list not IRC or Slack.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Fixes issue with AzureBlobStore blockid incorrectly using base64url encoding [jclouds]

2024-08-04 Thread via GitHub


gaul merged PR #208:
URL: https://github.com/apache/jclouds/pull/208


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Fixes issue with AzureBlobStore blockid incorrectly using base64url encoding [jclouds]

2024-08-02 Thread via GitHub


twick00 commented on PR #208:
URL: https://github.com/apache/jclouds/pull/208#issuecomment-2266137962

   I know this is not the correct venue for this but I also tried to sign up to 
report the issue via jclouds' Jira but nobody has responded to that request in 
the last week. I also tried contacting the IRC mentioned on the [community 
page](https://jclouds.apache.org/community/) and there is practically nobody in 
there.
   
   I would love to help contribute more to this project but this seems to be 
the only possible option right now.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Fixes issue with AzureBlobStore blockid incorrectly using base64url encoding [jclouds]

2024-08-02 Thread via GitHub


twick00 commented on code in PR #208:
URL: https://github.com/apache/jclouds/pull/208#discussion_r1702309096


##
providers/azureblob/src/main/java/org/jclouds/azureblob/blobstore/AzureBlobStore.java:
##
@@ -440,9 +440,10 @@ public String completeMultipartUpload(MultipartUpload mpu, 
List p
   return sync.putBlockList(mpu.containerName(), azureBlob, blocks.build());
}
 
-   static String makeBlockId(int partNumber) {
-   return BaseEncoding.base64Url().encode(Ints.toByteArray(partNumber));
-   }
+  static String makeBlockId(int partNumber) {
+  // Azure expects a base64-encoded string ONLY. It does not support 
base64url encoding. 
+ return BaseEncoding.base64().encode(Ints.toByteArray(partNumber));

Review Comment:
   The url encoding is handled downstream by `org.jclouds.util.Strings2`'s 
`urlEncode` method.



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Fixes issue with AzureBlobStore blockid incorrectly using base64url encoding [jclouds]

2024-08-02 Thread via GitHub


twick00 opened a new pull request, #208:
URL: https://github.com/apache/jclouds/pull/208

   Despite [JCLOUDS-1615](https://issues.apache.org/jira/browse/JCLOUDS-1615), 
using base64url encoded values is not supported by the [Put 
Block](https://learn.microsoft.com/en-us/rest/api/storageservices/put-block) 
endpoint.
   
   When attempting to query this endpoint with `partNumber` set to `248` (which 
is `blockid: -A==`) I received this error:
   
   ```xml
   InvalidQueryParameterValueValue 
for one of the query parameters specified in the request URI is invalid.
   RequestId:632a8422-501e-006c-3db4-e238fb00
   
Time:2024-07-30T19:10:34.4638223Zblockid-A==Not
 a valid base64 string.
   ```
   
   I have confirmed directly with Microsoft that the correct value here is a 
standard base64 string that is url encoded, which should not be confused with 
base64url encoding which is NOT supported.
   
   As far as the original ticket 
([JCLOUDS-1615](https://issues.apache.org/jira/browse/JCLOUDS-1615)) which 
mentions an error related to  `+` reporting as not a valid base64 string, I 
have tried to replicate the issue and I am unable to do so. My guess is that 
this was a bug that existed on Microsoft's side and they have since fixed it. 
Either way, from their own words, it should be a base64 string. `+` and `/` are 
supported.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Fix ContextBuilder bug when using credentials supplier with azureblob [jclouds]

2024-07-29 Thread via GitHub


maxjaspersmiley opened a new pull request, #207:
URL: https://github.com/apache/jclouds/pull/207

   Azure cloud providers specifically use an identity as part of their 
endpoint. 
   
   When attempting to use a ContextBuilder with the (new-ish?) 
credentialsSupplier option, we were seeing errors building an endpoint due to 
string interpolation failures, since the Azure module was not expecting a 
Supplier (rather, a specific `identity` and `credential`)
   
   This is not a comprehensive fix (any subsequent change to the identity will 
not be reflected in the endpoint going forward) but partially addresses a 
serious problem (unable to use ContextBuilder's `credentialsSupplier` for Azure 
providers)
   
   I plan on a more thorough change that will allow on-the-fly changes to an 
Azure provider's identity/credential, but this is more difficult. I believe 
I'll need to find every place where the endpoint is referenced and handle the 
case where a credentialsSupplier is being used (IOW, every place where the 
endpoint must be generated on the fly). 
   
   Any pointers or feedback about the above is appreciated!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Modify S3 endpoint regex pattern to support VPC endpoints. [jclouds]

2024-07-27 Thread via GitHub


gaul commented on PR #206:
URL: https://github.com/apache/jclouds/pull/206#issuecomment-2253809094

   Thank you for your contribution @jcalcote!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Modify S3 endpoint regex pattern to support VPC endpoints. [jclouds]

2024-07-27 Thread via GitHub


gaul merged PR #206:
URL: https://github.com/apache/jclouds/pull/206


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Modify S3 endpoint regex pattern to support VPC endpoints. [jclouds]

2024-07-25 Thread via GitHub


jcalcote commented on code in PR #206:
URL: https://github.com/apache/jclouds/pull/206#discussion_r1692098102


##
apis/s3/src/main/java/org/jclouds/s3/filters/AwsHostNameUtils.java:
##
@@ -26,7 +26,7 @@
 
 public class AwsHostNameUtils {
 
-   private static final Pattern S3_ENDPOINT_PATTERN = 
Pattern.compile("^(?:.+\\.)?s3[.-]([a-z0-9-]+)$");
+   private static final Pattern S3_ENDPOINT_PATTERN = 
Pattern.compile("^(?:.+\\.)?s3[.\\-]([a-z0-9-]+)(?>\\.[a-z0-9-]+)*$");

Review Comment:
   Done.



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Modify S3 endpoint regex pattern to support VPC endpoints. [jclouds]

2024-07-16 Thread via GitHub


gaul commented on code in PR #206:
URL: https://github.com/apache/jclouds/pull/206#discussion_r1679459404


##
apis/s3/src/main/java/org/jclouds/s3/filters/AwsHostNameUtils.java:
##
@@ -26,7 +26,7 @@
 
 public class AwsHostNameUtils {
 
-   private static final Pattern S3_ENDPOINT_PATTERN = 
Pattern.compile("^(?:.+\\.)?s3[.-]([a-z0-9-]+)$");
+   private static final Pattern S3_ENDPOINT_PATTERN = 
Pattern.compile("^(?:.+\\.)?s3[.\\-]([a-z0-9-]+)(?>\\.[a-z0-9-]+)*$");

Review Comment:
   Can you add some kind of unit test which exercises 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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Modify S3 endpoint regex pattern to support VPC endpoints. [jclouds]

2024-07-03 Thread via GitHub


jcalcote opened a new pull request, #206:
URL: https://github.com/apache/jclouds/pull/206

   Virtual private clouds are a relatively new feature of AWS. The jclouds AWS 
endpoint regex was not originally designed to be able to handle VPC formatted 
endpoints. This new expanded regex does the trick.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] setup-java v3 -> v4 [jclouds]

2024-05-11 Thread via GitHub


gaul commented on PR #205:
URL: https://github.com/apache/jclouds/pull/205#issuecomment-2106057353

   Thank you for your contribution @sullis!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] setup-java v3 -> v4 [jclouds]

2024-05-11 Thread via GitHub


gaul merged PR #205:
URL: https://github.com/apache/jclouds/pull/205


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] setup-java v3 -> v4 [jclouds]

2024-05-07 Thread via GitHub


sullis opened a new pull request, #205:
URL: https://github.com/apache/jclouds/pull/205

   
   v4 is the latest version of setup-java
   
   
   


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] more validation for containerName and blobKey to avoid access escape [jclouds]

2024-05-06 Thread via GitHub


gaul commented on PR #203:
URL: https://github.com/apache/jclouds/pull/203#issuecomment-2096042672

   Thank you for your contribution @jixinchi!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] more validation for containerName and blobKey to avoid access escape [jclouds]

2024-05-06 Thread via GitHub


gaul merged PR #203:
URL: https://github.com/apache/jclouds/pull/203


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] more validation for containerName and blobKey to avoid access escape [jclouds]

2024-05-06 Thread via GitHub


jixinchi commented on PR #203:
URL: https://github.com/apache/jclouds/pull/203#issuecomment-2095591136

   @gaul Could you please review the new commits?


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1635: Add COOL and COLD to Tier [jclouds]

2024-04-20 Thread via GitHub


gaul merged PR #204:
URL: https://github.com/apache/jclouds/pull/204


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] more validation for containerName and blobKey to avoid access escape [jclouds]

2024-04-14 Thread via GitHub


jixinchi commented on code in PR #203:
URL: https://github.com/apache/jclouds/pull/203#discussion_r1565125481


##
apis/filesystem/src/main/java/org/jclouds/filesystem/predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java:
##
@@ -38,6 +38,8 @@ public void validate(String name) throws 
IllegalArgumentException {
 //blobkey cannot start with / (or \ in Windows) character
 if (name.startsWith("\\") || name.startsWith("/"))
 throw new IllegalArgumentException("Blob key '" + name + "' cannot 
start with \\ or /");
+if (name.contains("../"))
+throw new IllegalArgumentException("Blob key '" + name + "' cannot 
contain ../");

Review Comment:
   I think `..foo` should be allowed. I tried several object storage services, 
such as gcloud and aliyun oss, they all allow `..foo` as object key.



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] more validation for containerName and blobKey to avoid access escape [jclouds]

2024-04-14 Thread via GitHub


jixinchi commented on code in PR #203:
URL: https://github.com/apache/jclouds/pull/203#discussion_r1565116204


##
apis/filesystem/src/main/java/org/jclouds/filesystem/strategy/internal/FilesystemStorageStrategyImpl.java:
##
@@ -691,6 +698,8 @@ public BlobAccess getBlobAccess(String containerName, 
String blobName) {
 
@Override
public void setBlobAccess(String container, String name, BlobAccess access) 
{
+  filesystemContainerNameValidator.validate(container);
+  filesystemBlobKeyValidator.validate(name);

Review Comment:
   These methods have been applied by the validators. I just added some missing 
ones.



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1629: Add COOL and COLD to Tier [jclouds]

2024-04-14 Thread via GitHub


gaul commented on PR #204:
URL: https://github.com/apache/jclouds/pull/204#issuecomment-2053984948

   @timuralp what do you think?


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1631: fix AWSRequestAuthorizeSignatureV4 when query contains special chars [jclouds]

2024-04-14 Thread via GitHub


gaul merged PR #200:
URL: https://github.com/apache/jclouds/pull/200


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1631: fix AWSRequestAuthorizeSignatureV4 when query contains special chars [jclouds]

2024-04-14 Thread via GitHub


gaul commented on PR #200:
URL: https://github.com/apache/jclouds/pull/200#issuecomment-2053967281

   Thank you for your contribution @Maxim-Gadalov!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] more validation for containerName and blobKey to avoid access escape [jclouds]

2024-04-14 Thread via GitHub


gaul commented on code in PR #203:
URL: https://github.com/apache/jclouds/pull/203#discussion_r1564561709


##
apis/filesystem/src/main/java/org/jclouds/filesystem/predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java:
##
@@ -38,6 +38,8 @@ public void validate(String name) throws 
IllegalArgumentException {
 //blobkey cannot start with / (or \ in Windows) character
 if (name.startsWith("\\") || name.startsWith("/"))
 throw new IllegalArgumentException("Blob key '" + name + "' cannot 
start with \\ or /");
+if (name.contains("../"))
+throw new IllegalArgumentException("Blob key '" + name + "' cannot 
contain ../");

Review Comment:
   Why is this different than the container name validator?  For robustness 
should this tokenize the path via `/` then check each component to see if one 
contains `.` or `..`?  This would allow keys like `..foo` to work.



##
apis/filesystem/src/main/java/org/jclouds/filesystem/strategy/internal/FilesystemStorageStrategyImpl.java:
##
@@ -691,6 +698,8 @@ public BlobAccess getBlobAccess(String containerName, 
String blobName) {
 
@Override
public void setBlobAccess(String container, String name, BlobAccess access) 
{
+  filesystemContainerNameValidator.validate(container);
+  filesystemBlobKeyValidator.validate(name);

Review Comment:
   Should this also apply to `getBlobAccess`, `putBlob`, and `removeBlob`?  
`getBlobKeysInsideContainer` too I guess.



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] more validation for containerName and blobKey to avoid access escape [jclouds]

2024-04-07 Thread via GitHub


jixinchi commented on code in PR #203:
URL: https://github.com/apache/jclouds/pull/203#discussion_r1555153781


##
apis/filesystem/src/main/java/org/jclouds/filesystem/predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java:
##
@@ -38,6 +38,8 @@ public void validate(String name) throws 
IllegalArgumentException {
 //blobkey cannot start with / (or \ in Windows) character
 if (name.startsWith("\\") || name.startsWith("/"))
 throw new IllegalArgumentException("Blob key '" + name + "' cannot 
start with \\ or /");
+if (name.contains("../"))
+throw new IllegalArgumentException("Blob key '" + name + "' cannot 
contains ../");

Review Comment:
   done



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] more validation for containerName and blobKey to avoid access escape [jclouds]

2024-04-03 Thread via GitHub


nacx commented on code in PR #203:
URL: https://github.com/apache/jclouds/pull/203#discussion_r1549429762


##
apis/filesystem/src/main/java/org/jclouds/filesystem/predicates/validators/internal/FilesystemBlobKeyValidatorImpl.java:
##
@@ -38,6 +38,8 @@ public void validate(String name) throws 
IllegalArgumentException {
 //blobkey cannot start with / (or \ in Windows) character
 if (name.startsWith("\\") || name.startsWith("/"))
 throw new IllegalArgumentException("Blob key '" + name + "' cannot 
start with \\ or /");
+if (name.contains("../"))
+throw new IllegalArgumentException("Blob key '" + name + "' cannot 
contains ../");

Review Comment:
   super nit
   ```suggestion
   throw new IllegalArgumentException("Blob key '" + name + "' 
cannot contain ../");
   ```



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] more validation for containerName and blobKey to avoid access escape [jclouds]

2024-04-03 Thread via GitHub


jixinchi opened a new pull request, #203:
URL: https://github.com/apache/jclouds/pull/203

   (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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] For EC2, Introduce "allocationId" to IP Address and a new describeRouteTablesWithFilter method for searching RouteTables [jclouds]

2024-04-02 Thread via GitHub


nacx commented on code in PR #202:
URL: https://github.com/apache/jclouds/pull/202#discussion_r1547349446


##
apis/ec2/src/main/java/org/jclouds/ec2/features/ElasticIPAddressApi.java:
##
@@ -144,6 +144,28 @@ void releaseAddressInRegion(
 @EndpointParam(parser = RegionToEndpointOrProviderIfNull.class) 
@Nullable String region,
 @FormParam("PublicIp") String publicIp);
 
+   /**
+* Releases an elastic IP address associated with your identity.
+*
+* @param region
+*   Elastic IP addresses are tied to a Region and cannot be mapped 
across Regions.
+* @param allocationId
+*   The Allocation ID (e.g., eipalloc-0ca038968f2a2c986) of the IP 
address that you are releasing from your identity.
+*
+* @see #allocateAddress
+* @see #describeAddresses
+* @see #associateAddress
+* @see #disassociateAddress
+* @see http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/index.html?ApiReference-query-ReleaseAddress.html;
+*/
+   @Named("ReleaseAddress")
+   @POST
+   @Path("/")
+   @FormParams(keys = ACTION, values = "ReleaseAddress")
+   void releaseAddressInRegionByAllocationId(
+   @EndpointParam(parser = RegionToEndpointOrProviderIfNull.class) 
@Nullable String region,
+   @FormParam("AllocationId") String allocationId);

Review Comment:
   Can you please add the corresponding unit test to the 
`ElasticIPAddressApiTest`?



##
providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/features/RouteTableApi.java:
##
@@ -276,4 +282,21 @@ boolean deleteRoute(
FluentIterable describeRouteTables(
   @EndpointParam(parser = RegionToEndpointOrProviderIfNull.class) 
@Nullable String region,
   @BinderParam(BindRouteTableIdsToIndexedFormParams.class) String... 
routeTableIds);
+
+   /**
+* Describes route tables.
+* @param region The region to search for route tables.
+* @param filter One or more filters utilized to search for RouteTable 
instances
+*
+* @link https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeRouteTables.html;>...
+*/
+   @Named("DescribeRouteTables")
+   @POST
+   @FormParams(keys = ACTION, values = "DescribeRouteTables")
+   @XMLResponseParser(DescribeRouteTablesResponseHandler.class)
+   @Fallback(Fallbacks.EmptyFluentIterableOnNotFoundOr404.class)
+   FluentIterable describeRouteTablesWithFilter(
+   @EndpointParam(parser = RegionToEndpointOrProviderIfNull.class) 
@Nullable String region,
+   @BinderParam(BindFiltersToIndexedFormParams.class) Multimap filter);

Review Comment:
   Can you please add the corresponding unit tests to the 
`RouteTableApiMockTest`?



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] For EC2, Introduce "allocationId" to IP Address and a new describeRouteTablesWithFilter method for searching RouteTables [jclouds]

2024-03-24 Thread via GitHub


qpointsystems opened a new pull request, #202:
URL: https://github.com/apache/jclouds/pull/202

   Hello JClouds!  My first pull request.  Wanted to try and get this in as I 
saw activity picking up on the project recently.
   
   The PublicIPInstanceIdPair was missing the "allocationId" attribute and I 
had a need for that for tracking purposes.
   
   The RouteTable object lacked a method for searching "WithFilter" which I had 
a need for.  Tried to follow the projects existing pattern for this sort of 
thing.
   
   Cheers!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1631: fix AWSRequestAuthorizeSignatureV4 when query contains special chars [jclouds]

2024-03-20 Thread via GitHub


Maxim-Gadalov commented on code in PR #200:
URL: https://github.com/apache/jclouds/pull/200#discussion_r1532382993


##
providers/aws-s3/src/test/java/org/jclouds/aws/s3/filter/AwsRequestAuthorizeSignatureV4Test.java:
##
@@ -0,0 +1,53 @@
+package org.jclouds.aws.s3.filter;

Review Comment:
   added



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1630: Handle URI template properly with opened curve bracket [jclouds]

2024-03-20 Thread via GitHub


nacx merged PR #199:
URL: https://github.com/apache/jclouds/pull/199


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1631: fix AWSRequestAuthorizeSignatureV4 when query contains special chars [jclouds]

2024-03-20 Thread via GitHub


gaul commented on code in PR #200:
URL: https://github.com/apache/jclouds/pull/200#discussion_r1532106105


##
providers/aws-s3/src/test/java/org/jclouds/aws/s3/filter/AwsRequestAuthorizeSignatureV4Test.java:
##
@@ -0,0 +1,53 @@
+package org.jclouds.aws.s3.filter;

Review Comment:
   Please add license header to resolve CI failure.



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1632: GCP BlobStore fails to put a blob if blob name contains non ASCII characters [jclouds]

2024-03-20 Thread via GitHub


gaul commented on PR #201:
URL: https://github.com/apache/jclouds/pull/201#issuecomment-2009593203

   Thank you for your contribution @astsiapanay!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1632: GCP BlobStore fails to put a blob if blob name contains non ASCII characters [jclouds]

2024-03-20 Thread via GitHub


gaul merged PR #201:
URL: https://github.com/apache/jclouds/pull/201


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] JCLOUDS-1632: GCP BlobStore fails to put a blob if blob name contains non ASCII characters [jclouds]

2024-03-20 Thread via GitHub


astsiapanay opened a new pull request, #201:
URL: https://github.com/apache/jclouds/pull/201

   https://issues.apache.org/jira/browse/JCLOUDS-1632


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] JCLOUDS-1631: fix AWSRequestAuthorizeSignatureV4 when query contains special chars [jclouds]

2024-03-18 Thread via GitHub


Maxim-Gadalov opened a new pull request, #200:
URL: https://github.com/apache/jclouds/pull/200

   … special chars


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] JCLOUDS-1630: Handle URI template properly with opened curve bracket [jclouds]

2024-03-18 Thread via GitHub


Maxim-Gadalov opened a new pull request, #199:
URL: https://github.com/apache/jclouds/pull/199

   https://issues.apache.org/jira/projects/JCLOUDS/issues/JCLOUDS-1630


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1628: Remove Netty driver [jclouds]

2024-02-26 Thread via GitHub


gaul merged PR #198:
URL: https://github.com/apache/jclouds/pull/198


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1629: Upgrade to Guice 7.0.0 [jclouds]

2024-02-25 Thread via GitHub


gaul merged PR #197:
URL: https://github.com/apache/jclouds/pull/197


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1629: Upgrade to Guice 7.0.0 [jclouds]

2024-02-24 Thread via GitHub


basil commented on code in PR #197:
URL: https://github.com/apache/jclouds/pull/197#discussion_r1501572124


##
project/pom.xml:
##
@@ -223,7 +223,7 @@
 
 2.10.1
 32.0.0-jre
-5.1.0
+7.0.0

Review Comment:
   > I don't have the time or the interest
   
   Neither do I.



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1629: Upgrade to Guice 7.0.0 [jclouds]

2024-02-23 Thread via GitHub


gaul commented on code in PR #197:
URL: https://github.com/apache/jclouds/pull/197#discussion_r1501345917


##
project/pom.xml:
##
@@ -223,7 +223,7 @@
 
 2.10.1
 32.0.0-jre
-5.1.0
+7.0.0

Review Comment:
   You are welcome to investigate the failures with 6.0.0 but I don't have the 
time or the interest:
   
   ```
jclouds-compute: Compilation failure
   [ERROR] 
/home/gaul/work/jclouds/compute/src/main/java/org/jclouds/compute/config/BaseComputeServiceContextModule.java:[9
   2,71] no suitable method found for 
toProvider(java.lang.Class)
   [ERROR] method 
com.google.inject.binder.LinkedBindingBuilder.toProvider(com.google.inject.Provider) is not applicable
   [ERROR]   (argument mismatch; 
java.lang.Class cannot be converted to com.google.inject.Provider)
   [ERROR] method 
com.google.inject.binder.LinkedBindingBuilder.toProvider(javax.inject.Provider) is not applicable
   [ERROR]   (argument mismatch; 
java.lang.Class
 cannot be converted to javax.inject.Provider)
   [ERROR] method 
com.google.inject.binder.LinkedBindingBuilder.toProvider(java.lang.Class>) 
is not applicable
   [ERROR]   (argument mismatch; 
java.lang.Class
 cannot be converted to java.lang.Class>)
   [ERROR] method 
com.google.inject.binder.LinkedBindingBuilder.toProvider(com.google.inject.TypeLiteral>) 
is not applicable
   [ERROR]   (argument mismatch; 
java.lang.Class
 cannot be converted to com.google.inject.TypeLiteral>)
   [ERROR] method 
com.google.inject.binder.LinkedBindingBuilder.toProvider(com.google.inject.Key>) 
is not applicable
   [ERROR]   (argument mismatch; 
java.lang.Class
 cannot be converted to com.google.inject.Key>)
   ```



-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1629: Upgrade to Guice 7.0.0 [jclouds]

2024-02-23 Thread via GitHub


basil commented on code in PR #197:
URL: https://github.com/apache/jclouds/pull/197#discussion_r1501311432


##
project/pom.xml:
##
@@ -223,7 +223,7 @@
 
 2.10.1
 32.0.0-jre
-5.1.0
+7.0.0

Review Comment:
   ```suggestion
   6.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: notifications-unsubscr...@jclouds.apache.org

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



[PR] JCLOUDS-1629: Upgrade to Guice 7.0.0 [jclouds]

2024-02-23 Thread via GitHub


gaul opened a new pull request, #197:
URL: https://github.com/apache/jclouds/pull/197

   This also changes from javax to jakarta annotations.  @basil


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1627: Upgrade to Jakarta packages [jclouds]

2024-02-23 Thread via GitHub


gaul merged PR #196:
URL: https://github.com/apache/jclouds/pull/196


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1627: Upgrade to Jakarta packages [jclouds]

2024-02-23 Thread via GitHub


gaul commented on PR #196:
URL: https://github.com/apache/jclouds/pull/196#issuecomment-1960958222

   Not using the latest versions since they are not compatible with Java 8.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] JCLOUDS-1627: Upgrade to Jakarta packages [jclouds]

2024-02-23 Thread via GitHub


gaul opened a new pull request, #196:
URL: https://github.com/apache/jclouds/pull/196

   This resolves an issue with newer Guice versions.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Upgrade to Netty 4.1.107 [jclouds]

2024-02-20 Thread via GitHub


gaul commented on PR #195:
URL: https://github.com/apache/jclouds/pull/195#issuecomment-1954042627

   This has a bunch of API changes.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Upgrade to Netty 4.1.107 [jclouds]

2024-02-20 Thread via GitHub


gaul closed pull request #195: Upgrade to Netty 4.1.107
URL: https://github.com/apache/jclouds/pull/195


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump testng from 7.5 to 7.5.1 in /project [jclouds]

2024-02-20 Thread via GitHub


gaul merged PR #171:
URL: https://github.com/apache/jclouds/pull/171


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump testng from 7.5 to 7.5.1 in /project [jclouds]

2024-02-20 Thread via GitHub


gaul commented on PR #171:
URL: https://github.com/apache/jclouds/pull/171#issuecomment-1954002794

   @dependabot rebase


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] fixes bug #1519 [jclouds]

2024-02-18 Thread via GitHub


gaul merged PR #190:
URL: https://github.com/apache/jclouds/pull/190


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] fixes bug #1519 [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #190:
URL: https://github.com/apache/jclouds/pull/190#issuecomment-1951571903

   Thank you for your contribution @davidsenk!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] fixes bug #1519 [jclouds]

2024-02-18 Thread via GitHub


davidsenk commented on PR #190:
URL: https://github.com/apache/jclouds/pull/190#issuecomment-1951557000

   @gaul resolved, https://github.com/davidsenk/jclouds/actions/runs/7953299249 
   
   there were a few bad assumptions in the test requests. YOUR_ACCOUNT_ID is 
returned in authorize_account_response.json, which is then not used in a few of 
the *_request.json payloads.
   
   Additionally, the mockwebserver does not get the content-type headers set 
throughout the test. The "easiest" solution is to fix it so that the mock 
assert is only looking for application/unknown (default in mockhttpserver).


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] fixes bug #1519 [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #190:
URL: https://github.com/apache/jclouds/pull/190#issuecomment-1951512072

   Looks like some kind of over-strict ordering:
   
   ```
   
expected:<{"[accountId":"ACCOUNT_ID","bucketName":"any_name_you_pick","bucketType":"allPrivate]"}>
   but 
was:<{"[bucketName":"any_name_you_pick","bucketType":"allPrivate","accountId":"YOUR_ACCOUNT_ID]"}>
   ```


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Upgrade to Netty 4.1.107 [jclouds]

2024-02-18 Thread via GitHub


gaul opened a new pull request, #195:
URL: https://github.com/apache/jclouds/pull/195

   This resolves several security issues with versions earlier than 4.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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump testng from 7.5 to 7.5.1 in /project [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #171:
URL: https://github.com/apache/jclouds/pull/171#issuecomment-1951316069

   7.5.1 is the last version compatible with JDK 8.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Upgrade testng to 7.8.0 [jclouds]

2024-02-18 Thread via GitHub


gaul closed pull request #194: Upgrade testng to 7.8.0
URL: https://github.com/apache/jclouds/pull/194


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Upgrade testng to 7.8.0 [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #194:
URL: https://github.com/apache/jclouds/pull/194#issuecomment-1951309760

   Requires JDK 11: https://testng.org/#_requirements


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Upgrade testng to 7.8.0 [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #194:
URL: https://github.com/apache/jclouds/pull/194#issuecomment-1951306476

   ```
   class file has wrong version 55.0, should be 52.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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.9 to 1.2.13 in /project [jclouds]

2024-02-18 Thread via GitHub


dependabot[bot] commented on PR #192:
URL: https://github.com/apache/jclouds/pull/192#issuecomment-1951302125

   Looks like ch.qos.logback:logback-classic is up-to-date now, so this is no 
longer needed.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.9 to 1.2.13 in /project [jclouds]

2024-02-18 Thread via GitHub


dependabot[bot] closed pull request #192: Bump ch.qos.logback:logback-classic 
from 1.2.9 to 1.2.13 in /project
URL: https://github.com/apache/jclouds/pull/192


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.9 to 1.2.13 in /project [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #192:
URL: https://github.com/apache/jclouds/pull/192#issuecomment-1951301537

   @dependabot rebase


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Upgrade netty to 3.10.6.Final [jclouds]

2024-02-18 Thread via GitHub


gaul merged PR #193:
URL: https://github.com/apache/jclouds/pull/193


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Upgrade testng to 7.9.0 [jclouds]

2024-02-18 Thread via GitHub


gaul opened a new pull request, #194:
URL: https://github.com/apache/jclouds/pull/194

   (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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump testng from 7.5 to 7.5.1 in /project [jclouds]

2024-02-18 Thread via GitHub


dependabot[bot] commented on PR #171:
URL: https://github.com/apache/jclouds/pull/171#issuecomment-1951292634

   OK, I won't notify you about version 7.5.x again, unless you re-open 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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump testng from 7.5 to 7.5.1 in /project [jclouds]

2024-02-18 Thread via GitHub


dependabot[bot] closed pull request #171: Bump testng from 7.5 to 7.5.1 in 
/project
URL: https://github.com/apache/jclouds/pull/171


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump testng from 7.5 to 7.5.1 in /project [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #171:
URL: https://github.com/apache/jclouds/pull/171#issuecomment-1951292560

   @dependabot ignore this minor 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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-core from 1.2.9 to 1.2.13 in /project [jclouds]

2024-02-18 Thread via GitHub


gaul merged PR #191:
URL: https://github.com/apache/jclouds/pull/191


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump testng from 7.5 to 7.5.1 in /project [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #171:
URL: https://github.com/apache/jclouds/pull/171#issuecomment-1951275526

   @dependabot rebase


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Upgrade netty to 3.10.6.Final [jclouds]

2024-02-18 Thread via GitHub


gaul opened a new pull request, #193:
URL: https://github.com/apache/jclouds/pull/193

   (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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump io.netty:netty from 3.5.9.Final to 3.9.8.Final in /drivers/netty [jclouds]

2024-02-18 Thread via GitHub


dependabot[bot] commented on PR #182:
URL: https://github.com/apache/jclouds/pull/182#issuecomment-1951267848

   Looks like io.netty:netty is no longer updatable, so this is no longer 
needed.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump io.netty:netty from 3.5.9.Final to 3.9.8.Final in /drivers/netty [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #182:
URL: https://github.com/apache/jclouds/pull/182#issuecomment-1951267159

   @dependabot rebase


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump io.netty:netty from 3.5.9.Final to 3.9.8.Final in /drivers/netty [jclouds]

2024-02-18 Thread via GitHub


dependabot[bot] closed pull request #182: Bump io.netty:netty from 3.5.9.Final 
to 3.9.8.Final in /drivers/netty
URL: https://github.com/apache/jclouds/pull/182


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Bump ch.qos.logback:logback-classic from 1.2.9 to 1.2.13 in /project [jclouds]

2024-02-18 Thread via GitHub


dependabot[bot] opened a new pull request, #192:
URL: https://github.com/apache/jclouds/pull/192

   Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) 
from 1.2.9 to 1.2.13.
   
   Commits
   
   https://github.com/qos-ch/logback/commit/2648b9e7fbb47426c89b9c93b411c07484e8f277;>2648b9e
 prepare release 1.2.13
   https://github.com/qos-ch/logback/commit/bb095154be011267b64e37a1d401546e7cc2b7c3;>bb09515
 fix CVE-2023-6378
   https://github.com/qos-ch/logback/commit/45732949bfb845df04cbe65292cf48aaa090cb1d;>4573294
 start work on 1.2.13-SNAPSHOT
   https://github.com/qos-ch/logback/commit/a388193052c298ca87cc64192319df723288c6ab;>a388193
 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x
   https://github.com/qos-ch/logback/commit/de44dc422bc3da1d7808283851324d960b492d4d;>de44dc4
 prepare release 1.2.12
   https://github.com/qos-ch/logback/commit/ca0cf172f680308938515b8a5d69348759ee947c;>ca0cf17
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/532;>#532 from 
joakime/fix-jetty-requestlog
   https://github.com/qos-ch/logback/commit/e31609b1980b9ba986344aae3cab7275fa2b4935;>e31609b
 removed unused files
   https://github.com/qos-ch/logback/commit/21e29efb284766f386781175b2ba18585b690154;>21e29ef
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/567;>#567 from 
spliffone/LOGBACK-1633
   https://github.com/qos-ch/logback/commit/e869000e1d5901e6aa6f46cc6575ee2137f15b69;>e869000
 fix: published POM file contain the wrong scm URL
   https://github.com/qos-ch/logback/commit/009ea46cb81a015f2ca312bde6e823581b93b37a;>009ea46
 version for next dev cycle
   Additional commits viewable in https://github.com/qos-ch/logback/compare/v_1.2.9...v_1.2.13;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-classic=maven=1.2.9=1.2.13)](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/jclouds/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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Bump ch.qos.logback:logback-core from 1.2.9 to 1.2.13 in /project [jclouds]

2024-02-18 Thread via GitHub


dependabot[bot] opened a new pull request, #191:
URL: https://github.com/apache/jclouds/pull/191

   Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 
1.2.9 to 1.2.13.
   
   Commits
   
   https://github.com/qos-ch/logback/commit/2648b9e7fbb47426c89b9c93b411c07484e8f277;>2648b9e
 prepare release 1.2.13
   https://github.com/qos-ch/logback/commit/bb095154be011267b64e37a1d401546e7cc2b7c3;>bb09515
 fix CVE-2023-6378
   https://github.com/qos-ch/logback/commit/45732949bfb845df04cbe65292cf48aaa090cb1d;>4573294
 start work on 1.2.13-SNAPSHOT
   https://github.com/qos-ch/logback/commit/a388193052c298ca87cc64192319df723288c6ab;>a388193
 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x
   https://github.com/qos-ch/logback/commit/de44dc422bc3da1d7808283851324d960b492d4d;>de44dc4
 prepare release 1.2.12
   https://github.com/qos-ch/logback/commit/ca0cf172f680308938515b8a5d69348759ee947c;>ca0cf17
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/532;>#532 from 
joakime/fix-jetty-requestlog
   https://github.com/qos-ch/logback/commit/e31609b1980b9ba986344aae3cab7275fa2b4935;>e31609b
 removed unused files
   https://github.com/qos-ch/logback/commit/21e29efb284766f386781175b2ba18585b690154;>21e29ef
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/567;>#567 from 
spliffone/LOGBACK-1633
   https://github.com/qos-ch/logback/commit/e869000e1d5901e6aa6f46cc6575ee2137f15b69;>e869000
 fix: published POM file contain the wrong scm URL
   https://github.com/qos-ch/logback/commit/009ea46cb81a015f2ca312bde6e823581b93b37a;>009ea46
 version for next dev cycle
   Additional commits viewable in https://github.com/qos-ch/logback/compare/v_1.2.9...v_1.2.13;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-core=maven=1.2.9=1.2.13)](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/jclouds/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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump bcprov-ext-jdk18on from 1.71 to 1.74 in /drivers/bouncycastle [jclouds]

2024-02-18 Thread via GitHub


gaul merged PR #180:
URL: https://github.com/apache/jclouds/pull/180


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] fixes bug #1519 [jclouds]

2024-02-18 Thread via GitHub


gaul commented on PR #190:
URL: https://github.com/apache/jclouds/pull/190#issuecomment-1951255633

   @davidsenk Please investigate CI failures.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] fixes bug #1519 [jclouds]

2024-01-29 Thread via GitHub


davidsenk opened a new pull request, #190:
URL: https://github.com/apache/jclouds/pull/190

   Fixes the authorization error with b2 application keys.
   
   Tested with s3proxy and curl
   
   https://issues.apache.org/jira/projects/JCLOUDS/issues/JCLOUDS-1519
   
   https://github.com/gaul/s3proxy/issues/298


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] JCLOUDS-1618: Upgrade to gson 2.10.1 [jclouds]

2023-12-20 Thread via GitHub


jonesbusy commented on PR #176:
URL: https://github.com/apache/jclouds/pull/176#issuecomment-1864590303

   Hi,
   
   Any plan to have this released ?
   
   Outdated gson cause now some issues on a Jenkins plugin 
(artifact-manager-s3-plugin) (https://issues.jenkins.io/browse/JENKINS-72441, 
https://github.com/jenkinsci/gson-api-plugin/issues/7)
   
   ```
   [INFO] +- org.apache.jclouds.provider:aws-s3:jar:2.5.0:compile
   [INFO] |  \- org.apache.jclouds.api:s3:jar:2.5.0:compile
   [INFO] | +- org.apache.jclouds.api:sts:jar:2.5.0:compile
   [INFO] | |  \- org.apache.jclouds:jclouds-core:jar:2.5.0:compile
   [INFO] | | +- com.google.code.gson:gson:jar:2.8.9:compile
   ```
   
   Thanks!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Parse out of order ListBucket response elements [jclouds]

2023-12-09 Thread via GitHub


gaul commented on PR #189:
URL: https://github.com/apache/jclouds/pull/189#issuecomment-1848438748

   Thank you for your contribution @mlanoe!


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Parse out of order ListBucket response elements [jclouds]

2023-12-09 Thread via GitHub


gaul merged PR #189:
URL: https://github.com/apache/jclouds/pull/189


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /compute-basics [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] closed pull request #18: Bump ch.qos.logback:logback-classic 
from 1.2.0 to 1.3.12 in /compute-basics
URL: https://github.com/apache/jclouds-examples/pull/18


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.2.13 in /chef-basics [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] opened a new pull request, #24:
URL: https://github.com/apache/jclouds-examples/pull/24

   Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) 
from 1.2.0 to 1.2.13.
   
   Commits
   
   https://github.com/qos-ch/logback/commit/2648b9e7fbb47426c89b9c93b411c07484e8f277;>2648b9e
 prepare release 1.2.13
   https://github.com/qos-ch/logback/commit/bb095154be011267b64e37a1d401546e7cc2b7c3;>bb09515
 fix CVE-2023-6378
   https://github.com/qos-ch/logback/commit/45732949bfb845df04cbe65292cf48aaa090cb1d;>4573294
 start work on 1.2.13-SNAPSHOT
   https://github.com/qos-ch/logback/commit/a388193052c298ca87cc64192319df723288c6ab;>a388193
 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x
   https://github.com/qos-ch/logback/commit/de44dc422bc3da1d7808283851324d960b492d4d;>de44dc4
 prepare release 1.2.12
   https://github.com/qos-ch/logback/commit/ca0cf172f680308938515b8a5d69348759ee947c;>ca0cf17
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/532;>#532 from 
joakime/fix-jetty-requestlog
   https://github.com/qos-ch/logback/commit/e31609b1980b9ba986344aae3cab7275fa2b4935;>e31609b
 removed unused files
   https://github.com/qos-ch/logback/commit/21e29efb284766f386781175b2ba18585b690154;>21e29ef
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/567;>#567 from 
spliffone/LOGBACK-1633
   https://github.com/qos-ch/logback/commit/e869000e1d5901e6aa6f46cc6575ee2137f15b69;>e869000
 fix: published POM file contain the wrong scm URL
   https://github.com/qos-ch/logback/commit/009ea46cb81a015f2ca312bde6e823581b93b37a;>009ea46
 version for next dev cycle
   Additional commits viewable in https://github.com/qos-ch/logback/compare/v_1.2.0...v_1.2.13;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-classic=maven=1.2.0=1.2.13)](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/jclouds-examples/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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /chef-basics [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] closed pull request #17: Bump ch.qos.logback:logback-classic 
from 1.2.0 to 1.3.12 in /chef-basics
URL: https://github.com/apache/jclouds-examples/pull/17


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.2.13 in /compute-basics [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] opened a new pull request, #25:
URL: https://github.com/apache/jclouds-examples/pull/25

   Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) 
from 1.2.0 to 1.2.13.
   
   Commits
   
   https://github.com/qos-ch/logback/commit/2648b9e7fbb47426c89b9c93b411c07484e8f277;>2648b9e
 prepare release 1.2.13
   https://github.com/qos-ch/logback/commit/bb095154be011267b64e37a1d401546e7cc2b7c3;>bb09515
 fix CVE-2023-6378
   https://github.com/qos-ch/logback/commit/45732949bfb845df04cbe65292cf48aaa090cb1d;>4573294
 start work on 1.2.13-SNAPSHOT
   https://github.com/qos-ch/logback/commit/a388193052c298ca87cc64192319df723288c6ab;>a388193
 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x
   https://github.com/qos-ch/logback/commit/de44dc422bc3da1d7808283851324d960b492d4d;>de44dc4
 prepare release 1.2.12
   https://github.com/qos-ch/logback/commit/ca0cf172f680308938515b8a5d69348759ee947c;>ca0cf17
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/532;>#532 from 
joakime/fix-jetty-requestlog
   https://github.com/qos-ch/logback/commit/e31609b1980b9ba986344aae3cab7275fa2b4935;>e31609b
 removed unused files
   https://github.com/qos-ch/logback/commit/21e29efb284766f386781175b2ba18585b690154;>21e29ef
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/567;>#567 from 
spliffone/LOGBACK-1633
   https://github.com/qos-ch/logback/commit/e869000e1d5901e6aa6f46cc6575ee2137f15b69;>e869000
 fix: published POM file contain the wrong scm URL
   https://github.com/qos-ch/logback/commit/009ea46cb81a015f2ca312bde6e823581b93b37a;>009ea46
 version for next dev cycle
   Additional commits viewable in https://github.com/qos-ch/logback/compare/v_1.2.0...v_1.2.13;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-classic=maven=1.2.0=1.2.13)](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/jclouds-examples/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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.2.13 in /dimensiondata [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] opened a new pull request, #23:
URL: https://github.com/apache/jclouds-examples/pull/23

   Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) 
from 1.2.0 to 1.2.13.
   
   Commits
   
   https://github.com/qos-ch/logback/commit/2648b9e7fbb47426c89b9c93b411c07484e8f277;>2648b9e
 prepare release 1.2.13
   https://github.com/qos-ch/logback/commit/bb095154be011267b64e37a1d401546e7cc2b7c3;>bb09515
 fix CVE-2023-6378
   https://github.com/qos-ch/logback/commit/45732949bfb845df04cbe65292cf48aaa090cb1d;>4573294
 start work on 1.2.13-SNAPSHOT
   https://github.com/qos-ch/logback/commit/a388193052c298ca87cc64192319df723288c6ab;>a388193
 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x
   https://github.com/qos-ch/logback/commit/de44dc422bc3da1d7808283851324d960b492d4d;>de44dc4
 prepare release 1.2.12
   https://github.com/qos-ch/logback/commit/ca0cf172f680308938515b8a5d69348759ee947c;>ca0cf17
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/532;>#532 from 
joakime/fix-jetty-requestlog
   https://github.com/qos-ch/logback/commit/e31609b1980b9ba986344aae3cab7275fa2b4935;>e31609b
 removed unused files
   https://github.com/qos-ch/logback/commit/21e29efb284766f386781175b2ba18585b690154;>21e29ef
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/567;>#567 from 
spliffone/LOGBACK-1633
   https://github.com/qos-ch/logback/commit/e869000e1d5901e6aa6f46cc6575ee2137f15b69;>e869000
 fix: published POM file contain the wrong scm URL
   https://github.com/qos-ch/logback/commit/009ea46cb81a015f2ca312bde6e823581b93b37a;>009ea46
 version for next dev cycle
   Additional commits viewable in https://github.com/qos-ch/logback/compare/v_1.2.0...v_1.2.13;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-classic=maven=1.2.0=1.2.13)](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/jclouds-examples/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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /dimensiondata [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] commented on PR #19:
URL: https://github.com/apache/jclouds-examples/pull/19#issuecomment-1841698475

   Superseded by #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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /blobstore-uploader [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] commented on PR #15:
URL: https://github.com/apache/jclouds-examples/pull/15#issuecomment-1841698272

   Superseded by #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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /blobstore-uploader [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] closed pull request #15: Bump ch.qos.logback:logback-classic 
from 1.2.0 to 1.3.12 in /blobstore-uploader
URL: https://github.com/apache/jclouds-examples/pull/15


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /openstack [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] closed pull request #13: Bump ch.qos.logback:logback-classic 
from 1.2.0 to 1.3.12 in /openstack
URL: https://github.com/apache/jclouds-examples/pull/13


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /compute-basics [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] commented on PR #18:
URL: https://github.com/apache/jclouds-examples/pull/18#issuecomment-1841698642

   Superseded by #25.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.2.13 in /openstack [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] opened a new pull request, #26:
URL: https://github.com/apache/jclouds-examples/pull/26

   Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) 
from 1.2.0 to 1.2.13.
   
   Commits
   
   https://github.com/qos-ch/logback/commit/2648b9e7fbb47426c89b9c93b411c07484e8f277;>2648b9e
 prepare release 1.2.13
   https://github.com/qos-ch/logback/commit/bb095154be011267b64e37a1d401546e7cc2b7c3;>bb09515
 fix CVE-2023-6378
   https://github.com/qos-ch/logback/commit/45732949bfb845df04cbe65292cf48aaa090cb1d;>4573294
 start work on 1.2.13-SNAPSHOT
   https://github.com/qos-ch/logback/commit/a388193052c298ca87cc64192319df723288c6ab;>a388193
 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x
   https://github.com/qos-ch/logback/commit/de44dc422bc3da1d7808283851324d960b492d4d;>de44dc4
 prepare release 1.2.12
   https://github.com/qos-ch/logback/commit/ca0cf172f680308938515b8a5d69348759ee947c;>ca0cf17
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/532;>#532 from 
joakime/fix-jetty-requestlog
   https://github.com/qos-ch/logback/commit/e31609b1980b9ba986344aae3cab7275fa2b4935;>e31609b
 removed unused files
   https://github.com/qos-ch/logback/commit/21e29efb284766f386781175b2ba18585b690154;>21e29ef
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/567;>#567 from 
spliffone/LOGBACK-1633
   https://github.com/qos-ch/logback/commit/e869000e1d5901e6aa6f46cc6575ee2137f15b69;>e869000
 fix: published POM file contain the wrong scm URL
   https://github.com/qos-ch/logback/commit/009ea46cb81a015f2ca312bde6e823581b93b37a;>009ea46
 version for next dev cycle
   Additional commits viewable in https://github.com/qos-ch/logback/compare/v_1.2.0...v_1.2.13;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-classic=maven=1.2.0=1.2.13)](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/jclouds-examples/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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /openstack [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] commented on PR #13:
URL: https://github.com/apache/jclouds-examples/pull/13#issuecomment-1841698651

   Superseded by #26.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /chef-basics [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] commented on PR #17:
URL: https://github.com/apache/jclouds-examples/pull/17#issuecomment-1841698572

   Superseded by #24.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /dimensiondata [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] closed pull request #19: Bump ch.qos.logback:logback-classic 
from 1.2.0 to 1.3.12 in /dimensiondata
URL: https://github.com/apache/jclouds-examples/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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.2.13 in /blobstore-uploader [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] opened a new pull request, #22:
URL: https://github.com/apache/jclouds-examples/pull/22

   Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) 
from 1.2.0 to 1.2.13.
   
   Commits
   
   https://github.com/qos-ch/logback/commit/2648b9e7fbb47426c89b9c93b411c07484e8f277;>2648b9e
 prepare release 1.2.13
   https://github.com/qos-ch/logback/commit/bb095154be011267b64e37a1d401546e7cc2b7c3;>bb09515
 fix CVE-2023-6378
   https://github.com/qos-ch/logback/commit/45732949bfb845df04cbe65292cf48aaa090cb1d;>4573294
 start work on 1.2.13-SNAPSHOT
   https://github.com/qos-ch/logback/commit/a388193052c298ca87cc64192319df723288c6ab;>a388193
 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x
   https://github.com/qos-ch/logback/commit/de44dc422bc3da1d7808283851324d960b492d4d;>de44dc4
 prepare release 1.2.12
   https://github.com/qos-ch/logback/commit/ca0cf172f680308938515b8a5d69348759ee947c;>ca0cf17
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/532;>#532 from 
joakime/fix-jetty-requestlog
   https://github.com/qos-ch/logback/commit/e31609b1980b9ba986344aae3cab7275fa2b4935;>e31609b
 removed unused files
   https://github.com/qos-ch/logback/commit/21e29efb284766f386781175b2ba18585b690154;>21e29ef
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/567;>#567 from 
spliffone/LOGBACK-1633
   https://github.com/qos-ch/logback/commit/e869000e1d5901e6aa6f46cc6575ee2137f15b69;>e869000
 fix: published POM file contain the wrong scm URL
   https://github.com/qos-ch/logback/commit/009ea46cb81a015f2ca312bde6e823581b93b37a;>009ea46
 version for next dev cycle
   Additional commits viewable in https://github.com/qos-ch/logback/compare/v_1.2.0...v_1.2.13;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-classic=maven=1.2.0=1.2.13)](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/jclouds-examples/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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /rackspace [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] closed pull request #14: Bump ch.qos.logback:logback-classic 
from 1.2.0 to 1.3.12 in /rackspace
URL: https://github.com/apache/jclouds-examples/pull/14


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



[PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.2.13 in /google-lb [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] opened a new pull request, #21:
URL: https://github.com/apache/jclouds-examples/pull/21

   Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) 
from 1.2.0 to 1.2.13.
   
   Commits
   
   https://github.com/qos-ch/logback/commit/2648b9e7fbb47426c89b9c93b411c07484e8f277;>2648b9e
 prepare release 1.2.13
   https://github.com/qos-ch/logback/commit/bb095154be011267b64e37a1d401546e7cc2b7c3;>bb09515
 fix CVE-2023-6378
   https://github.com/qos-ch/logback/commit/45732949bfb845df04cbe65292cf48aaa090cb1d;>4573294
 start work on 1.2.13-SNAPSHOT
   https://github.com/qos-ch/logback/commit/a388193052c298ca87cc64192319df723288c6ab;>a388193
 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x
   https://github.com/qos-ch/logback/commit/de44dc422bc3da1d7808283851324d960b492d4d;>de44dc4
 prepare release 1.2.12
   https://github.com/qos-ch/logback/commit/ca0cf172f680308938515b8a5d69348759ee947c;>ca0cf17
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/532;>#532 from 
joakime/fix-jetty-requestlog
   https://github.com/qos-ch/logback/commit/e31609b1980b9ba986344aae3cab7275fa2b4935;>e31609b
 removed unused files
   https://github.com/qos-ch/logback/commit/21e29efb284766f386781175b2ba18585b690154;>21e29ef
 Merge pull request https://redirect.github.com/qos-ch/logback/issues/567;>#567 from 
spliffone/LOGBACK-1633
   https://github.com/qos-ch/logback/commit/e869000e1d5901e6aa6f46cc6575ee2137f15b69;>e869000
 fix: published POM file contain the wrong scm URL
   https://github.com/qos-ch/logback/commit/009ea46cb81a015f2ca312bde6e823581b93b37a;>009ea46
 version for next dev cycle
   Additional commits viewable in https://github.com/qos-ch/logback/compare/v_1.2.0...v_1.2.13;>compare 
view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-classic=maven=1.2.0=1.2.13)](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/jclouds-examples/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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /google-lb [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] closed pull request #16: Bump ch.qos.logback:logback-classic 
from 1.2.0 to 1.3.12 in /google-lb
URL: https://github.com/apache/jclouds-examples/pull/16


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



Re: [PR] Bump ch.qos.logback:logback-classic from 1.2.0 to 1.3.12 in /google-lb [jclouds-examples]

2023-12-05 Thread via GitHub


dependabot[bot] commented on PR #16:
URL: https://github.com/apache/jclouds-examples/pull/16#issuecomment-1841697824

   Superseded by #21.


-- 
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: notifications-unsubscr...@jclouds.apache.org

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



  1   2   3   >