Skip to content

Commit 00ee8c0

Browse files
authored
Merge branch 'main' into weaviate-discovery
2 parents b87a2ec + 497905a commit 00ee8c0

File tree

60 files changed

+197
-912
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+197
-912
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: new_component
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. crosslink)
5+
component: icmpcheckreceiver
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: "Add ICMP Check Receiver component to the distribution."
9+
10+
# One or more tracking issues related to the change
11+
issues: [6864]
12+
13+
# (Optional) One or more lines of additional information to render under the primary note.
14+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15+
# Use pipe (|) for multiline entries.
16+
subtext: |
17+
See [README](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/icmpcheckreceiver) for more details.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: breaking
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. crosslink)
5+
component: migratecheckpoint
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Remove `migratecheckpoint` command following fluentd sidecar deprecation
9+
10+
# One or more tracking issues related to the change
11+
issues: [6881]
12+
13+
# (Optional) One or more lines of additional information to render under the primary note.
14+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15+
# Use pipe (|) for multiline entries.
16+
subtext:

.github/workflows/auto-instrumentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
PYTHON_VERSION: '3.13'
2424
PIP_VERSION: '24.2'
2525
REQUIREMENTS_PATH: "packaging/tests/requirements.txt"
26-
GO_VERSION: 1.24.6
26+
GO_VERSION: 1.25
2727

2828
jobs:
2929
cross-compile:

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
env:
15-
GO_VERSION: 1.24.6
15+
GO_VERSION: 1.25
1616

1717
jobs:
1818
tidy:
@@ -112,7 +112,7 @@ jobs:
112112
- uses: ./.github/actions/setup-environment
113113

114114
- name: Run Unit Tests With Coverage
115-
run: make gotest-with-codecov
115+
run: COVER_TESTING=true make gotest-with-codecov
116116

117117
- name: Upload coverage report
118118
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # 5.5.1

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Go
3232
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v5
3333
with:
34-
go-version: "~1.24.0"
34+
go-version: "~1.25.0"
3535
check-latest: true
3636
- name: Cache Go
3737
id: go-cache

.github/workflows/dotnet-instr-deployer-add-on.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
default: '6b4ebe426ca6'
2424

2525
env:
26-
GO_VERSION: 1.24.6
26+
GO_VERSION: 1.25
2727
# Provide default values for non-manually triggered executions
2828
splunk_uf_version: ${{ github.event.inputs.splunk_uf_version || '9.4.0' }}
2929
splunk_uf_build_hash: ${{ github.event.inputs.splunk_uf_build_hash || '6b4ebe426ca6' }}

.github/workflows/integration-test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
env:
14-
GO_VERSION: 1.24.6
14+
GO_VERSION: 1.25
1515
jobs:
1616
agent-bundle-linux:
1717
strategy:
@@ -147,6 +147,7 @@ jobs:
147147
PROFILE: [ "integration", "smartagent" ]
148148
fail-fast: false
149149
env:
150+
COVER_TESTING: true
150151
TEST_OUTPUT: ${{ github.job }}-${{ matrix.PROFILE }}-${{ matrix.ARCH }}.out
151152
steps:
152153
# Multiarch images require more disk space
@@ -232,6 +233,7 @@ jobs:
232233
PROFILE: [ "integration", "smartagent" ]
233234
fail-fast: false
234235
env:
236+
COVER_TESTING: true
235237
TEST_OUTPUT: ${{ github.job }}-${{ matrix.PROFILE }}-${{ matrix.RUNNER }}.out
236238
steps:
237239
# Multiarch images require more disk space
@@ -336,6 +338,8 @@ jobs:
336338
strategy:
337339
matrix: ${{ fromJSON(needs.integration-test-discovery-matrix.outputs.matrix) }}
338340
fail-fast: false
341+
env:
342+
COVER_TESTING: true
339343
steps:
340344
- name: Free up disk space for next step
341345
uses: jlumbroso/[email protected]
@@ -442,6 +446,7 @@ jobs:
442446
KUBECONFIG=$HOME/.kube/config SKIP_TEARDOWN=true make integration-test-${{ matrix.SERVICE }}-discovery-k8s-with-cover
443447
env:
444448
CONTAINER_COVER_DEST: '/etc/otel/collector/coverage'
449+
COVER_TESTING: true
445450
- name: Print logs
446451
if: failure()
447452
run: |

.github/workflows/lint-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
env:
17-
GO_VERSION: 1.24.6
17+
GO_VERSION: 1.25
1818

1919
jobs:
2020
lint:

.github/workflows/linux-package-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222
PYTHON_VERSION: '3.13'
2323
PIP_VERSION: '24.2'
2424
REQUIREMENTS_PATH: "packaging/tests/requirements.txt"
25-
GO_VERSION: 1.24.6
25+
GO_VERSION: 1.25
2626

2727
jobs:
2828
cross-compile:

.github/workflows/otelcol-fips.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323
cancel-in-progress: true
2424

2525
env:
26-
GO_VERSION: 1.24.6
26+
GO_VERSION: 1.25
2727

2828
jobs:
2929
otelcol-fips:

0 commit comments

Comments
 (0)