lightstep 0.16.0 → 0.16.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/CONTRIBUTING.md +58 -0
- data/Gemfile.lock +6 -6
- data/lib/lightstep/version.rb +1 -1
- data/lightstep.gemspec +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b24dcdbee847cd07bfca4f5f6f5752c49eb951323d9c3c0356ad081f68483a0
|
4
|
+
data.tar.gz: b22da20413d082e19038a7a571aeb47fbfb8f304f70a3c4559ee765ec06c58bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfd268464c0c33e05ef86d250952dca6801b5f355011269d66d68bb98e205b9c9bb09b58ace4beb86af37455b69e21f1e2cabad8e38a6223ed6da63751cf1c47
|
7
|
+
data.tar.gz: 1e8df7a7ab819528448a1967585c7cc50816a77fa521b27dc75bf3f9d2174b4423679eae59b6f1cca01b05c4bff4bd3dd4db8551c1199001631074c7f1478a61
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## v0.16.1
|
8
|
+
### Changed
|
9
|
+
- Bump json from 2.2.0 to 2.5.1 ([#98](https://github.com/lightstep/lightstep-tracer-ruby/pull/98))
|
10
|
+
- Bump rack from 2.0.7 to 2.2.3 ([#95](https://github.com/lightstep/lightstep-tracer-ruby/pull/98))
|
11
|
+
- Update rake requirement from ~> 11.3 to ~> 13.0 ([#94](https://github.com/lightstep/lightstep-tracer-ruby/pull/98))
|
12
|
+
|
7
13
|
## v0.16.0
|
8
14
|
### Added
|
9
15
|
- The tracer now supports B3 context propagation. Propagation can be set by using the `propagator` keyword argument to `LightStep.configure`. Valid values are `:lightstep` (default), and `:b3`.
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
# LightStep Community Contributing Guide
|
2
|
+
|
3
|
+
First, 🎉 **thanks for contributing!** 🎉
|
4
|
+
|
5
|
+
## Issues
|
6
|
+
|
7
|
+
You're encouraged to log issues for any questions or problems you might have. When in doubt, log an issue. The exception to this rule is [security disclosures](#reporting-security-issues).
|
8
|
+
|
9
|
+
Generally speaking, the more context you can provide, the better. Please add information such as what **version** you're using, **stack traces** and/or **logs** (to the extent that you're able to share them), and whatever else you think may be relevant. Project maintainers may ask for additional clarification, logs, and other pertinent metadata before we can address your issue.
|
10
|
+
|
11
|
+
For bug submission, we especially appreciate **details on how to reproduce the bug** to the extent you're able to provide them, e.g., an isolated repo or [gist](https://gist.github.com).
|
12
|
+
|
13
|
+
### Reporting Security Issues
|
14
|
+
|
15
|
+
If you find a security issue, please **do not** file a public issue for it. Instead, send your report to us privately at [security@lightstep.com](mailto:security@lightstep.com).
|
16
|
+
|
17
|
+
## Contributions
|
18
|
+
|
19
|
+
All contributions big and small are welcome, from typo corrections to bug fixes to suggested improvements!
|
20
|
+
|
21
|
+
Any changes to project resources in this repository must be made through a pull request. This includes, but is not limited to, changes affecting:
|
22
|
+
|
23
|
+
- Documentation
|
24
|
+
- Source code
|
25
|
+
- Binaries
|
26
|
+
- Sample projects or other examples
|
27
|
+
|
28
|
+
No pull request can be merged without at least one review from a maintainer.
|
29
|
+
|
30
|
+
By default, contributions are accepted once no committers object to the PR. Specific contributors may be suggested or required to review a pull request based on repository settings.
|
31
|
+
|
32
|
+
In the event of objections or disagreement, everyone involved should seek to arrive at a consensus around the expressed objections. These can take the form of addressing concerns through changes, compromising around the change, or withdrawing it entirely.
|
33
|
+
|
34
|
+
## Development
|
35
|
+
|
36
|
+
### Testing
|
37
|
+
|
38
|
+
To run the tests:
|
39
|
+
|
40
|
+
```
|
41
|
+
make test
|
42
|
+
```
|
43
|
+
|
44
|
+
## Submitting a Pull Request
|
45
|
+
|
46
|
+
_Note that this section should be treated as a general guideline and replaced with language/repo specific instructions_
|
47
|
+
|
48
|
+
1. [Fork the repository.](https://help.github.com/en/github/getting-started-with-github/fork-a-repo)
|
49
|
+
1. Create a new branch.
|
50
|
+
1. Add tests for your change.
|
51
|
+
1. [Run the tests](#testing) to make sure that they don't already pass. If they do (and you're not backfilling test coverage), please modify them.
|
52
|
+
1. Implement the change such that your new tests pass.
|
53
|
+
1. [Commit and push your changes.](https://guides.github.com/introduction/flow/)
|
54
|
+
1. [Submit your pull request.](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests)
|
55
|
+
1. Adjust your pull request based on feedback.
|
56
|
+
1. Get it merged! 🎉
|
57
|
+
|
58
|
+
We're happy to help with any questions you may have on the git or GitHub side, e.g., how to push a branch to your fork. Just create an issue and we'll try to help answer them :)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
lightstep (0.16.
|
4
|
+
lightstep (0.16.1)
|
5
5
|
concurrent-ruby (~> 1.0)
|
6
6
|
opentracing (~> 0.5.0)
|
7
7
|
|
@@ -9,13 +9,13 @@ GEM
|
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
11
|
bump (0.6.1)
|
12
|
-
concurrent-ruby (1.1.
|
12
|
+
concurrent-ruby (1.1.7)
|
13
13
|
diff-lcs (1.3)
|
14
14
|
docile (1.3.2)
|
15
|
-
json (2.
|
15
|
+
json (2.5.1)
|
16
16
|
opentracing (0.5.0)
|
17
|
-
rack (2.
|
18
|
-
rake (
|
17
|
+
rack (2.2.3)
|
18
|
+
rake (13.0.1)
|
19
19
|
rspec (3.8.0)
|
20
20
|
rspec-core (~> 3.8.0)
|
21
21
|
rspec-expectations (~> 3.8.0)
|
@@ -43,7 +43,7 @@ DEPENDENCIES
|
|
43
43
|
bump (~> 0.5)
|
44
44
|
lightstep!
|
45
45
|
rack (~> 2.0)
|
46
|
-
rake (~>
|
46
|
+
rake (~> 13.0)
|
47
47
|
rspec (~> 3.0)
|
48
48
|
simplecov (~> 0.16)
|
49
49
|
timecop (~> 0.8.0)
|
data/lib/lightstep/version.rb
CHANGED
data/lightstep.gemspec
CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
|
23
23
|
spec.add_dependency 'concurrent-ruby', '~> 1.0'
|
24
24
|
spec.add_dependency 'opentracing', '~> 0.5.0'
|
25
|
-
spec.add_development_dependency 'rake', '~>
|
25
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
26
26
|
spec.add_development_dependency 'rack', '~> 2.0'
|
27
27
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
28
28
|
spec.add_development_dependency 'bump', '~> 0.5'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lightstep
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lightstep
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '13.0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '13.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rack
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,7 +122,7 @@ dependencies:
|
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: 0.8.0
|
125
|
-
description:
|
125
|
+
description:
|
126
126
|
email:
|
127
127
|
- support@lightstep.com
|
128
128
|
executables: []
|
@@ -134,6 +134,7 @@ files:
|
|
134
134
|
- ".rspec"
|
135
135
|
- ".rubocop.yml"
|
136
136
|
- CHANGELOG.md
|
137
|
+
- CONTRIBUTING.md
|
137
138
|
- Gemfile
|
138
139
|
- Gemfile.lock
|
139
140
|
- LICENSE.txt
|
@@ -172,7 +173,7 @@ licenses:
|
|
172
173
|
- MIT
|
173
174
|
metadata:
|
174
175
|
changelog_uri: https://github.com/lightstep/lightstep-tracer-ruby/blob/master/CHANGELOG.md
|
175
|
-
post_install_message:
|
176
|
+
post_install_message:
|
176
177
|
rdoc_options: []
|
177
178
|
require_paths:
|
178
179
|
- lib
|
@@ -188,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
189
|
version: '0'
|
189
190
|
requirements: []
|
190
191
|
rubygems_version: 3.0.3
|
191
|
-
signing_key:
|
192
|
+
signing_key:
|
192
193
|
specification_version: 4
|
193
194
|
summary: LightStep OpenTracing Ruby bindings
|
194
195
|
test_files: []
|