Skip to content

Commit 7f53d37

Browse files
authored
Merge branch 'main' into codeboten/rm-deprecated-103
2 parents 672799e + 43ed618 commit 7f53d37

File tree

237 files changed

+4749
-3170
lines changed

Some content is hidden

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

237 files changed

+4749
-3170
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Use this changelog template to create an entry for release notes.
22

33
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4-
change_type: enhancement
4+
change_type: breaking
55

66
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7-
component: configtls
7+
component: configauth
88

99
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10-
note: Mark module as stable.
10+
note: removing deprecated methods GetServerAuthenticatorContext and GetClientAuthenticatorContext
1111

1212
# One or more tracking issues or pull requests related to the change
13-
issues: [9377]
13+
issues: [9808]
1414

1515
# (Optional) One or more lines of additional information to render under the primary note.
1616
# These lines will be padded with 2 spaces and then inserted directly into the document.
@@ -22,4 +22,4 @@ subtext:
2222
# Include 'user' if the change is relevant to end users.
2323
# Include 'api' if there is a change to a library API.
2424
# Default: '[user]'
25-
change_logs: []
25+
change_logs: [api]
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: breaking
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7+
component: service
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: "Update all metrics to include `otelcol_` prefix to ensure consistency across OTLP and Prometheus metrics"
11+
12+
# One or more tracking issues or pull requests related to the change
13+
issues: [9759]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext: |
19+
This change is marked as a breaking change as anyone that was using OTLP for metrics will
20+
see the new prefix which was not present before. Prometheus generated metrics remain
21+
unchanged.
22+
23+
# Optional: The change log or logs in which this entry should be included.
24+
# e.g. '[user]' or '[user, api]'
25+
# Include 'user' if the change is relevant to end users.
26+
# Include 'api' if there is a change to a library API.
27+
# Default: '[user]'
28+
change_logs: []
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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. otlpreceiver)
5+
component: mdatagen
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Remove WithAttributes option from the telemetry builder constructor.
9+
10+
subtext: |
11+
Attribute sets for async instruments now can be set as options to callback setters and async instruments initializers.
12+
This allows each async instrument to have its own attribute set.
13+
14+
# One or more tracking issues or pull requests related to the change
15+
issues: [10608]
16+
17+
# Optional: The change log or logs in which this entry should be included.
18+
# e.g. '[user]' or '[user, api]'
19+
# Include 'user' if the change is relevant to end users.
20+
# Include 'api' if there is a change to a library API.
21+
# Default: '[user]'
22+
change_logs: [api]

.github/workflows/api-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
path: ${{ github.head_ref }}
3434

3535
- name: Setup Go
36-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
36+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
3737
with:
3838
go-version: ~1.21.5
3939

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
name: build-and-test-arm
22
on:
33
push:
4-
branches: [ main ]
4+
branches: [main]
55
tags:
6-
- 'v[0-9]+.[0-9]+.[0-9]+*'
6+
- "v[0-9]+.[0-9]+.[0-9]+*"
77
merge_group:
88
pull_request:
99
env:
1010
TEST_RESULTS: testbed/tests/results/junit/results.xml
1111
# Make sure to exit early if cache segment download times out after 2 minutes.
1212
# We limit cache download as a whole to 5 minutes.
1313
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2
14-
GOPROXY: https://goproxy1.cncf.selfactuated.dev,direct
1514

1615
permissions:
1716
contents: read
@@ -23,11 +22,14 @@ concurrency:
2322

2423
jobs:
2524
arm-unittest-matrix:
25+
strategy:
26+
matrix:
27+
os: [otel-linux-arm64, macos-14]
2628
if: ${{ github.actor != 'dependabot[bot]' && (contains(github.event.pull_request.labels.*.name, 'Run ARM') || github.event_name == 'push' || github.event_name == 'merge_group') }}
27-
runs-on: actuated-arm64-4cpu-4gb
29+
runs-on: ${{ matrix.os }}
2830
steps:
2931
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
30-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
32+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
3133
with:
3234
go-version: "~1.22.4"
3335
cache: false
@@ -50,7 +52,7 @@ jobs:
5052
run: make -j4 gotest
5153
arm-unittest:
5254
if: ${{ github.actor != 'dependabot[bot]' && (contains(github.event.pull_request.labels.*.name, 'Run ARM') || github.event_name == 'push' || github.event_name == 'merge_group') }}
53-
runs-on: actuated-arm64-4cpu-4gb
55+
runs-on: ubuntu-latest
5456
needs: [arm-unittest-matrix]
5557
steps:
5658
- name: Print result

