Skip to content

Commit

Permalink
Release v1.52.0 (#4991)
Browse files Browse the repository at this point in the history
Signed-off-by: albertteoh <see.kwang.teoh@gmail.com>
  • Loading branch information
albertteoh committed Dec 6, 2023
1 parent 995231c commit 9866eba
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 4 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Expand Up @@ -21,6 +21,48 @@ run `make changelog` to generate content

</details>

1.52.0 (2023-12-05)
-------------------

#### ✨ New Features:

* Support Elasticsearch 8.x ([@pmuls99](https://github.com/pmuls99) in [#4829](https://github.com/jaegertracing/jaeger/pull/4829))
* Make ArchiveTrace button auto-configurable ([@thecoons](https://github.com/thecoons) in [#4913](https://github.com/jaegertracing/jaeger/pull/4913))

#### 🐞 Bug fixes, Minor Improvements:

* [SPM] differentiate null from no error data ([@albertteoh](https://github.com/albertteoh) in [#4985](https://github.com/jaegertracing/jaeger/pull/4985))
* Fix example/grafana-integration ([@angristan](https://github.com/angristan) in [#4980](https://github.com/jaegertracing/jaeger/pull/4980))
* Fix (badger): add missing SamplingStoreFactory.CreateLock method ([@slayer321](https://github.com/slayer321) in [#4966](https://github.com/jaegertracing/jaeger/pull/4966))
* Normalize metric names due to breaking change ([@albertteoh](https://github.com/albertteoh) in [#4957](https://github.com/jaegertracing/jaeger/pull/4957))
* [kafka-consumer] add topic name as a tag to offset manager metrics ([@abliqo](https://github.com/abliqo) in [#4951](https://github.com/jaegertracing/jaeger/pull/4951))
* Make UI placeholder more descriptive ([@yurishkuro](https://github.com/yurishkuro) in [#4937](https://github.com/jaegertracing/jaeger/pull/4937))
* Remove google.golang.org/protobuf dependency from model & storage apis ([@akagami-harsh](https://github.com/akagami-harsh) in [#4917](https://github.com/jaegertracing/jaeger/pull/4917))
* Read OTEL env vars for resource attributes ([@yurishkuro](https://github.com/yurishkuro) in [#4932](https://github.com/jaegertracing/jaeger/pull/4932))

#### 🚧 Experimental Features:

* Exp: rename jaeger-v2 binary to just jaeger ([@yurishkuro](https://github.com/yurishkuro) in [#4918](https://github.com/jaegertracing/jaeger/pull/4918))

#### 👷 CI Improvements:

* [CI]: improve kafka integration test self-sufficiency ([@RipulHandoo](https://github.com/RipulHandoo) in [#4989](https://github.com/jaegertracing/jaeger/pull/4989))
* Separate all-in-one integration tests for v1 and v2 ([@yurishkuro](https://github.com/yurishkuro) in [#4968](https://github.com/jaegertracing/jaeger/pull/4968))
* Collect code coverage from integration tests and upload to codecov ([@yurishkuro](https://github.com/yurishkuro) in [#4964](https://github.com/jaegertracing/jaeger/pull/4964))
* [CI/ES] use default template priorities ([@yurishkuro](https://github.com/yurishkuro) in [#4962](https://github.com/jaegertracing/jaeger/pull/4962))
* Unleash dependabot on docker files and add dependency review workflow ([@step-security-bot](https://github.com/step-security-bot) in [#4945](https://github.com/jaegertracing/jaeger/pull/4945))
* Split unit-test workflow into tests and lint ([@MeenuyD](https://github.com/MeenuyD) in [#4933](https://github.com/jaegertracing/jaeger/pull/4933))
* [CI]: harden github actions ([@step-security-bot](https://github.com/step-security-bot) in [#4923](https://github.com/jaegertracing/jaeger/pull/4923))
* [CI]: build jaeger v2 image on main branch runs ([@yurishkuro](https://github.com/yurishkuro) in [#4920](https://github.com/jaegertracing/jaeger/pull/4920))
* Exp: publish jaeger v2 image ([@yurishkuro](https://github.com/yurishkuro) in [#4919](https://github.com/jaegertracing/jaeger/pull/4919))
* [CI]: set default to fix 'unbound variable' error on main ([@yurishkuro](https://github.com/yurishkuro) in [#4916](https://github.com/jaegertracing/jaeger/pull/4916))
* [CI]: test jaeger-v2 as all-in-one in ci ([@yurishkuro](https://github.com/yurishkuro) in [#4890](https://github.com/jaegertracing/jaeger/pull/4890))
* Fix release script broken by recent linting cleanup ([@yurishkuro](https://github.com/yurishkuro) in [#4915](https://github.com/jaegertracing/jaeger/pull/4915))

### UI Changes

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

1.51.0 (2023-11-04)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Expand Up @@ -54,8 +54,8 @@ Here are the release managers for future versions with the tentative release dat

| Version | Release Manager | Tentative release date |
|---------|-----------------|------------------------|
| 1.52.0 | @jkowall | 5 December 2023 |
| 1.53.0 | @pavolloffay | 3 January 2024 |
| 1.54.0 | @joe-elliott | 7 February 2024 |
| 1.55.0 | @albertteoh | 6 March 2024 |
| 1.55.0 | @jkowall | 6 March 2024 |
| 1.56.0 | @yurishkuro | 3 April 2024 |
| 1.57.0 | @albertteoh | 1 May 2023 |
2 changes: 1 addition & 1 deletion cmd/all-in-one/all_in_one_test.go
Expand Up @@ -88,7 +88,7 @@ func healthCheck(t *testing.T) {

func checkWebUI(t *testing.T) {
t.Run("logo", func(t *testing.T) {
resp, err := http.Get(queryAddr + "/static/jaeger-logo-ab11f618.svg")
resp, err := http.Get(queryAddr + "/static/jaeger-logo-jWbKFHZJ.svg")
require.NoError(t, err)
require.NotNil(t, resp)
defer resp.Body.Close()
Expand Down
2 changes: 1 addition & 1 deletion jaeger-ui
Submodule jaeger-ui updated 42 files
+1 −1 .github/workflows/lint-build.yml
+1 −1 .github/workflows/release.yml
+1 −1 .github/workflows/unit-tests.yml
+0 −1 .gitignore
+1 −5 BUILD.md
+25 −3 CHANGELOG.md
+0 −6 lerna.json
+15 −17 package.json
+6 −0 packages/jaeger-ui/index.html
+13 −12 packages/jaeger-ui/package.json
+7 −7 packages/jaeger-ui/src/components/DeepDependencies/Header/ChevronDown.test.js
+13 −1 packages/jaeger-ui/src/components/DependencyGraph/index.jsx
+168 −3 packages/jaeger-ui/src/components/Monitor/ServicesView/__snapshots__/index.test.js.snap
+11 −1 packages/jaeger-ui/src/components/Monitor/ServicesView/index.css
+8 −0 packages/jaeger-ui/src/components/Monitor/ServicesView/index.test.js
+8 −0 packages/jaeger-ui/src/components/Monitor/ServicesView/index.track.test.js
+2 −0 packages/jaeger-ui/src/components/Monitor/ServicesView/index.track.tsx
+48 −4 packages/jaeger-ui/src/components/Monitor/ServicesView/index.tsx
+60 −20 packages/jaeger-ui/src/components/TraceDiff/TraceDiffHeader/TraceHeader.test.js
+16 −12 packages/jaeger-ui/src/components/TraceDiff/TraceDiffHeader/TraceHeader.tsx
+12 −9 packages/jaeger-ui/src/components/TraceDiff/TraceDiffHeader/TraceTimelineLink.test.js
+0 −178 packages/jaeger-ui/src/components/TraceDiff/TraceDiffHeader/__snapshots__/TraceHeader.test.js.snap
+23 −7 packages/jaeger-ui/src/components/TracePage/TraceStatistics/tableValues.tsx
+3 −0 packages/jaeger-ui/src/components/TracePage/TraceTimelineViewer/VirtualizedTraceView.tsx
+6 −2 packages/jaeger-ui/src/components/TracePage/index.test.js
+7 −2 packages/jaeger-ui/src/components/TracePage/index.tsx
+10 −11 packages/jaeger-ui/src/components/TracePage/url/ReferenceLink.test.js
+1 −1 packages/jaeger-ui/src/components/common/NewWindowIcon.tsx
+4 −1 packages/jaeger-ui/src/constants/default-config.tsx
+7 −2 packages/jaeger-ui/src/index.jsx
+8 −0 packages/jaeger-ui/src/types/config.tsx
+7 −5 packages/jaeger-ui/src/types/metrics.tsx
+13 −10 packages/jaeger-ui/src/utils/config/get-config.test.js
+25 −22 packages/jaeger-ui/src/utils/config/get-config.tsx
+1 −0 packages/jaeger-ui/test/jest-per-test-setup.js
+1 −0 packages/jaeger-ui/typings/custom.d.ts
+3 −3 packages/jaeger-ui/vite.config.mts
+10 −10 packages/plexus/package.json
+0 −1 packages/plexus/webpack-factory.js
+0 −47 scripts/draft-release.py
+144 −0 scripts/get-tracking-version.js
+1,317 −3,914 yarn.lock

0 comments on commit 9866eba

Please sign in to comment.