Skip to content

Commit

Permalink
Merge remote-tracking branch 'grafana/master' into panel-visibility-flag
Browse files Browse the repository at this point in the history
* grafana/master: (85 commits)
  changelog: set date for 5.3.0-beta3 release
  build: fix for invalid pathing for release publisher
  changlog: adds note about closing grafana#13551 and grafana#13507
  test: updated react snapshot
  ux: minor tweak to link
  stackdriver: adds missing nginject attribute
  Fix issue with updating role permissions grafana#13507
  fixed toggle buttons
  build: automatically publish releases to grafana.com.
  updated after pr feedback
  Revert "Revert "Org users to react""
  Revert "Org users to react"
  added slow queries scenario to test data source, added new panel test dashboard with slow queries
  Fix "appropriate"-typo
  Update configuration doc to include socket@server
  wip: began work on support for testdata tables & annotations support
  changelog: adds note about closing grafana#13492
  better comment about state changes
  get or create alert notification should use transaction
  use notification state id instead of notifier id
  ...
  • Loading branch information
ryantxu committed Oct 3, 2018
2 parents 6286c83 + 75ed71a commit 608f1de
Show file tree
Hide file tree
Showing 143 changed files with 7,379 additions and 1,088 deletions.
10 changes: 7 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,18 @@ jobs:
name: sha-sum packages
command: 'go run build.go sha-dist'
- run:
name: Build Grafana.com publisher
name: Build Grafana.com master publisher
command: 'go build -o scripts/publish scripts/build/publish.go'
- run:
name: Build Grafana.com release publisher
command: 'cd scripts/build/release_publisher && go build -o release_publisher .'
- persist_to_workspace:
root: .
paths:
- dist/grafana*
- scripts/*.sh
- scripts/publish
- scripts/build/release_publisher/release_publisher

build:
docker:
Expand Down Expand Up @@ -299,8 +303,8 @@ jobs:
name: deploy to s3
command: 'aws s3 sync ./dist s3://$BUCKET_NAME/release'
- run:
name: Trigger Windows build
command: './scripts/trigger_windows_build.sh ${APPVEYOR_TOKEN} ${CIRCLE_SHA1} release'
name: Deploy to Grafana.com
command: './scripts/build/publish.sh'

workflows:
version: 2
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,5 @@ debug.test

/devenv/bulk-dashboards/*.json
/devenv/bulk_alerting_dashboards/*.json

/scripts/build/release_publisher/release_publisher
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
# 5.4.0 (unreleased)
# 5.3.0 (unreleased)

# 5.3.0-beta3 (2018-10-03)

* **Stackdriver**: Fix for missing ngInject [#13511](https://github.com/grafana/grafana/pull/13511)
* **Permissions**: Fix for broken permissions selector [#13507](https://github.com/grafana/grafana/issues/13507)
* **Alerting**: Alert reminders deduping not working as expected when running multiple Grafana instances [#13492](https://github.com/grafana/grafana/issues/13492)

# 5.3.0-beta2 (2018-10-01)

### New Features

* **Annotations**: Enable template variables in tagged annotations queries [#9735](https://github.com/grafana/grafana/issues/9735)
* **Stackdriver**: Support for Google Stackdriver Datasource [#13289](https://github.com/grafana/grafana/pull/13289)

### Minor

Expand All @@ -15,12 +24,9 @@
* **Singlestat**: Fix gauge display accuracy for percents [#13270](https://github.com/grafana/grafana/issues/13270), thx [@tianon](https://github.com/tianon)
* **Dashboard**: Prevent auto refresh from starting when loading dashboard with absolute time range [#12030](https://github.com/grafana/grafana/issues/12030)
* **Templating**: New templating variable type `Text box` that allows free text input [#3173](https://github.com/grafana/grafana/issues/3173)

# 5.3.0 (unreleased)

### Minor

* **Alerting**: Link to view full size image in Microsoft Teams alert notifier [#13121](https://github.com/grafana/grafana/issues/13121), thx [@holiiveira](https://github.com/holiiveira)
* **Alerting**: Fixes a bug where all alerts would send reminders after upgrade & restart [#13402](https://github.com/grafana/grafana/pull/13402)
* **Alerting**: Concurrent render limit for graphs used in notifications [#13401](https://github.com/grafana/grafana/pull/13401)
* **Postgres/MySQL/MSSQL**: Add support for replacing $__interval and $__interval_ms in alert queries [#11555](https://github.com/grafana/grafana/issues/11555), thx [@svenklemm](https://github.com/svenklemm)

# 5.3.0-beta1 (2018-09-06)
Expand Down
8 changes: 7 additions & 1 deletion Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -203,3 +203,7 @@ ignored = [
[[constraint]]
name = "github.com/denisenkom/go-mssqldb"
revision = "270bc3860bb94dd3a3ffd047377d746c5e276726"

[[constraint]]
name = "github.com/VividCortex/mysqlerr"
branch = "master"
2 changes: 1 addition & 1 deletion conf/sample.ini
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ log_queries =
;sampler_param = 1

#################################### Grafana.com integration ##########################
# Url used to to import dashboards directly from Grafana.com
# Url used to import dashboards directly from Grafana.com
[grafana_com]
;url = https://grafana.com

Expand Down
Loading

0 comments on commit 608f1de

Please sign in to comment.