Update dependency dev.faststats.metrics:bukkit to v0.29.4 - #253
Open
renovate[bot] wants to merge 1 commit into
Open
Update dependency dev.faststats.metrics:bukkit to v0.29.4#253renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/dev.faststats.metrics-bukkit-0.x
branch
from
July 5, 2026 13:52
ecc65b4 to
30807a9
Compare
renovate
Bot
force-pushed
the
renovate/dev.faststats.metrics-bukkit-0.x
branch
from
July 11, 2026 04:00
30807a9 to
7aa91b7
Compare
renovate
Bot
force-pushed
the
renovate/dev.faststats.metrics-bukkit-0.x
branch
from
July 18, 2026 11:45
7aa91b7 to
f970db0
Compare
renovate
Bot
force-pushed
the
renovate/dev.faststats.metrics-bukkit-0.x
branch
from
July 21, 2026 03:05
f970db0 to
275dd78
Compare
renovate
Bot
force-pushed
the
renovate/dev.faststats.metrics-bukkit-0.x
branch
from
July 29, 2026 23:15
275dd78 to
6de3bcc
Compare
renovate
Bot
force-pushed
the
renovate/dev.faststats.metrics-bukkit-0.x
branch
from
August 2, 2026 20:13
6de3bcc to
3c09be3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.23.0→0.29.4Release Notes
faststats-dev/faststats-java (dev.faststats.metrics:bukkit)
v0.29.4Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.29.3...0.29.4
v0.29.3Compare Source
Full Changelog: faststats-dev/faststats-java@0.29.2...0.29.3
v0.29.2Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.29.1...0.29.2
v0.29.1Compare Source
What's Changed
$versionwith the actual SDK versionfabric.mod.jsonFull Changelog: faststats-dev/faststats-java@0.29.0...0.29.1
v0.29.0Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.28.1...0.29.0
v0.28.1Compare Source
What's Changed
plugin_versionto default metrics datagame_versionto default metrics dataserver_typedefault metric reporting a user configurable valueminecraft_versionmetric togame_versionFull Changelog: faststats-dev/faststats-java@0.28.0...0.28.1
v0.28.0Compare Source
What's Changed
Metrics.Factory#onFlushby @NonSwag in #208Full Changelog: faststats-dev/faststats-java@0.27.2...0.28.0
v0.27.3-pre2Compare Source
Full Changelog: faststats-dev/faststats-java@0.27.3-pre1...0.27.3-pre2
v0.27.3-pre1Compare Source
Full Changelog: faststats-dev/faststats-java@0.27.2...0.27.3-pre1
v0.27.2Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.27.1...0.27.2
v0.27.1Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.27.0...0.27.1
v0.27.0Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.26.2...0.27.0
v0.26.2Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.26.1...0.26.2
v0.26.1Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.26.0...0.26.1
v0.26.0Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.25.2...0.26.0
v0.25.2Compare Source
What's Changed
Full Changelog: faststats-dev/faststats-java@0.25.1...0.25.2
v0.25.1Compare Source
What's Changed
FabricContext#readyhandlingFabricContext#shutdownhandlingFull Changelog: faststats-dev/faststats-java@0.25.0...0.25.1
v0.25.0Compare Source
What's Changed
platform_versionmetric for additional error context and future use in the chart editorFastStatsContext#readyis required now to start the metrics submissionFull Changelog: faststats-dev/faststats-java@0.24.1...0.25.0
v0.24.1Compare Source
Fix debug system property
Cleanup and dedupe code; Added missing log filters
Improve thread safety™
Full Changelog: faststats-dev/faststats-java@0.24.0...0.24.1
v0.24.0Compare Source
What's Changed
This release introduces the new FastStats context model, adds feature flag
support, and cleans up the public Java API for metrics and error tracking.
A detailed migration guide can be found here: https://docs.faststats.dev/java/migration
Highlights
FastStatsContextas the shared entry point for SDK services.BukkitContext.FactoryBungeeContext.FactoryFabricContext.FactoryHytaleContext.FactoryMinestomContext.FactoryNukkitContext.FactorySpongeContext.BuilderVelocityContext.BuilderFeatureFlagServiceFeatureFlagAttributesErrorTrackerServicefor context-owned error submission.TrackedErrorso tracked errors can carry attributes and handled state.Config.SdkInfo.configmodule for shared config handling.Breaking Changes
Context-Based Setup
Metrics are no longer created directly from platform metric factories. Use a
platform context instead.
Before:
After:
Lifecycle methods moved to the context:
Package Moves
Core classes moved out of
dev.faststats.core.Before:
After:
Error Tracking
Error trackers are now registered through the context.
Before:
After:
Metrics Factory Changes
Per-metrics
.token(...),.url(...), and.debug(...)configuration wasremoved from the metrics factory. The token is now supplied to the context
factory, and runtime behavior is controlled through config/system properties.
Feature Flags
Feature flags can now be configured as a context service:
Read values asynchronously:
Migration
Most projects should:
dev.faststats.core.*imports withdev.faststats.*..token(...)into the context factory constructor or injected builder..errorTracker(...)to.errorTrackerService(...)..metrics(factory -> factory ... .create()).metrics.ready()/metrics.shutdown()withcontext.ready()/context.shutdown().Full Changelog
Full Changelog: faststats-dev/faststats-java@0.23.0...0.24.0
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.