Skip to content

Bump gdxVersion from 1.13.1 to 1.13.5 - #68

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gdxVersion-1.13.5
Closed

Bump gdxVersion from 1.13.1 to 1.13.5#68
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gdxVersion-1.13.5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 9, 2025

Copy link
Copy Markdown
Contributor

Bumps gdxVersion from 1.13.1 to 1.13.5.
Updates com.badlogicgames.gdx:gdx-backend-lwjgl3 from 1.13.1 to 1.13.5

Release notes

Sourced from com.badlogicgames.gdx:gdx-backend-lwjgl3's releases.

1.13.5

SonaType is sunsetting OSSRH, the service we used to deploy libGDX to Maven Central. This release migrates the libGDX deployment to the new Central Portal service.

NOTE: if you want to continue consuming up-to-date SNAPSHOT builds of libGDX, please add this repository to your build configuration:

https://central.sonatype.com/repository/maven-snapshots/

... (truncated)

Changelog

Sourced from com.badlogicgames.gdx:gdx-backend-lwjgl3's changelog.

[1.13.6]

  • [BREAKING CHANGE] API: Pools changes in 1.13.5 have been partially reverted. Pools#get/Pools#obtain method return to requiring a Class parameter. Reflection is avoided by using pre-populated Pools for libgdx classes. See libgdx/libgdx#7648
  • API Addition: Added JsonValue#toJson that takes a Writer.
  • API Addition: Added getProgrammaticChangeEvents() to scene2d.ui actors that have setProgrammaticChangeEvents.
  • Fixed crashes when reading the soft buttons bar height on Android.

