Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 1, 2025

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]

  • API Addition: Added JsonValue#toJson that takes a Writer.
  • API Addition: Added getProgrammaticChangeEvents() to scene2d.ui actors that have setProgrammaticChangeEvents.

[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.
  • API Addition: Added FPSLogger#setBound
  • Android: Fix crash on startup if setContentView was manually called after initializeForView
  • API Addition: Added Array#replaceFirst and Array#replaceAll

... (truncated)

Commits

Updates com.badlogicgames.gdx:gdx-backend-android from 1.13.1 to 1.13.5

Release notes

Sourced from com.badlogicgames.gdx:gdx-backend-android'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-android's changelog.

[1.13.6]

  • API Addition: Added JsonValue#toJson that takes a Writer.
  • API Addition: Added getProgrammaticChangeEvents() to scene2d.ui actors that have setProgrammaticChangeEvents.

[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.
  • API Addition: Added FPSLogger#setBound
  • Android: Fix crash on startup if setContentView was manually called after initializeForView
  • API Addition: Added Array#replaceFirst and Array#replaceAll

... (truncated)

Commits

Updates com.badlogicgames.gdx:gdx-backend-gwt from 1.13.1 to 1.13.5

Release notes

Sourced from com.badlogicgames.gdx:gdx-backend-gwt'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-gwt's changelog.

[1.13.6]

  • API Addition: Added JsonValue#toJson that takes a Writer.
  • API Addition: Added getProgrammaticChangeEvents() to scene2d.ui actors that have setProgrammaticChangeEvents.

[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.
  • API Addition: Added FPSLogger#setBound
  • Android: Fix crash on startup if setContentView was manually called after initializeForView
  • API Addition: Added Array#replaceFirst and Array#replaceAll

... (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]

  • API Addition: Added JsonValue#toJson that takes a Writer.
  • API Addition: Added getProgrammaticChangeEvents() to scene2d.ui actors that have setProgrammaticChangeEvents.

[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 Drawab...

    Description has been truncated

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-backend-android` 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-backend-gwt` 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-backend-android
  dependency-version: 1.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.badlogicgames.gdx:gdx-backend-gwt
  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 Jun 1, 2025
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