File tree Expand file tree Collapse file tree
src/main/java/mozilla/appservices/viaduct Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -63,13 +63,13 @@ projects:
6363 - name : rust-log-forwarder
6464 type : aar
6565 description : Forward logs from Rust
66- httpconfig :
66+ viaduct :
6767 path : components/viaduct/android
68- artifactId : httpconfig
68+ artifactId : viaduct
6969 publications :
70- - name : httpconfig
70+ - name : viaduct
7171 type : aar
72- description : Component allowing the configuration of Rust HTTP stack .
72+ description : Rust HTTP bridge .
7373 push :
7474 path : components/push/android
7575 artifactId : push
Original file line number Diff line number Diff line change 3131- init_backend and `viaduct_init_backend_hyper` no longer throw an error if they're called multiple times.
3232 Instead, we report the error via the Rust components error ping.
3333 This is a breaking change for iOS, since the functions no longer throw.
34+ - Renamed the Android package to `mozilla.appservices.viaduct`
3435
3536## 🔧 What's Fixed 🔧
3637
Original file line number Diff line number Diff line change @@ -53,5 +53,5 @@ dependencies {
5353 } else {
5454 testImplementation libs. mozilla. concept. fetch
5555 }
56- testImplementation project(" :httpconfig " )
56+ testImplementation project(" :viaduct " )
5757}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply from: "$appServicesRootDir/build-scripts/component-common.gradle"
22apply from : " $appServicesRootDir /publish.gradle"
33
44android {
5- namespace ' org.mozilla.appservices.httpconfig '
5+ namespace ' org.mozilla.appservices.viaduct '
66}
77
88dependencies {
Original file line number Diff line number Diff line change 22 * License, v. 2.0. If a copy of the MPL was not distributed with this
33 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44
5- package mozilla.appservices.httpconfig
5+ package mozilla.appservices.viaduct
66
7- import mozilla.appservices.viaduct.Backend
8- import mozilla.appservices.viaduct.ClientSettings
9- import mozilla.appservices.viaduct.Method
10- import mozilla.appservices.viaduct.Request
11- import mozilla.appservices.viaduct.Response
127import java.util.concurrent.TimeUnit
138import mozilla.components.concept.fetch.Client as FetchClient
149import mozilla.components.concept.fetch.Header as FetchHeader
Original file line number Diff line number Diff line change 22 * License, v. 2.0. If a copy of the MPL was not distributed with this
33 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44
5- package mozilla.appservices.httpconfig
5+ package mozilla.appservices.viaduct
66
77import mozilla.appservices.viaduct.initBackend
88import mozilla.components.concept.fetch.Client
You can’t perform that action at this time.
0 commit comments