Skip to content

Commit

Permalink
Preparing release v1.22.0 (#924)
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Elliott <number101010@gmail.com>
  • Loading branch information
joe-elliott committed Apr 11, 2022
1 parent 25dd1aa commit 53da5e6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@

### Fixes

## v1.22.0 (2022-04-11)

### Enhancements

- Monitor Tab - New look for empty state + make empty state configurable ([@nofar9792](https://github.com/nofar9792) in [#916](https://github.com/jaegertracing/jaeger-ui/pull/916))

### Fixes

- Monitor Tab - Fixed y axis on error rates ([@nofar9792](https://github.com/nofar9792) in [#913](https://github.com/jaegertracing/jaeger-ui/pull/913))
- Monitor Tab - Truncate request rate and P95 latency numbers to two decimal places ([@nofar9792](https://github.com/nofar9792) in [#911](https://github.com/jaegertracing/jaeger-ui/pull/911))
- Monitor Tab - Error rate graph in operation table is always a straight line ([@nofar9792](https://github.com/nofar9792) in [#909](https://github.com/jaegertracing/jaeger-ui/pull/909))

## v1.21.0 (2022-03-06)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/jaeger-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "jaeger-ui",
"version": "1.21.0",
"version": "1.22.0",
"main": "src/index.js",
"license": "Apache-2.0",
"homepage": ".",
Expand Down
2 changes: 1 addition & 1 deletion scripts/get-changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function getData(elm) {
const title = elm.querySelector('[data-hovercard-type="pull_request"]').textContent;
const url = elm.querySelector('[data-hovercard-type="pull_request"]').href;
const pid = /#\d+/g.exec(elm.querySelector('.opened-by').textContent)[0];
const user = elm.querySelector('a.muted-link').textContent;
const user = elm.querySelector('a.Link--muted').textContent;
const dateMerged = new Date(elm.querySelector('[datetime]').getAttribute('datetime'));
return { title, url, pid, user, dateMerged };
}
Expand Down

0 comments on commit 53da5e6

Please sign in to comment.