.github/workflows/build-and-test-windows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Checkout Repo
2121
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2222
- name: Setup Go
23-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
23+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2424
with:
2525
go-version: ~1.21.5
2626
cache: false
@@ -42,7 +42,7 @@ jobs:
4242
- name: Checkout Repo
4343
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4444
- name: Setup Go
45-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
45+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
4646
with:
4747
go-version: ~1.21.5
4848
cache: false

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
- name: Checkout Repo
2121
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2222
- name: Setup Go
23-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
23+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2424
with:
25-
go-version: ~1.21.11
25+
go-version: ~1.21.12
2626
cache: false
2727
- name: Cache Go
2828
id: go-cache
@@ -43,9 +43,9 @@ jobs:
4343
- name: Checkout Repo
4444
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4545
- name: Setup Go
46-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
46+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
4747
with:
48-
go-version: ~1.21.11
48+
go-version: ~1.21.12
4949
cache: false
5050
- name: Cache Go
5151
id: go-cache
@@ -67,9 +67,9 @@ jobs:
6767
- name: Checkout Repo
6868
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
6969
- name: Setup Go
70-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
70+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
7171
with:
72-
go-version: ~1.21.11
72+
go-version: ~1.21.12
7373
cache: false
7474
- name: Cache Go
7575
id: go-cache
@@ -92,9 +92,9 @@ jobs:
9292
- name: Checkout Repo
9393
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
9494
- name: Setup Go
95-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
95+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
9696
with:
97-
go-version: ~1.21.11
97+
go-version: ~1.21.12
9898
cache: false
9999
- name: Cache Go
100100
id: go-cache
@@ -141,7 +141,7 @@ jobs:
141141
strategy:
142142
matrix:
143143
runner: [ubuntu-latest]
144-
go-version: ["~1.22", "~1.21.11"] # 1.20 needs quotes otherwise it's interpreted as 1.2
144+
go-version: ["~1.22", "~1.21.12"] # 1.20 needs quotes otherwise it's interpreted as 1.2
145145
runs-on: ${{ matrix.runner }}
146146
needs: [setup-environment]
147147
steps:
@@ -155,7 +155,7 @@ jobs:
155155
- name: Checkout Repo
156156
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
157157
- name: Setup Go
158-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
158+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
159159
with:
160160
go-version: ${{ matrix.go-version }}
161161
cache: false
@@ -199,9 +199,9 @@ jobs:
199199
- name: Checkout Repo
200200
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
201201
- name: Setup Go
202-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
202+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
203203
with:
204-
go-version: ~1.21.11
204+
go-version: ~1.21.12
205205
cache: false
206206
- name: Cache Go
207207
id: go-cache
@@ -261,9 +261,9 @@ jobs:
261261
- name: Checkout Repo
262262
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
263263
- name: Setup Go
264-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
264+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
265265
with:
266-
go-version: ~1.21.11
266+
go-version: ~1.21.12
267267
cache: false
268268
- name: Cache Go
269269
id: go-cache

.github/workflows/builder-integration-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Checkout Repo
3232
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
3333
- name: Setup Go
34-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
34+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
3535
with:
3636
go-version: ~1.21.5
3737
- name: Test

.github/workflows/builder-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616
- name: Setup Go
17-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
17+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
1818
with:
1919
go-version: ~1.21.5
2020
- name: Run GoReleaser

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
fetch-depth: 0
3232
- name: Setup Go
33-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
33+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
3434
with:
3535
go-version: ~1.21.5
3636
- name: Cache Go

0 commit comments

Comments
 (0)