Skip to content

Commit

Permalink
Preparing release v1.1.0 (jaegertracing#338)
Browse files Browse the repository at this point in the history
* Prepare release v1.0.2

Fix CSS selector in get-changelog.js script.

Signed-off-by: Joe Farro <joef@uber.com>

* Change to version v1.1.0 instead of v1.0.2

Signed-off-by: Joe Farro <joef@uber.com>
  • Loading branch information
tiffon committed Mar 4, 2019
1 parent 63432c7 commit 75a7069
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
# Releases

## Next (Unreleased)
## v1.1.0 (March 3, 2019)

### Enhancements

* **Trace detail:** Log Markers on Spans ([Fix #119](https://github.com/jaegertracing/jaeger-ui/issues/119)) ([@sfriberg](https://github.com/sfriberg) in [#309](https://github.com/jaegertracing/jaeger-ui/pull/309))
* **Trace detail:** Log Markers on spans ([Fix #119](https://github.com/jaegertracing/jaeger-ui/issues/119)) ([@sfriberg](https://github.com/sfriberg) in [#309](https://github.com/jaegertracing/jaeger-ui/pull/309))

* **Search:** Load trace(s) from a JSON file ([Fix #214](https://github.com/jaegertracing/jaeger-ui/issues/214)) ([@yuribit](https://github.com/yuribit) in [#327](https://github.com/jaegertracing/jaeger-ui/pull/327))

### Fixes

* **Trace detail:** Hide child status icon on SpanTreeOffset used in SpanDetailRow component ([Fix #328](https://github.com/jaegertracing/jaeger-ui/issues/328)) ([@rubenvp8510](https://github.com/rubenvp8510) in [#334](https://github.com/jaegertracing/jaeger-ui/pull/334))

* **Data munging:** Optimize tree walk to avoid excessive function call depth ([Fix #320](https://github.com/jaegertracing/jaeger-ui/issues/320)) ([@rubenvp8510](https://github.com/rubenvp8510) in [#326](https://github.com/jaegertracing/jaeger-ui/pull/326))

### Chores & Maintenance

* **Code quality:** Fix a typo in transform-trace-data.js ([@bhavin192](https://github.com/bhavin192) in [#332](https://github.com/jaegertracing/jaeger-ui/pull/332))

## v1.0.1 (February 15, 2019)

### 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.0.1",
"version": "1.1.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 @@ -43,7 +43,7 @@ function compareMergedDates(a, b) {
}

function getPrData(document) {
const wrapper = document.querySelector('[aria-label="Issues"]');
const wrapper = document.querySelector('[aria-label="Issues"][role="group"]');
const issues = [].slice.call(wrapper.querySelectorAll('.js-issue-row'));
const okIssues = issues.filter(elm => !elm.querySelector('[aria-label*="Closed"]'));
return okIssues.map(getData);
Expand Down

0 comments on commit 75a7069

Please sign in to comment.