Skip to content

Commit 2ed6852

Browse files
committed
Prepare the ruby library for v1.5.0
Signed-off-by: Jacob Hull <jacob@planethull.com>
1 parent 502ffe9 commit 2ed6852

2 files changed

Lines changed: 36 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 35 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,37 @@
11
# Changelog
2+
All notable changes to this project will be documented in this file.
23

3-
[v1.4.2](https://github.com/logdna/ruby/pull/28) - 03-19-2020
4-
[v1.4.1](https://github.com/logdna/ruby/pull/26) -
5-
03-13-2020
6-
### Fixed:
7-
[Invalid log level issue](https://github.com/logdna/ruby/issues/24)
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
## [v1.5.0] - 2021-01-29
9+
### Added
10+
- `request_size` option to control the upper limit of a request.
11+
- `retry_timeout` option to control the base timeout for retries.
12+
- `retry_max_attempts` option to control maximum number of retries.
13+
- `retry_max_jitter` option to control the maximum amount of jitter (random time added) for each tried request.
14+
15+
### Changed
16+
- Set the minimum required ruby version to 2.5.0.
17+
18+
### Fixed
19+
- The client sometimes blocking the main thread during requests.
20+
21+
## [v1.4.2] - 2020-03-13
22+
### Fixed
23+
- Schedule flusher blocks main thread.
24+
25+
## [v1.4.1] - 2020-03-19
26+
### Fixed
27+
- Missing level method causing invalid log level error.
28+
29+
## [v1.4.0] - 2020-01-30
30+
### Added
31+
- Everything.
32+
33+
[Unreleased]: https://github.com/logdna/ruby/compare/v1.5.0...master
34+
[v1.5.0]: https://github.com/logdna/ruby/compare/v1.4.2...v1.5.0
35+
[v1.4.2]: https://github.com/logdna/ruby/compare/v1.4.1...v1.4.2
36+
[v1.4.1]: https://github.com/logdna/ruby/compare/v1.4.0...v1.4.1
37+
[v1.4.0]: https://github.com/logdna/ruby/releases/tag/v1.4.0

lib/logdna/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module LogDNA
4-
VERSION = "1.4.2"
4+
VERSION = "1.5.0"
55
end

0 commit comments

Comments
 (0)