[1.13.5]

  • [BREAKING CHANGE] Gradle: snapshot builds are now publishes to https://central.sonatype.com/repository/maven-snapshots/. Update your build scripts and the new repository URL. Some of your other snapshot dependencies might still live on OSSRH, so make sure to keep that repository as well.
  • [BREAKING CHANGE] Gradle: The publish task now uses jreleaser to publish to Maven Central. The RELEASE_REPOSITORY_URL environment variable is no longer interpreted. SNAPSHOT_REPOSITORY_URL works as before.]
  • [BREAKING CHANGE] Android: Updated minSDK to 21. Multidex config is no longer required, please check https://developer.android.com/build/multidex.
  • [BREAKING CHANGE] Android: Proguard config line boolean getUseDefaultContactFilter(); needs to be added. See libgdx/libgdx#7578.
  • [BREAKING CHANGE] Android: Removed AndroidApplicationConfiguration#touchSleepTime.
  • [BREAKING CHANGE] Skin setEnabled now only works with actors that implement Styleable. Use setEnabledReflection for old behavior or add Styleable to your actors.
  • [BREAKING CHANGE] LWJGL3: The signature of OpenALLwjgl3Audio#registerSound/registerMusic has changed. To migrate just replace registerMusic("myMusic", MyMusic.class); with registerMusic("myMusic", MyMusic::new);
  • [BREAKING CHANGE] HorizontalGroup and VerticalGroup set transform false by default.
  • [BREAKING CHANGE] Gradle: The publish task now uses jreleaser to publish to Maven Central. The RELEASE_REPOSITORY_URL environment variable is no longer interpreted. SNAPSHOT_REPOSITORY_URL works as before.
  • API Addition: Allow option to set Box2D native ContactFilter (World#setContactFilter(null)) for performance improvements.
  • API Addition: Added BooleanArray#replaceFirst and BooleanArray#replaceAll
  • API Addition: Added ByteArray#replaceFirst and ByteArray#replaceAll
  • API Addition: Added CharArray#replaceFirst and CharArray#replaceAll
  • API Addition: Added DelayedRemovalArray#replaceFirst and DelayedRemovalArray#replaceAll
  • API Addition: Added FloatArray#replaceFirst and FloatArray#replaceAll
  • API Addition: Added IntArray#replaceFirst and IntArray#replaceAll
  • API Addition: Added LongArray#replaceFirst and LongArray#replaceAll
  • API Addition: Added ShortArray#replaceFirst and ShortArray#replaceAll
  • API Addition: Added SnapshotArray#replaceFirst and SnapshotArray#replaceAll
  • API Addition: Actors that implement getStyle and setStyle should now implement the Styleable interface
  • API Addition: Added BitmapFontCache#getPageCount.
  • API Addition: Added TextField#drawBackground, #updateDisplayText is protected.
  • API Addition: Added Drawable default interface methods.
  • Android: Fixed rare NPE when onDestroy was called
  • Support has been added for Tiled "Text Objects", through new TextMapObject class
  • API Deprecation: Deprecated ReflectionPool and the related Pools#get/Pools#obtain method. Please use the new DefaultPool with the new Pools#get/Pools#obtain methods. They offer more safety and can be used with the java 8 method reference syntax (e.g. Pools.get(MyClass::new))
  • API Deprecation: Deprecated constructors taking a "Class" for Queue/ArrayMap/Array. Please use the constructors utilising "ArraySupplier". They offer more safety and can be used with the java 8 method reference syntax (e.g. MyClass[]::new)
  • API Deprecation: Deprecated constructors taking a "Class" for ParallelArray.ChannelDescriptor. Please use the constructors utilising "ArraySupplier". They offer more safety and can be used with the java 8 method reference syntax (e.g. MyClass[]::new)
  • iOS: Update to MobiVM 2.3.23
  • iOS: The MetalANGLE backend has been replaced by MetalANGLEKit which uses a newer ANGLE revision
  • Fixed Container#setCullingArea.
  • iOS: Fixing issue where after setText is called on TextField, characters cannot be deleted until a new character is added.

[1.13.1]

  • [BREAKING CHANGE] Android: Since 1.13.0 libGDX requires setting android.useAndroidX=true in your gradle.properties file. In 1.13.1 it is NO longer needed to define the androidx.core:core dependency in your Android module.
  • [BREAKING CHANGE] BaseTmxMapLoader no longer parses point objects into zero-sized RectangleMapObject. Instead, points are now represented with PointMapObject
  • iOS: Update to MobiVM 2.3.22
  • iOS: Fixes Gdx.openURI() not working on iOS 18.1 Simulator.
  • Change visibility of PolygonSpriteBatch.switchTexture() to protected
  • Added XmlReader.getChildren() and XmlReader.replaceChild()
  • LWJGL3: Fix pauseWhenLostFocus not working as expected
  • LWJGL 3: Downgrade to 3.3.3 due to AV false positives on 3.3.4 and OpenAL log spamming issue on 3.3.5.

... (truncated)

Commits

Updates com.badlogicgames.gdx:gdx from 1.13.1 to 1.13.5

Release notes

Sourced from com.badlogicgames.gdx:gdx's releases.

1.13.5

SonaType is sunsetting OSSRH, the service we used to deploy libGDX to Maven Central. This release migrates the libGDX deployment to the new Central Portal service.

NOTE: if you want to continue consuming up-to-date SNAPSHOT builds of libGDX, please add this repository to your build configuration:

https://central.sonatype.com/repository/maven-snapshots/

... (truncated)

Changelog

Sourced from com.badlogicgames.gdx:gdx's changelog.

[1.13.6]

  • [BREAKING CHANGE] API: Pools changes in 1.13.5 have been partially reverted. Pools#get/Pools#obtain method return to requiring a Class parameter. Reflection is avoided by using pre-populated Pools for libgdx classes. See libgdx/libgdx#7648
  • API Addition: Added JsonValue#toJson that takes a Writer.
  • API Addition: Added getProgrammaticChangeEvents() to scene2d.ui actors that have setProgrammaticChangeEvents.
  • Fixed crashes when reading the soft buttons bar height on Android.

[1.13.5]

  • [BREAKING CHANGE] Gradle: snapshot builds are now publishes to https://central.sonatype.com/repository/maven-snapshots/. Update your build scripts and the new repository URL. Some of your other snapshot dependencies might still live on OSSRH, so make sure to keep that repository as well.
  • [BREAKING CHANGE] Gradle: The publish task now uses jreleaser to publish to Maven Central. The RELEASE_REPOSITORY_URL environment variable is no longer interpreted. SNAPSHOT_REPOSITORY_URL works as before.]
  • [BREAKING CHANGE] Android: Updated minSDK to 21. Multidex config is no longer required, please check https://developer.android.com/build/multidex.
  • [BREAKING CHANGE] Android: Proguard config line boolean getUseDefaultContactFilter(); needs to be added. See libgdx/libgdx#7578.
  • [BREAKING CHANGE] Android: Removed AndroidApplicationConfiguration#touchSleepTime.
  • [BREAKING CHANGE] Skin setEnabled now only works with actors that implement Styleable. Use setEnabledReflection for old behavior or add Styleable to your actors.
  • [BREAKING CHANGE] LWJGL3: The signature of OpenALLwjgl3Audio#registerSound/registerMusic has changed. To migrate just replace registerMusic("myMusic", MyMusic.class); with registerMusic("myMusic", MyMusic::new);
  • [BREAKING CHANGE] HorizontalGroup and VerticalGroup set transform false by default.
  • [BREAKING CHANGE] Gradle: The publish task now uses jreleaser to publish to Maven Central. The RELEASE_REPOSITORY_URL environment variable is no longer interpreted. SNAPSHOT_REPOSITORY_URL works as before.
  • API Addition: Allow option to set Box2D native ContactFilter (World#setContactFilter(null)) for performance improvements.
  • API Addition: Added BooleanArray#replaceFirst and BooleanArray#replaceAll
  • API Addition: Added ByteArray#replaceFirst and ByteArray#replaceAll
  • API Addition: Added CharArray#replaceFirst and CharArray#replaceAll
  • API Addition: Added DelayedRemovalArray#replaceFirst and DelayedRemovalArray#replaceAll
  • API Addition: Added FloatArray#replaceFirst and FloatArray#replaceAll
  • API Addition: Added IntArray#replaceFirst and IntArray#replaceAll
  • API Addition: Added LongArray#replaceFirst and LongArray#replaceAll
  • API Addition: Added ShortArray#replaceFirst and ShortArray#replaceAll
  • API Addition: Added SnapshotArray#replaceFirst and SnapshotArray#replaceAll
  • API Addition: Actors that implement getStyle and setStyle should now implement the Styleable interface
  • API Addition: Added BitmapFontCache#getPageCount.
  • API Addition: Added TextField#drawBackground, #updateDisplayText is protected.
  • API Addition: Added Drawable default interface methods.
  • Android: Fixed rare NPE when onDestroy was called
  • Support has been added for Tiled "Text Objects", through new TextMapObject class
  • API Deprecation: Deprecated ReflectionPool and the related Pools#get/Pools#obtain method. Please use the new DefaultPool with the new Pools#get/Pools#obtain methods. They offer more safety and can be used with the java 8 method reference syntax (e.g. Pools.get(MyClass::new))
  • API Deprecation: Deprecated constructors taking a "Class" for Queue/ArrayMap/Array. Please use the constructors utilising "ArraySupplier". They offer more safety and can be used with the java 8 method reference syntax (e.g. MyClass[]::new)
  • API Deprecation: Deprecated constructors taking a "Class" for ParallelArray.ChannelDescriptor. Please use the constructors utilising "ArraySupplier". They offer more safety and can be used with the java 8 method reference syntax (e.g. MyClass[]::new)
  • iOS: Update to MobiVM 2.3.23
  • iOS: The MetalANGLE backend has been replaced by MetalANGLEKit which uses a newer ANGLE revision
  • Fixed Container#setCullingArea.
  • iOS: Fixing issue where after setText is called on TextField, characters cannot be deleted until a new character is added.

[1.13.1]

  • [BREAKING CHANGE] Android: Since 1.13.0 libGDX requires setting android.useAndroidX=true in your gradle.properties file. In 1.13.1 it is NO longer needed to define the androidx.core:core dependency in your Android module.
  • [BREAKING CHANGE] BaseTmxMapLoader no longer parses point objects into zero-sized RectangleMapObject. Instead, points are now represented with PointMapObject
  • iOS: Update to MobiVM 2.3.22
  • iOS: Fixes Gdx.openURI() not working on iOS 18.1 Simulator.
  • Change visibility of PolygonSpriteBatch.switchTexture() to protected
  • Added XmlReader.getChildren() and XmlReader.replaceChild()
  • LWJGL3: Fix pauseWhenLostFocus not working as expected
  • LWJGL 3: Downgrade to 3.3.3 due to AV false positives on 3.3.4 and OpenAL log spamming issue on 3.3.5.

... (truncated)

Commits

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps `gdxVersion` from 1.13.1 to 1.13.5.

Updates `com.badlogicgames.gdx:gdx-backend-lwjgl3` from 1.13.1 to 1.13.5
- [Release notes](https://github.com/libgdx/libgdx/releases)
- [Changelog](https://github.com/libgdx/libgdx/blob/master/CHANGES)
- [Commits](libgdx/libgdx@1.13.1...1.13.5)

Updates `com.badlogicgames.gdx:gdx` from 1.13.1 to 1.13.5
- [Release notes](https://github.com/libgdx/libgdx/releases)
- [Changelog](https://github.com/libgdx/libgdx/blob/master/CHANGES)
- [Commits](libgdx/libgdx@1.13.1...1.13.5)

---
updated-dependencies:
- dependency-name: com.badlogicgames.gdx:gdx-backend-lwjgl3
  dependency-version: 1.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.badlogicgames.gdx:gdx
  dependency-version: 1.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jul 9, 2025
@dependabot @github

dependabot Bot commented on behalf of github Oct 22, 2025

Copy link
Copy Markdown
Contributor Author

Superseded by #87.

@dependabot dependabot Bot closed this Oct 22, 2025
@dependabot
dependabot Bot deleted the dependabot/gradle/gdxVersion-1.13.5 branch October 22, 2025 16:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants