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

Prepare release 1.6.1 #149

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ CHANGELOG

[//]: # (comment: Don't forget to update src/DogStatsd.php:DogStatsd::version when releasing a new version)

# 1.6.1 / 2024-02-23

* Add support for `DD_DOGSTATSD_URL` environment variable (#148) [@fernandocarletti][]
* Apply check for IPv6 addresses (#146) [@NickStallman][]

# 1.6.0 / 2023-05-10

* Add support for [Unified service tagging](https://docs.datadoghq.com/getting_started/tagging/unified_service_tagging/?tab=kubernetes)
Expand Down Expand Up @@ -141,4 +146,6 @@ CHANGELOG
[@roippi]: https://github.com/roippi
[@colinodell]: https://github.com/colinodell
[@Lewiscowles1986]: https://github.com/Lewiscowles1986
[@fernandocarletti]: https://github.com/fernandocarletti
[@NickStallman]: https://github.com/NickStallman
[dogstatsd_telemetry_doc]: https://docs.datadoghq.com/developers/dogstatsd/high_throughput/?tab=php#client-side-telemetry
2 changes: 1 addition & 1 deletion src/DogStatsd.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class DogStatsd
private static $eventUrl = '/api/v1/events';

// Used for the telemetry tags
public static $version = '1.6.0';
public static $version = '1.6.1';

/**
* DogStatsd constructor, takes a configuration array. The configuration can take any of the following values:
Expand Down