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

Bump multiple dependencies #501

Open
wants to merge 22 commits into
base: master
Choose a base branch
from

Conversation

vudzkostek
Copy link

Dependency bump per commit.

Sample tests went through, also tested in commercial app that everything still works fine.

dependabot bot and others added 21 commits July 9, 2023 13:28
Bumps androidx.core:core-ktx from 1.0.1 to 1.10.1.

---
updated-dependencies:
- dependency-name: androidx.core:core-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps androidx.vectordrawable:vectordrawable-animated from 1.0.0 to 1.1.0.

---
updated-dependencies:
- dependency-name: androidx.vectordrawable:vectordrawable-animated
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps `androidXEspresso` from 3.4.0 to 3.5.1.

Updates `androidx.test.espresso:espresso-core` from 3.4.0 to 3.5.1

Updates `androidx.test.espresso:espresso-contrib` from 3.4.0 to 3.5.1

Updates `androidx.test.espresso:espresso-intents` from 3.4.0 to 3.5.1

---
updated-dependencies:
- dependency-name: androidx.test.espresso:espresso-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.test.espresso:espresso-contrib
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.test.espresso:espresso-intents
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps `mockito` from 2.28.2 to 5.3.0.

Updates `org.mockito:mockito-android` from 2.28.2 to 5.3.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v2.28.2...v5.3.0)

Updates `org.mockito:mockito-core` from 2.28.2 to 5.3.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v2.28.2...v5.3.0)

---
updated-dependencies:
- dependency-name: org.mockito:mockito-android
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: org.mockito:mockito-core
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps androidx.test.ext:junit from 1.1.3 to 1.1.5.

---
updated-dependencies:
- dependency-name: androidx.test.ext:junit
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [com.github.bumptech.glide:glide](https://github.com/bumptech/glide) from 4.10.0 to 4.15.1.
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](bumptech/glide@v4.10.0...v4.15.1)

---
updated-dependencies:
- dependency-name: com.github.bumptech.glide:glide
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps androidx.appcompat:appcompat from 1.0.2 to 1.6.1.

---
updated-dependencies:
- dependency-name: androidx.appcompat:appcompat
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps androidx.annotation:annotation from 1.0.2 to 1.6.0.

---
updated-dependencies:
- dependency-name: androidx.annotation:annotation
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [junit:junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.2.
- [Release notes](https://github.com/junit-team/junit4/releases)
- [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md)
- [Commits](junit-team/junit4@r4.12...r4.13.2)

---
updated-dependencies:
- dependency-name: junit:junit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [pl.pragmatists:JUnitParams](https://github.com/Pragmatists/JUnitParams) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/Pragmatists/JUnitParams/releases)
- [Changelog](https://github.com/Pragmatists/JUnitParams/blob/master/RELEASES.md)
- [Commits](Pragmatists/JUnitParams@JUnitParams-1.1.0...JUnitParams-1.1.1)

---
updated-dependencies:
- dependency-name: pl.pragmatists:JUnitParams
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@vudzkostek vudzkostek closed this Jul 11, 2023
@vudzkostek vudzkostek reopened this Jul 11, 2023
@@ -0,0 +1,6 @@
package com.adevinta.android.barista.sample.util;

public interface MaterialAttributes {
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because project is using Java, we could not use alias, but I also wanted to avoid inlined packages

Copy link
Author

@vudzkostek vudzkostek Jul 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Explanation: latest gradle enables by default nonTransitiveRClass

@@ -38,7 +38,6 @@ afterEvaluate {
artifact("$buildDir/libs/${project.getName()}-${version}.jar")
}

artifact androidSourcesJar
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sources jar is still produced for publishing

@vudzkostek vudzkostek marked this pull request as ready for review July 11, 2023 08:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant