Skip to content

Commit

Permalink
Merge branch 'main' into update-9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v authored Jan 30, 2025
2 parents dfcb7ea + 9d109a5 commit 79c1dd1
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 18 deletions.
27 changes: 15 additions & 12 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,20 +174,9 @@ pull_request_rules:
branches, such as:
* `backport-7.17` is the label to automatically backport to the 7.17 branch.
* `backport-8./d` is the label to automatically backport to the `8./d` branch. `/d` is the digit.
* `backport-9./d` is the label to automatically backport to the `9./d` branch. `/d` is the digit.
* `backport-8.x` is the label to automatically backport to the `8.x` branch.
- name: add backport-8.x for the all the PRs targeting main if no skipped or assigned already
conditions:
- -label~=^(backport-skip|backport-8.x)$
- base=main
actions:
comment:
message: |
`backport-8.x` has been added to help with the transition to the new branch `8.x`.
If you don't need it please use `backport-skip` label.
label:
add:
- backport-8.x
- name: remove backport-skip label
conditions:
- label~=^backport-\d
Expand Down Expand Up @@ -431,3 +420,17 @@ pull_request_rules:
labels:
- "backport"
title: "[{{ destination_branch }}] {{ title }} (backport #{{ number }})"
- name: backport patches to 9.0 branch
conditions:
- merged
- base=main
- label=backport-9.0
actions:
backport:
assignees:
- "{{ author }}"
branches:
- "9.0"
labels:
- "backport"
title: "[{{ destination_branch }}] {{ title }} (backport #{{ number }})"
2 changes: 2 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// tag::list[]
* <<apm-release-notes-9.0>>
* <<apm-release-notes-8.18>>
* <<apm-release-notes-8.17>>
* <<apm-release-notes-8.16>>
* <<apm-release-notes-8.15>>
Expand All @@ -23,6 +24,7 @@
// tag::includes[]
include::./changelogs/head.asciidoc[]
include::./changelogs/9.0.asciidoc[]
include::./changelogs/8.18.asciidoc[]
include::./changelogs/8.17.asciidoc[]
include::./changelogs/8.16.asciidoc[]
include::./changelogs/8.15.asciidoc[]
Expand Down
26 changes: 26 additions & 0 deletions changelogs/8.18.asciidoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[[apm-release-notes-8.18]]
== APM version 8.18
* <<apm-release-notes-8.18.0>>

[float]
[[apm-release-notes-8.18.0]]
=== APM version 8.18.0

https://github.com/elastic/apm-server/compare/v8.17.1\...v8.18.0[View commits]

[float]
==== Bug fixes
- Fix overflow in validation of `apm-server.agent.config.cache.expiration` on 32-bit architectures {pull}15216[15216]

[float]
==== Breaking Changes

[float]
==== Deprecations

[float]
==== Intake API Changes

[float]
==== Added
- Tail-based sampling: Storage layer is rewritten to use Pebble database instead of BadgerDB. The new implementation offers a substantial throughput increase while consuming significantly less memory. Disk usage is lower and more stable. See PR for benchmark details. {pull}15235[15235]
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ x-logging: &default-logging
services:
elasticsearch:
# TODO: replace with a pinned version such as 9.0.0-aaaaaaaa-SNAPSHOT
image: docker.elastic.co/elasticsearch/elasticsearch:9.0.0-faf48818-SNAPSHOT
image: docker.elastic.co/elasticsearch/elasticsearch:9.0.0-80928867-SNAPSHOT
ports:
- 9200:9200
healthcheck:
Expand Down Expand Up @@ -43,7 +43,7 @@ services:

kibana:
# TODO: replace with a pinned version such as 9.0.0-aaaaaaaa-SNAPSHOT
image: docker.elastic.co/kibana/kibana:9.0.0-faf48818-SNAPSHOT
image: docker.elastic.co/kibana/kibana:9.0.0-80928867-SNAPSHOT
ports:
- 5601:5601
healthcheck:
Expand All @@ -63,7 +63,7 @@ services:

metricbeat:
# TODO: replace with a pinned version such as 9.0.0-aaaaaaaa-SNAPSHOT
image: docker.elastic.co/beats/metricbeat:9.0.0-faf48818-SNAPSHOT
image: docker.elastic.co/beats/metricbeat:9.0.0-80928867-SNAPSHOT
environment:
ELASTICSEARCH_HOSTS: '["http://elasticsearch:9200"]'
ELASTICSEARCH_USERNAME: "${KIBANA_ES_USER:-admin}"
Expand Down
2 changes: 1 addition & 1 deletion testing/infra/k8s/base/stack/apm-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: apm-server
spec:
# TODO: replace with a pinned version such as 9.0.0-aaaaaaaa-SNAPSHOT
version: 9.0.0-faf48818-SNAPSHOT
version: 9.0.0-80928867-SNAPSHOT
count: 1
http:
tls:
Expand Down
2 changes: 1 addition & 1 deletion testing/infra/k8s/base/stack/elasticsearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: elasticsearch
spec:
# TODO: replace with a pinned version such as 9.0.0-aaaaaaaa-SNAPSHOT
version: 9.0.0-faf48818-SNAPSHOT
version: 9.0.0-80928867-SNAPSHOT
auth:
fileRealm:
- secretName: elasticsearch-admin
Expand Down
2 changes: 1 addition & 1 deletion testing/infra/k8s/base/stack/kibana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: kibana
spec:
# TODO: replace with a pinned version such as 9.0.0-aaaaaaaa-SNAPSHOT
version: 9.0.0-faf48818-SNAPSHOT
version: 9.0.0-80928867-SNAPSHOT
count: 1
elasticsearchRef:
name: elasticsearch
Expand Down

0 comments on commit 79c1dd1

Please sign in to comment.