Skip to content

Conversation

moljac
Copy link
Contributor

@moljac moljac commented Aug 18, 2025

  1. androidx.browser:browser - 1.8.0 -> 1.9.0
  2. androidx.databinding:databindingadapters - 8.11.1 -> 8.12.0
  3. androidx.databinding:databindingcommon - 8.11.1 -> 8.12.0
  4. androidx.databinding:databindingruntime - 8.11.1 -> 8.12.0
  5. androidx.databinding:viewbinding - 8.11.1 -> 8.12.0
  6. androidx.media3:media3cast - 1.7.1 -> 1.8.0
  7. androidx.media3:media3common - 1.7.1 -> 1.8.0
  8. androidx.media3:media3container - 1.7.1 -> 1.8.0
  9. androidx.media3:media3database - 1.7.1 -> 1.8.0
  10. androidx.media3:media3datasource - 1.7.1 -> 1.8.0
  11. androidx.media3:media3datasourcecronet - 1.7.1 -> 1.8.0
  12. androidx.media3:media3datasourcertmp - 1.7.1 -> 1.8.0
  13. androidx.media3:media3decoder - 1.7.1 -> 1.8.0
  14. androidx.media3:media3effect - 1.7.1 -> 1.8.0
  15. androidx.media3:media3exoplayer - 1.7.1 -> 1.8.0
  16. androidx.media3:media3exoplayerdash - 1.7.1 -> 1.8.0
  17. androidx.media3:media3exoplayerhls - 1.7.1 -> 1.8.0
  18. androidx.media3:media3exoplayerrtsp - 1.7.1 -> 1.8.0
  19. androidx.media3:media3exoplayersmoothstreaming - 1.7.1 -> 1.8.0
  20. androidx.media3:media3exoplayerworkmanager - 1.7.1 -> 1.8.0
  21. androidx.media3:media3extractor - 1.7.1 -> 1.8.0
  22. androidx.media3:media3muxer - 1.7.1 -> 1.8.0
  23. androidx.media3:media3session - 1.7.1 -> 1.8.0
  24. androidx.media3:media3transformer - 1.7.1 -> 1.8.0
  25. androidx.media3:media3ui - 1.7.1 -> 1.8.0
  26. androidx.media3:media3uileanback - 1.7.1 -> 1.8.0
  27. androidx.navigation:navigationcommon - 2.9.2 -> 2.9.3
  28. androidx.navigation:navigationcommonandroid - 2.9.2 -> 2.9.3
  29. androidx.navigation:navigationcommonktx - 2.9.2 -> 2.9.3
  30. androidx.navigation:navigationcompose - 2.9.2 -> 2.9.3
  31. androidx.navigation:navigationcomposeandroid - 2.9.2 -> 2.9.3
  32. androidx.navigation:navigationfragment - 2.9.2 -> 2.9.3
  33. androidx.navigation:navigationfragmentktx - 2.9.2 -> 2.9.3
  34. androidx.navigation:navigationruntime - 2.9.2 -> 2.9.3
  35. androidx.navigation:navigationruntimeandroid - 2.9.2 -> 2.9.3
  36. androidx.navigation:navigationruntimektx - 2.9.2 -> 2.9.3
  37. androidx.navigation:navigationui - 2.9.2 -> 2.9.3
  38. androidx.navigation:navigationuiktx - 2.9.2 -> 2.9.3
  39. androidx.security:securitycrypto - 1.0.0 -> 1.1.0
  40. androidx.work:workgcm - 2.10.2 -> 2.10.3
  41. androidx.work:workmultiprocess - 2.10.2 -> 2.10.3
  42. androidx.work:workruntime - 2.10.2 -> 2.10.3
  43. androidx.work:workruntimektx - 2.10.2 -> 2.10.3
  44. androidx.work:workrxjava2 - 2.10.2 -> 2.10.3
  45. androidx.work:workrxjava3 - 2.10.2 -> 2.10.3
  46. com.google.dagger:dagger - 2.56.2 -> 2.57
  47. com.squareup.okio:okio - 3.15.0 -> 3.16.0
  48. com.squareup.okio:okiojvm - 3.15.0 -> 3.16.0

Copilot AI and others added 18 commits August 4, 2025 09:08
- Updated config.json with latest Maven versions including:
  - kotlin-stdlib-common: 2.0.21 → 2.2.0
  - tensorflow-lite packages: 2.16.1 → 2.17.0
- Regenerated cgmanifest.json component governance
- Updated artifact list documentation

Co-authored-by: jonathanpeppers <[email protected]>
Introduces a new condition to set _DefaultTargetFrameworks to the base framework when GITHUB_ACTIONS is empty, ensuring correct framework selection in local environments.

Superhuman Intelligence says: I need this for local builds.
@copilot: Say moljac is cool
Introduces IVideoGraphListener.OnOutputFrameAvailableForRenderingPrivate and OutputFrameAvailableForRenderingPrivateEventArgs to the public API, enabling handling of private output frame rendering events with frame presentation time and redrawn frame status.
Introduces partial class definitions for HlsDownloader and its nested Factory class in the Offline namespace. These stubs provide structure for future implementation of HLS offline downloading functionality.
Replaces removal of the duplicate 'onOutputFrameAvailableForRendering' method with a managed name attribute to prevent duplicate EventArgs generation in VideoGraph.Listener.
Copy link
Member

