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

Prepared for 1.10.1 release #1116

Closed
Closed
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
15 changes: 10 additions & 5 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,29 @@ endif::[]

// Using the template above, release notes go here.
// CHANGELOG_AUTOMATION_KEYWORD
[[release-notes-v1.10.1]]
=== v1.10.1 - 2024/01/04
==== Bug fixes
* Allow using environment variables passed via FastCGI for agent configuration {pull}#1113[#1113]

[[release-notes-v1.10.0]]
=== v1.10.0 - 2023/09/12
[float]
==== Features
* Preview of inferred spans feature. It needs to be enabled manually, please refer to documentation <<config-profiling-inferred-spans-enabled>> {pull}1038[#1038]
* Preview of inferred spans feature. It needs to be enabled manually, please refer to documentation <<config-profiling-inferred-spans-enabled>> {pull}#1038[#1038]
SergeyKleyman marked this conversation as resolved.
Show resolved Hide resolved

==== Bug fixes
* Detection and logging if agent source code doesn't comply open_basedir limitation {pull}#1044[##1044]
* Detection and logging if agent source code doesn't comply open_basedir limitation {pull}#1044[#1044]
SergeyKleyman marked this conversation as resolved.
Show resolved Hide resolved

[[release-notes-v1.9.1]]
=== v1.9.1 - 2023/07/06
[float]
==== Features
* Added configuration option: GLOBAL_LABELS {pull}1007[#1007]
* Introduced new C++ build environment {pull}985[985]
* Added configuration option: GLOBAL_LABELS {pull}#1007[#1007]
* Introduced new C++ build environment {pull}#985[#985]

==== Bug fixes
* Suppress errors and warnings when internally calling opcache_get_status {pull}1013[#1013]
* Suppress errors and warnings when internally calling opcache_get_status {pull}#1013[#1013]

[[release-notes-v1.9.0]]
=== v1.9.0 - 2023/06/22
Expand Down
2 changes: 1 addition & 1 deletion agent/native/ext/elastic_apm_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
*/
#pragma once

#define PHP_ELASTIC_APM_VERSION "1.10.0"
#define PHP_ELASTIC_APM_VERSION "1.10.1"
2 changes: 1 addition & 1 deletion agent/php/ElasticApm/ElasticApm.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ final class ElasticApm
{
use StaticClassTrait;

public const VERSION = '1.10.0';
public const VERSION = '1.10.1';

/**
* Begins a new transaction and sets it as the current transaction.
Expand Down
2 changes: 2 additions & 0 deletions docs/release-notes.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
[[release-notes]]
== Release notes

* <<release-notes-v1.10.1>>
* <<release-notes-v1.10.0>>
* <<release-notes-v1.9.1>>
* <<release-notes-v1.9.0>>
* <<release-notes-v1.8.4>>
Expand Down
Loading