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

Updated libs and libs info. #323

Merged
merged 4 commits into from
Dec 16, 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
43 changes: 25 additions & 18 deletions .pubnub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ sdks:
minimum-os-version:
- Ubuntu 12.04
maximum-os-version:
- Ubuntu 20.04 LTS
- Ubuntu 24.04 LTS
target-architecture:
- x86
- x86-64
Expand All @@ -57,7 +57,7 @@ sdks:
minimum-os-version:
- macOS 10.12
maximum-os-version:
- macOS 11.0.1
- macOS 15.0.1
target-architecture:
- x86-64
Windows:
Expand All @@ -66,45 +66,52 @@ sdks:
minimum-os-version:
- Windows Vista Ultimate
maximum-os-version:
- Windows 10 Home
- Windows 11 Home
target-architecture:
- x86
- x86-64
requires:
-
name: kotlin-stdlib
min-version: 1.8.0
location: https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar
license: Apache License, Version 2.0
license-url: https://www.apache.org/licenses/LICENSE-2.0.txt
is-required: Required
-
name: retrofit
min-version: 2.9.0
location: https://repo.maven.apache.org/maven2/com/squareup/retrofit2/retrofit/2.9.0/retrofit-2.9.0.jar
min-version: 2.11.0
location: https://repo.maven.apache.org/maven2/com/squareup/retrofit2/retrofit/2.11.0/retrofit-2.11.0.jar
license: Apache License, Version 2.0
license-url: https://github.com/square/retrofit/blob/2.9.0/LICENSE.txt
license-url: https://github.com/square/retrofit/blob/2.11.0/LICENSE.txt
is-required: Required
-
name: okhttp
min-version: 4.9.3
location: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/4.9.3/okhttp-4.9.3.jar
min-version: 4.12.0
location: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar
license: Apache License, Version 2.0
license-url: https://github.com/square/okhttp/blob/parent-3.14.9/LICENSE.txt
license-url: https://github.com/square/okhttp/blob/parent-4.12.0/LICENSE.txt
is-required: Required
-
name: converter-gson
min-version: 2.9.0
location: https://repo.maven.apache.org/maven2/com/squareup/retrofit2/converter-gson/2.9.0/converter-gson-2.9.0.jar
min-version: 2.11.0
location: https://repo.maven.apache.org/maven2/com/squareup/retrofit2/converter-gson/2.11.0/converter-gson-2.11.0.jar
license: Apache License, Version 2.0
license-url: https://github.com/square/retrofit/blob/2.9.0/LICENSE.txt
license-url: https://github.com/square/retrofit/blob/2.11.0/LICENSE.txt
is-required: Required
-
name: gson
min-version: 2.9.0
location: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar
min-version: 2.11.0
location: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar
license: Apache License, Version 2.0
license-url: https://github.com/google/gson/blob/gson-parent-2.8.6/LICENSE
license-url: https://github.com/google/gson/blob/gson-parent-2.11.0/LICENSE
is-required: Required
-
name: json
min-version: "20231013"
location: https://repo.maven.apache.org/maven2/org/json/json/20231013/json-20231013.jar
min-version: "20240303"
location: https://repo.maven.apache.org/maven2/org/json/json/20240303/json-20240303.jar
license: Public Domain
license-url: https://github.com/stleary/JSON-java/blob/20210307/LICENSE
license-url: https://github.com/stleary/JSON-java/blob/20240303/LICENSE
is-required: Required
-
name: cbor
Expand Down
7 changes: 4 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[versions]
jupiter = "5.8.2"
#when updating here update in .pubnub.yml as well
jupiter = "5.11.3"
cucumber = "6.10.4"
logback = "1.2.11"
okhttp = "4.12.0"
retrofit2 = "2.9.0"
retrofit2 = "2.11.0"
nexus = "2.0.0"
kotlin = "2.0.21"
vanniktech = "0.29.0"
Expand All @@ -20,7 +21,7 @@ retrofit2-converter-gson = { module = "com.squareup.retrofit2:converter-gson", v
json = { module = "org.json:json", version = "20240303" }
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
okhttp-logging = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "okhttp" }
gson = { module = "com.google.code.gson:gson", version = "2.10.1" }
gson = { module = "com.google.code.gson:gson", version = "2.11.0" }
slf4j = { module = "org.slf4j:slf4j-api", version = "1.7.36" }
cbor = { module = "co.nstant.in:cbor", version = "0.9" }
jetbrains-annotations = { module = "org.jetbrains:annotations", version = "24.1.0" }
Expand Down
Loading