Skip to content

Commit

Permalink
Downgrade okhttp to fix HTTP failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Waboodoo committed Apr 9, 2024
1 parent 57b4a54 commit 299c895
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Version 3.11.1

### Bugfixes
- Fixed a bug that caused some shortcuts to fail when executed. Mostly shortcuts that send requests to subdomains and use cookies were affected.

## Version 3.11.0

### Improvements
Expand Down
4 changes: 2 additions & 2 deletions HTTPShortcuts/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ android {
targetSdk = 34

// Version name and code must remain as literals so that F-Droid can read them
versionName = "3.11.0"
versionName = "3.11.1"
// 11,(2 digits major),(2 digits minor),(2 digits patch),(2 digits build)
versionCode = 1103110003
versionCode = 1103110100

buildConfigField("String", "BUGSNAG_API_KEY", "\"$bugsnagAPIKey\"")
buildConfigField("String", "BUILD_TIMESTAMP", "\"${rootProject.ext["buildTimestamp"]}\"")
Expand Down
3 changes: 1 addition & 2 deletions HTTPShortcuts/app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@
-dontwarn org.bouncycastle.jsse.provider.BouncyCastleJsseProvider
-dontwarn org.openjsse.javax.net.ssl.SSLParameters
-dontwarn org.openjsse.javax.net.ssl.SSLSocket
-dontwarn org.openjsse.net.ssl.OpenJSSE
-keep class okhttp3.internal.publicsuffix.PublicSuffixDatabase -keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
-dontwarn org.openjsse.net.ssl.OpenJSSE
2 changes: 1 addition & 1 deletion HTTPShortcuts/app/src/main/assets/changelog.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion HTTPShortcuts/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android.nonFinalResIds=false
# Common Dependencies
kotlinVersion=1.9.23
coroutinesVersion=1.8.0
okHttpVersion=5.0.0-alpha.12
okHttpVersion=5.0.0-alpha.11
gsonVersion=2.10.1
hiltVersion=2.51.1

Expand Down

0 comments on commit 299c895

Please sign in to comment.