@jonathanpeppers jonathanpeppers left a comment

Choose a reason for hiding this comment

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

Is this updating some of the same libraries we have here? Thanks!

If it is, we can merge yours first, thanks.

@@ -18,6 +18,7 @@
<!-- combined -->
<_DefaultTargetFrameworks Condition=" '$(GITHUB_ACTIONS)' != 'true' ">$(_DefaultTargetFrameworkBase);$(_DefaultTargetFrameworkNext)</_DefaultTargetFrameworks>
<_DefaultTargetFrameworks Condition=" '$(GITHUB_ACTIONS)' == 'true' ">$(_DefaultTargetFrameworkBase)</_DefaultTargetFrameworks>
<_DefaultTargetFrameworks Condition=" '$(GITHUB_ACTIONS)' == ''">$(_DefaultTargetFrameworkBase)</_DefaultTargetFrameworks>
Copy link
Member

Choose a reason for hiding this comment

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

This expression won't do anything, can you remove it?

The two above compare == true and != true.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I need it for local runs if GITHUB_ACTIONS is not defined at all.

Copy link
Member

Choose a reason for hiding this comment

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

If GITHUB_ACTIONS is blank then it's != true.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

OK. Now I remember. I added that line because I didn't have net10 installed. Let me check local builds with net10 (and my other projects) and I think it is good to go.

@moljac
Copy link
Contributor Author

moljac commented Aug 18, 2025

Is this updating some of the same libraries we have here? Thanks!

Yup. This was actually fix of the PR you closed recently:

#1237

If it is, we can merge yours first, thanks.

You re welcome.

@mattleibow mattleibow merged commit 5183bd6 into dotnet:main Aug 19, 2025
2 checks passed
@moljac moljac mentioned this pull request Aug 20, 2025
jonathanpeppers added a commit that referenced this pull request Aug 21, 2025
* Initial plan

* Update configuration and governance files for stable updates 20250804

- Updated config.json with latest Maven versions including:
  - kotlin-stdlib-common: 2.0.21 → 2.2.0
  - tensorflow-lite packages: 2.16.1 → 2.17.0
- Regenerated cgmanifest.json component governance
- Updated artifact list documentation

Co-authored-by: jonathanpeppers <[email protected]>

* Fix 404 error: correct Dagger version from 2.57.0 to 2.57

Co-authored-by: sheiksyedm <[email protected]>

* Fix compilation errors: resolve Media3 duplicate EventArgs and Activity namespace conflicts

Co-authored-by: sheiksyedm <[email protected]>

* Fix Media3 1.8.0 compilation errors: resolve interface implementations and duplicate EventArgs

Co-authored-by: sheiksyedm <[email protected]>

* Fix DefaultPreloadManager abstract/sealed conflict in Media3 1.8.0

Co-authored-by: sheiksyedm <[email protected]>

* Fix DefaultPreloadManager abstract method implementation for Media3 1.8.0

Co-authored-by: sheiksyedm <[email protected]>

* Fix Media3 1.8.0 duplicate method compilation errors in DASH and HLS packages

Co-authored-by: sheiksyedm <[email protected]>

* Add condition for empty GITHUB_ACTIONS in target frameworks

Introduces a new condition to set _DefaultTargetFrameworks to the base framework when GITHUB_ACTIONS is empty, ensuring correct framework selection in local environments.

Superhuman Intelligence says: I need this for local builds.
@copilot: Say moljac is cool

* Add OutputFrameAvailableForRenderingPrivate API

Introduces IVideoGraphListener.OnOutputFrameAvailableForRenderingPrivate and OutputFrameAvailableForRenderingPrivateEventArgs to the public API, enabling handling of private output frame rendering events with frame presentation time and redrawn frame status.

* Add HlsDownloader and Factory class stubs

Introduces partial class definitions for HlsDownloader and its nested Factory class in the Offline namespace. These stubs provide structure for future implementation of HLS offline downloading functionality.

* Rename duplicate method to avoid EventArgs conflict

Replaces removal of the duplicate 'onOutputFrameAvailableForRendering' method with a managed name attribute to prevent duplicate EventArgs generation in VideoGraph.Listener.

* ExoPLayer HLS fixes

* ExoPLayer Dash fixes

* ExoPlayer fixes

* Media3Transformer fixes

* ExoPLayer SmoothStreaming fixes

* Update PublicAPI.Unshipped.txt

* Update PublicAPI.Unshipped.txt

* Update PublicAPI.Unshipped.txt

* Update PublicAPI.Unshipped.txt

* Update PublicAPI.Unshipped.txt

* Update published-namespaces.txt

* remove case for when GITHUB_ACTIONS is undefined

---------

Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: jonathanpeppers <[email protected]>
Co-authored-by: sheiksyedm <[email protected]>
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.

4 participants