Skip to content

Commit

Permalink
Prepare release v1.47.0 (#4570)
Browse files Browse the repository at this point in the history
Release v1.47.0

---------

Signed-off-by: Jonah Kowall <[email protected]>
Co-authored-by: Yuri Shkuro <[email protected]>
  • Loading branch information
jkowall and yurishkuro authored Jul 6, 2023
1 parent 0b21373 commit 10b7fe3
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,47 @@ next release (yyyy-mm-dd)

#### ⛔ Breaking Changes

#### New Features

#### Bug fixes, Minor Improvements

### UI Changes

1.47.0 (2023-07-05)
-------------------
### Backend Changes

#### ⛔ Breaking Changes

* [SPM] Due to a breaking change in OpenTelemetry's prometheus exporter ([details](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.80.0))
metric names will no longer be normalized by default, meaning that the expected metric names would be `calls` and
`duration_*`. Backwards compatibility with older OpenTelemetry Collector versions can be achieved through the following flags:
* `prometheus.query.normalize-calls`: If true, normalizes the "calls" metric name. e.g. "calls_total".
* `prometheus.query.normalize-duration`: If true, normalizes the "duration" metric name to include the duration units. e.g. "duration_milliseconds_bucket".


#### New Features
* [Cassandra] Add Configuration.Close() to ensure TLS cert watcher is closed ([@kennyaz](https://github.com/kennyaz) in [#4515](https://github.com/jaegertracing/jaeger/pull/4515))
* Add *.kerberos.disable-fast-negotiation option to Kafka consumer ([@pmuls99](https://github.com/pmuls99) in [#4520](https://github.com/jaegertracing/jaeger/pull/4520))
* Support Prometheus normalization for specific metrics related to OpenTelemetry compatibility ([@albertteoh](https://github.com/albertteoh) in [#4555](https://github.com/jaegertracing/jaeger/pull/4555))

#### Bug fixes, Minor Improvements

* Add readme for memstore plugin ([@yurishkuro](https://github.com/yurishkuro) in [283bdd9](https://github.com/jaegertracing/jaeger/commit/283bdd93cbb4a467842625d8eb320722fcb83494))
* Pass a wrapper instead of `opentracing.Tracer` to ease migration to OTEL in the future [part 1] ([@afzalbin64](https://github.com/afzalbin64) in [#4529](https://github.com/jaegertracing/jaeger/pull/4529))
* [hotROD] Add OTEL instrumentation to customer svc ([@afzal442](https://github.com/afzal442) in [#4559](https://github.com/jaegertracing/jaeger/pull/4559))
* [hotROD] Replace gRPC instrumentation with OTEL ([@afzal442](https://github.com/afzal442) in [#4558](https://github.com/jaegertracing/jaeger/pull/4558))
* [hotROD]: Upgrade `redis` service to use native OTEL instrumentation ([@afzal442](https://github.com/afzal442) in [#4533](https://github.com/jaegertracing/jaeger/pull/4533))
* [hotROD] Fix OTEL logging in HotRod example ([@albertteoh](https://github.com/albertteoh) in [#4556](https://github.com/jaegertracing/jaeger/pull/4556))
* [hotrod] Reduce span exporter's batch timeout to let the spans be exported sooner ([@GLVSKiriti](https://github.com/GLVSKiriti) in [#4518](https://github.com/jaegertracing/jaeger/pull/4518))
* [tracegen] Add options to generate more spans and attributes for additional use cases ([@yurishkuro](https://github.com/yurishkuro) in [#4535](https://github.com/jaegertracing/jaeger/pull/4535))
* Build improvement to rebuild jaeger-ui if the tree does not match any tag ([@bobrik](https://github.com/bobrik) in [#4553](https://github.com/jaegertracing/jaeger/pull/4553))
* [Test] Fixed a race condition causing unit test failure by changing the logging ([@yurishkuro](https://github.com/yurishkuro) in [#4546](https://github.com/jaegertracing/jaeger/pull/4546)) resolves [#4497](https://github.com/jaegertracing/jaeger/issues/4497)


### UI Changes

* UI pinned to version [1.31.0](https://github.com/jaegertracing/jaeger-ui/blob/main/CHANGELOG.md#v1310-2023-07-05).


1.46.0 (2023-06-05)
-------------------
Expand Down
3 changes: 2 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ Here are the release managers for future versions with the tentative release dat

| Version | Release Manager | Tentative release date |
|---------|-----------------|------------------------|
| 1.47.0 | @jkowall | 5 July 2023 |
| 1.48.0 | @pavolloffay | 2 August 2023 |
| 1.49.0 | @joe-elliott | 6 September 2023 |
| 1.50.0 | @albertteoh | 4 October 2023 |
| 1.51.0 | @yurishkuro | 5 November 2023 |
| 1.52.0 | @jkowall | 5 December 2023 |

2 changes: 1 addition & 1 deletion jaeger-ui
Submodule jaeger-ui updated 48 files
+4 −1 .eslintignore
+2 −0 .github/dependabot.yml
+1 −1 .github/workflows/release.yml
+34 −0 CHANGELOG.md
+3 −0 SECURITY.md
+1 −2 lerna.json
+7 −7 package.json
+5 −6 packages/jaeger-ui/package.json
+2 −1 packages/jaeger-ui/src/components/SearchTracePage/SearchResults/ResultItemTitle.tsx
+2 −1 packages/jaeger-ui/src/components/SearchTracePage/SearchResults/index.tsx
+7 −1 packages/jaeger-ui/src/components/TraceDiff/TraceDiffHeader/TraceTimelineLink.tsx
+7 −0 packages/jaeger-ui/src/components/TracePage/TracePageHeader/AltViewOptions.test.js
+27 −21 packages/jaeger-ui/src/components/TracePage/TracePageHeader/AltViewOptions.tsx
+10 −2 packages/jaeger-ui/src/components/TracePage/TracePageHeader/TracePageHeader.tsx
+5 −1 packages/jaeger-ui/src/components/TracePage/TraceSpanView/index.tsx
+0 −39 packages/jaeger-ui/src/components/TracePage/TraceStatistics/DetailTableData.css
+0 −75 packages/jaeger-ui/src/components/TracePage/TraceStatistics/DetailTableData.test.js
+0 −104 packages/jaeger-ui/src/components/TracePage/TraceStatistics/DetailTableData.tsx
+0 −32 packages/jaeger-ui/src/components/TracePage/TraceStatistics/HeaderTable.css
+0 −39 packages/jaeger-ui/src/components/TracePage/TraceStatistics/HeaderTable.test.js
+0 −40 packages/jaeger-ui/src/components/TracePage/TraceStatistics/HeaderTable.tsx
+0 −33 packages/jaeger-ui/src/components/TracePage/TraceStatistics/MainTableData.css
+0 −74 packages/jaeger-ui/src/components/TracePage/TraceStatistics/MainTableData.test.js
+0 −132 packages/jaeger-ui/src/components/TracePage/TraceStatistics/MainTableData.tsx
+1 −1 packages/jaeger-ui/src/components/TracePage/TraceStatistics/generateDropdownValue.tsx
+11 −4 packages/jaeger-ui/src/components/TracePage/TraceStatistics/index.css
+0 −66 packages/jaeger-ui/src/components/TracePage/TraceStatistics/index.test.js
+102 −229 packages/jaeger-ui/src/components/TracePage/TraceStatistics/index.tsx
+0 −78 packages/jaeger-ui/src/components/TracePage/TraceStatistics/sortTable.test.js
+0 −99 packages/jaeger-ui/src/components/TracePage/TraceStatistics/sortTable.tsx
+4 −4 packages/jaeger-ui/src/components/TracePage/TraceStatistics/tableValues.tsx
+2 −2 packages/jaeger-ui/src/components/TracePage/TraceStatistics/types.tsx
+38 −14 packages/jaeger-ui/src/components/TracePage/TraceTimelineViewer/SpanDetail/KeyValuesTable.test.js
+7 −1 packages/jaeger-ui/src/components/TracePage/TraceTimelineViewer/SpanDetail/KeyValuesTable.tsx
+32 −0 ...jaeger-ui/src/components/TracePage/TraceTimelineViewer/SpanDetail/__snapshots__/KeyValuesTable.test.js.snap
+113 −0 packages/jaeger-ui/src/components/TracePage/TraceTimelineViewer/SpanDetail/jsonMarkup.js
+5 −0 packages/jaeger-ui/src/components/TracePage/index.tsx
+1 −1 packages/jaeger-ui/src/components/common/CopyIcon.tsx
+1 −1 packages/jaeger-ui/src/components/common/__snapshots__/CopyIcon.test.js.snap
+2 −0 packages/jaeger-ui/src/constants/default-config.tsx
+7 −0 packages/jaeger-ui/src/types/config.tsx
+45 −0 packages/jaeger-ui/src/utils/config/get-target.test.js
+23 −0 packages/jaeger-ui/src/utils/config/get-target.tsx
+1 −0 packages/jaeger-ui/tsconfig.lint.json
+10 −10 packages/plexus/package.json
+2 −1 packages/plexus/src/LayoutManager/getLayout.tsx
+1 −1 scripts/check-license.sh
+1,672 −2,126 yarn.lock

0 comments on commit 10b7fe3

Please sign in to comment.