master
Name already in use
Commits on May 20, 2023
-
Update dependency org.jsoup:jsoup to v1.16.1 (#7832)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Update org-bouncycastle to v1.73 (#7833)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Update dependency de.mannodermaus.gradle.plugins:android-junit5 to v1…
….9.3.0 (#7838) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Update dependency com.willowtreeapps.assertk:assertk to v0.26.1 (#7837)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Update dependency com.vanniktech:gradle-maven-publish-plugin to v0.25…
….2 (#7836) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Update dependency com.squareup.moshi:moshi-kotlin-codegen to v1.15.0 (#…
…7835) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Update dependency com.puppycrawl.tools:checkstyle to v10.11.0 (#7834)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Update dependency org.codehaus.mojo:animal-sniffer-annotations to v1.…
…23 (#7831) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Update dependency net.ltgt.gradle:gradle-errorprone-plugin to v3.1.0 (#…
…7830) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Commits on May 15, 2023
-
Update kotlinx-serialization to v1.5.1 (#7820)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Update com-squareup-moshi to v1.15.0 (#7821)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Commits on May 14, 2023
Commits on May 13, 2023
Commits on May 11, 2023
Commits on May 10, 2023
-
Fix for stalled streams (#7801)
* Attempt a fix for stalled streams * Fix * Cleanup * Fix
-
Do our own IDN logic on the JVM (#7811)
This adds a dependency on the ASCII-data IDN mapping table originally written for Kotlin/JS and multiplatform.
-
Commits on May 8, 2023
-
Confirm labels are NFC after punycode decoding (#7808)
* Confirm labels are NFC after punycode decoding This is specified in UTS 46 but I couldn't find a way to get Chrome, Firefox, or curl to demonstrate this behavior. * fixup whitespace
-
Update dependency com.squareup:kotlinpoet to v1.13.2 (#7806)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
Adopt Punycode in HttpUrl on non-JVM platforms (#7805)
* Adopt Punycode in HttpUrl on non-JVM platforms * Fixup the sample codepoints so Java's IDN is happy
Commits on May 7, 2023
Commits on May 6, 2023
Commits on May 4, 2023
-
Share more hostnames manipulation code (#7798)
* Make okhttp-testing-support a multiplatform project * Share more hostnames manipulation code
-
-
* Add some IDN tests * Fix copyright holder * Remove unnecessary return
Commits on May 2, 2023
-
Implement a compact IDNA mapping table (#7789)
* Implement a compact IDNA mapping table This is optimized for fast lookups and small code size. It also avoids using a resource file, as that's not an option on Kotlin/JS. The data is encoded with 3 ASCII strings, as described in the new IdnaMappingTable class docs. I've got tests that confirm the compact data is consistent with the simple implementation for all code points. * Enforce maximum length invariants * Disable animal sniffer in the build-time-only IDNA mapping module
Commits on May 1, 2023
-
Update dependency org.openjsse:openjsse to v1.1.12 (#7790)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-
-
Update junit5 monorepo (#7791)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Commits on Apr 30, 2023
-
Update dependency org.jetbrains.kotlinx.binary-compatibility-validato…
…r:org.jetbrains.kotlinx.binary-compatibility-validator.gradle.plugin to v0.13.1 (#7785) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Commits on Apr 24, 2023
-
Update dependency org.graalvm.nativeimage:svm to v22.3.2 (#7784)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Commits on Apr 23, 2023
-
Straightforward implementation of IDNA mapping, for tests only (#7783)
* Straightforward implementation of IDNA mapping, for tests only As described in UTS #46, https://www.unicode.org/reports/tr46 This is working towards OkHttp's own implementation of what IDN.toASCII() does on the JVM. * Address code review feedback * Comment the mapping for ¼ * TM should be tm
-