pyroscope-otel 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +7 -2
- data/.github/workflows/release.yml +9 -4
- data/lib/pyroscope/otel/version.rb +1 -1
- data/pyroscope-otel.gemspec +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86616f65263fc9ad10f51a8aedc185649899c3051ee000ad75fc395a7eefc16c
|
4
|
+
data.tar.gz: 0771e0bf70d9cb4d06c18dee227995c70e936ca44388be976a522b89ea21d64f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8339769873776d5091d4de21989be57b56d5d5af4a2900606752acdc81c7a1f2568cd74dd00a4cedb804fd0ee93a53b389c33ba2d9eaf18a8063cb5568985320
|
7
|
+
data.tar.gz: ebb37f5aeb8d262f42beca17342b2a9679c832e39e1e7f21ba5a694f4bb23d46ecc4a8f98c9da46e176968581f5e01d48d3cb8ebe0bd327434774055eca8c7f9
|
data/.github/workflows/main.yml
CHANGED
@@ -2,13 +2,18 @@ name: Ruby
|
|
2
2
|
|
3
3
|
on: [push,pull_request]
|
4
4
|
|
5
|
+
permissions:
|
6
|
+
contents: read
|
7
|
+
|
5
8
|
jobs:
|
6
9
|
build:
|
7
10
|
runs-on: ubuntu-latest
|
8
11
|
steps:
|
9
|
-
- uses: actions/checkout@
|
12
|
+
- uses: actions/checkout@v4
|
13
|
+
with:
|
14
|
+
persist-credentials: false
|
10
15
|
- name: Set up Ruby
|
11
|
-
uses: ruby/setup-ruby@v1
|
16
|
+
uses: ruby/setup-ruby@dffc446db9ba5a0c4446edb5bca1c5c473a806c5 # v1.235.0
|
12
17
|
with:
|
13
18
|
ruby-version: 3.0.0
|
14
19
|
- name: Run the default task
|
@@ -7,22 +7,27 @@ on:
|
|
7
7
|
tags:
|
8
8
|
- v*
|
9
9
|
|
10
|
+
permissions:
|
11
|
+
contents: read
|
12
|
+
id-token: write
|
13
|
+
|
10
14
|
jobs:
|
11
15
|
build:
|
12
16
|
runs-on: ubuntu-latest
|
13
17
|
|
14
18
|
steps:
|
15
|
-
- uses: actions/checkout@
|
16
|
-
|
19
|
+
- uses: actions/checkout@v4
|
20
|
+
with:
|
21
|
+
persist-credentials: false
|
17
22
|
- name: Configure git
|
18
23
|
run: |
|
19
24
|
git config user.name "Pyroscope Bot"
|
20
25
|
git config user.email "dmitry+bot@pyroscope.io"
|
21
26
|
|
22
27
|
- name: Release Gem
|
23
|
-
uses: cadwallion/publish-rubygems-action@
|
28
|
+
uses: cadwallion/publish-rubygems-action@94a6f4cd5350581749c569b5001eecc864e3ad0b
|
24
29
|
if: contains(github.ref, 'refs/tags/v')
|
25
30
|
env:
|
26
31
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
27
32
|
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
|
28
|
-
RELEASE_COMMAND: rake build release:source_control_push release:rubygem_push
|
33
|
+
RELEASE_COMMAND: rake build release:source_control_push release:rubygem_push
|
data/pyroscope-otel.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pyroscope-otel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tolyan Korniltsev
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: opentelemetry-api
|
@@ -27,16 +27,22 @@ dependencies:
|
|
27
27
|
name: pyroscope
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
29
29
|
requirements:
|
30
|
-
- - "
|
30
|
+
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 0.5.1
|
33
|
+
- - "<"
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '1.0'
|
33
36
|
type: :runtime
|
34
37
|
prerelease: false
|
35
38
|
version_requirements: !ruby/object:Gem::Requirement
|
36
39
|
requirements:
|
37
|
-
- - "
|
40
|
+
- - ">="
|
38
41
|
- !ruby/object:Gem::Version
|
39
42
|
version: 0.5.1
|
43
|
+
- - "<"
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '1.0'
|
40
46
|
description: Pyroscope OTEL integration
|
41
47
|
email:
|
42
48
|
- anatoly@pyroscope.io
|
@@ -79,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
79
85
|
- !ruby/object:Gem::Version
|
80
86
|
version: '0'
|
81
87
|
requirements: []
|
82
|
-
rubygems_version: 3.6.
|
88
|
+
rubygems_version: 3.6.7
|
83
89
|
specification_version: 4
|
84
90
|
summary: Pyroscope OTEL integration
|
85
91
|
test_files: []
|