Skip to content

Commit

Permalink
Merge branch 'main' into fix_1759
Browse files Browse the repository at this point in the history
  • Loading branch information
lalitb authored and owent committed Nov 17, 2022
2 parents 76c234b + d0571d8 commit ff03a95
Show file tree
Hide file tree
Showing 20 changed files with 591 additions and 530 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Increment the:
* [METRICS SDK] - Remove old metrics from Github CI
[#1733](https://github.com/open-telemetry/opentelemetry-cpp/pull/1733)
* [BUILD] Add CMake OTELCPP_PROTO_PATH [#1730](https://github.com/open-telemetry/opentelemetry-cpp/pull/1730)
* [SEMANTIC CONVENTIONS] Upgrade to version 1.15.0
[#1761](https://github.com/open-telemetry/opentelemetry-cpp/pull/1761)

Deprecation notes:

Expand All @@ -46,6 +48,18 @@ Deprecation notes:
Note that function `opentelemetry::utils::hashCode`,
declared in the ETW exporter, is not affected by this deprecation.

Breaking changes:

* [SEMANTIC CONVENTIONS] Upgrade to version 1.15.0
[#1761](https://github.com/open-telemetry/opentelemetry-cpp/pull/1761)
* Naming of semantic conventions has changed from uppercase constants,
like `SemanticConventions::SERVICE_NAME`,
to camel case, like `SemanticConventions::kServiceName`.
This is necessary to avoid collisions with macros in general,
which breaks the build on some platforms.
* Semantic conventions are flagged as experimental,
which is why this change is done in this release.

## [1.7.0] 2022-10-28

* [METRICS SDK] Validate Instrument meta data (name, unit, description) [#1713](https://github.com/open-telemetry/opentelemetry-cpp/pull/1713)
Expand Down
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ git submodule init
git submodule update
```

The source code is automatically formatted using clang-format.

The output can vary between versions, so make sure to install `clang-format`
version `10.0`, and have `clang-format-10` in your execution path,
so that the helper script `tools/format.sh` can find it.

Check out a new branch, make modifications and push the branch to your fork:

```sh
Expand Down
Loading

0 comments on commit ff03a95

Please sign in to comment.