-
-
Notifications
You must be signed in to change notification settings - Fork 365
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
Update 3.5.0 #637
Update 3.5.0 #637
Conversation
* Prepare for next release * Update workflows and readme to mirror latest changes
fix the typo
* Fix setting request body plain text in transaction * Add test for plain text request body
library/build.gradle
Outdated
@@ -23,11 +23,16 @@ android { | |||
|
|||
buildFeatures { | |||
viewBinding = true | |||
buildConfig = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is in theory a breaking change but I think we can make it slide. I don't suppose anyone uses BuildConfig
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch. I would like to play safe and be sure that we don't introduce anything breaking for 3.x users, so reverted this change.
@@ -95,6 +95,10 @@ afterEvaluate { | |||
name = 'Olivier Perez' | |||
email = 'olivier@olivierperez.fr' | |||
} | |||
developer { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@MiSikora Found out that we had you missing for quite some time here in POM. Decided to fix it here. Will do a PR for develop
as well later.
Let me know if this data is fine (took it from one of your repos 😄 ) and if you would like to add your email as well here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, looks good. Skipping email is fine :).
Bumps `kotlinVersion` from 1.5.10 to 1.5.20. Updates `kotlin-gradle-plugin` from 1.5.10 to 1.5.20 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.5.20/ChangeLog.md) - [Commits](JetBrains/kotlin@v1.5.10...v1.5.20) Updates `kotlin-stdlib` from 1.5.10 to 1.5.20 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.5.20/ChangeLog.md) - [Commits](JetBrains/kotlin@v1.5.10...v1.5.20) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.jetbrains.kotlin:kotlin-stdlib dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
📄 Context
This PR is a set of changes required to release a new version of Chucker with support Android 12.
It has not all changes from
develop
, but all non-breaking ones and changes required to support Android 12.📝 Changes
🚫 Breaking
Nothing breaking expected as I tried to take only parts we need.
🛠️ How to test
No special testing required. Tried to run both on an emulator with API 19 and on one with Android S
⏱️ Next steps
I will create a follow up PRs with updates to changelogs and readme files.