Skip to content

Commit 8ce49ef

Browse files
authored
Prepare a new release. (#44)
1 parent 81809c7 commit 8ce49ef

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
9+
## [Unreleased]
10+
Nothing yet.
11+
12+
13+
## [0.7.0] - 2020-06-02
14+
### Added
15+
- `disable_basic_metrics` and `disable_enhanced_metrics` configuration options.
16+
17+
### Changed
18+
- Major changes in `node_exporter`-like metrics. See [PR #33](https://github.com/percona/rds_exporter/pull/33)
19+
and [here](https://github.com/percona/rds_exporter#metrics).
20+
- `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` environment variables are honored now
21+
([PR #43](https://github.com/percona/rds_exporter/pull/43) by [@ahmgeek](https://github.com/ahmgeek)).
22+
- Tests and linting improvements.
23+
24+
25+
## [0.6.0] - 2019-12-04
26+
- Initial tagged release.
27+
28+
29+
[Unreleased]: https:/github.com/percona/rds_exporter/compare/v0.7.0...master
30+
[0.7.0]: https://github.com/percona/rds_exporter/compare/v0.6.0...v0.7.0
31+
[0.6.0]: https://github.com/percona/rds_exporter/releases/tag/v0.6.0

client/transport.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func newTransport() *transport {
2222
t: &http.Transport{
2323
MaxIdleConnsPerHost: 5,
2424
IdleConnTimeout: 2 * time.Minute,
25-
Proxy: http.ProxyFromEnvironment,
25+
Proxy: http.ProxyFromEnvironment,
2626
},
2727
l: log.With("component", "transport"),
2828

0 commit comments

Comments
 (0)