Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 95f8956

Browse files
authored
Merge pull request #216 from grafana/delay-first-render
Fixes height issue on first render, and error handling issue
2 parents 8a5d4bc + 734ea74 commit 95f8956

38 files changed

+5031
-30
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## v0.2.1
4+
5+
- Fixes error handling that made everything disappear in edit mode, [#213](https://github.com/grafana/worldmap-panel/issues/213)
6+
- Fixes partial (not full height) map on first render [#212](https://github.com/grafana/worldmap-panel/issues/212)
7+
8+
## v0.2.0
9+
10+
- Convert to TypeScript, webpack and Jest
11+
- Use Yarn on CircleCI
12+
- Add missing dev dependencies
13+
- Tweak for incorrect height on render
14+
which occurs more frequently in Grafana 6.0
15+
316
## v0.1.2
417

518
- Map centering ignores configured location [#149](https://github.com/grafana/worldmap-panel/issues/149) Thanks [@clompsy](https://github.com/clompsy)
@@ -13,7 +26,7 @@
1326
## v0.1.0
1427

1528
- Configuration option for turning mouse wheel zoom on or off. [#140](https://github.com/grafana/worldmap-panel/issues/140) Thanks [@Perlovka](https://github.com/Perlovka)
16-
- Upgrade to Leaflet JS [#132](https://github.com/grafana/worldmap-panel/pull/132) Thanks [@cbarbier](https://github.com/cbarbier)
29+
- Upgrade to Leaflet JS [#132](https://github.com/grafana/worldmap-panel/pull/132) Thanks [@cbarbier](https://github.com/cbarbier)
1730

1831
## v0.0.21
1932

dist/CHANGELOG.md

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
# Changelog
2+
3+
## v0.2.1
4+
5+
- Fixes error handling that made everything disappear in edit mode, [#213](https://github.com/grafana/worldmap-panel/issues/213)
6+
- Fixes partial (not full height) map on first render [#212](https://github.com/grafana/worldmap-panel/issues/212)
7+
8+
## v0.2.0
9+
10+
- Convert to TypeScript, webpack and Jest
11+
- Use Yarn on CircleCI
12+
- Add missing dev dependencies
13+
- Tweak for incorrect height on render
14+
which occurs more frequently in Grafana 6.0
15+
16+
## v0.1.2
17+
18+
- Map centering ignores configured location [#149](https://github.com/grafana/worldmap-panel/issues/149) Thanks [@clompsy](https://github.com/clompsy)
19+
20+
## v0.1.1
21+
22+
- New mapping option for table data that contains latitude and longitude columns. [#144](https://github.com/grafana/worldmap-panel/pull/144) Thanks [@kylios](https://github.com/kylios)
23+
- More mapping options for table data for datasources that cannot alias/rename the columns to the names that the Worldmap panel expects (e.g. `metric` for the metric column)
24+
- Readme update
25+
26+
## v0.1.0
27+
28+
- Configuration option for turning mouse wheel zoom on or off. [#140](https://github.com/grafana/worldmap-panel/issues/140) Thanks [@Perlovka](https://github.com/Perlovka)
29+
- Upgrade to Leaflet JS [#132](https://github.com/grafana/worldmap-panel/pull/132) Thanks [@cbarbier](https://github.com/cbarbier)
30+
31+
## v0.0.21
32+
33+
- Support for new data source integration, the Dynamic JSON endpoint [#103](https://github.com/grafana/worldmap-panel/issues/103), thanks [@LostInBrittany](https://github.com/LostInBrittany)
34+
- Fix for using floats in thresholds [#79](https://github.com/grafana/worldmap-panel/issues/79), thanks [@fabienpomerol](https://github.com/fabienpomerol)
35+
- Fix for newly created Worldmap panels overflowing their boundaries.
36+
- Fix for legend css
37+
- Turned off mouse wheel zoom
38+
39+
## v0.0.20
40+
41+
Small fixes.
42+
43+
## v0.0.19
44+
45+
Fix for Elasticsearch geohash maps after breaking change in Grafana 4.5.
46+
47+
## v0.0.18
48+
49+
- Fixes some coordinates in the country location data.
50+
- Last Geohash as center for the map - it centers the map on the last geohash position received. Useful for real time tracking (with auto refresh on in Grafana).
51+
52+
## v.0.0.17
53+
54+
- Adds Country data with 3-letter country codes.
55+
56+
## v.0.0.16
57+
58+
- Option for sticky labels. Fix for https://github.com/grafana/worldmap-panel/issues/27
59+
60+
- Ability to hide null or 0 values. Fix for https://github.com/grafana/worldmap-panel/issues/13
61+
62+
- Background color change. Fixes https://github.com/grafana/worldmap-panel/issues/36
63+
64+
- Dynamic thresholds implemented by [Sam Hatchett](https://github.com/samhatchett). Can now have more than 2 threshold values. Thanks! Fixes https://github.com/grafana/worldmap-panel/issues/25
65+
66+
- Validation and default values for option fields. Fixes https://github.com/grafana/worldmap-panel/issues/29
67+
68+
## v.0.0.15
69+
70+
- Fix for change in Grafana that [breaks Worldmap panels using Geohash or Table Data](https://github.com/grafana/worldmap-panel/issues/45).
71+
72+
## v.0.0.14
73+
74+
- Various [bug](https://github.com/grafana/worldmap-panel/pull/31) [fixes](https://github.com/grafana/worldmap-panel/pull/32) provided by [linkslice](https://github.com/linkslice) (Thank you!)
75+
76+
## v.0.0.13
77+
78+
- New location data option -> table data. Location data can now come from data sources other than graphite and Elasticsearch (InfluxDb for example). See table data instructions above on how to use it.
79+
80+
## v.0.0.12
81+
82+
- Fixes [issue with the JSON endpoint not working](https://github.com/grafana/worldmap-panel/issues/22)
83+
84+
## v.0.0.11
85+
86+
- Zoom issue fix and adds a states options for USA states location data.
87+
88+
## v.0.0.10
89+
90+
- Performance fix for snapshotting. Sets maxdatapoints to 1 to minimize data that needs to be saved in the snapshot.
91+
92+
## v.0.0.9
93+
94+
- Fixes bug that meant location data did not refresh after being changed in the editor. It required the page to be refreshed to reload it.
95+
96+
## v.0.0.8
97+
98+
- Saves location data in the dashboard json when snapshotting. This means snapshots should work even when using a custom endpoint for returning a location data json file.
99+
100+
## v.0.0.7
101+
102+
- Updates tile map urls to https to avoid mixed content warnings on https sites.
103+
104+
## v.0.0.6
105+
106+
- Adds decimal places option for data values in circle popovers.
107+
108+
## v.0.0.5
109+
110+
- Adds support for json and jsonp endpoints for location data.
111+
112+
## v0.0.4
113+
114+
- Fixes snapshotting.
115+
116+
## v0.0.3
117+
118+
- Support for lowercase country codes for non-elasticsearch datasources.
119+
120+
## v0.0.2
121+
122+
- Fixes bug where time series with a country code not found in the country data crashes the panel.
123+
- Adds some extra country codes to the country data to be more similar to the MaxMind Country database.

dist/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Grafana
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)