Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TNT-49982] Increase version and update changelog #80

Merged
merged 2 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [2.6.1] - 2024-07-12
### Fixed
- Upgraded dependencies to fix security vulnerabilities (log4j-log4j & commons-logging:commons-logging)

## [2.6.0] - 2024-06-13
### Added
- (On Device Decisioning) Added new configuration option (`shouldArtifactRequestBypassProxyCache`). When enabled and a proxy is configured, send empty Authorization header on artifact rules request to bypass proxy-level cache
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ dependencies {
implementation "com.fasterxml.jackson.core:jackson-annotations:2.11.3"
implementation "com.fasterxml.jackson.core:jackson-core:2.11.3"
implementation "com.fasterxml.jackson.core:jackson-databind:2.11.3"
implementation "com.konghq:unirest-java:3.11.02"
implementation "com.konghq:unirest-java:3.14.5"
implementation "io.github.jamsesso:json-logic-java:1.0.5"
implementation "com.google.guava:guava:16.0.1"

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.adobe.target
version=2.6.0
version=2.6.1
mavenCentralUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2
pomDescription=Adobe Target Java SDK
pomURL=https://docs.adobe.com/content/help/en/target/using/implement-target/server-side/api-and-sdk-overview.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,11 @@ public <E> E mapError(Class<? extends E> errorClass) {
public Cookies getCookies() {
return null;
}

@Override
public HttpRequestSummary getRequestSummary() {
return null;
}
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import java.io.InputStreamReader;
import kong.unirest.Config;
import kong.unirest.Headers;
import kong.unirest.HttpRequestSummary;
import kong.unirest.HttpResponseSummary;
import kong.unirest.RawResponse;

Expand Down Expand Up @@ -84,4 +85,9 @@ public Config getConfig() {
public HttpResponseSummary toSummary() {
return null;
}

@Override
public HttpRequestSummary getRequestSummary() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,11 @@ public Config getConfig() {
public HttpResponseSummary toSummary() {
return null;
}

@Override
public HttpRequestSummary getRequestSummary() {
return null;
}
};
}

Expand Down
Loading