dapr 0.2.4 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.release-please-manifest.json +1 -1
- data/.version.txt +1 -1
- data/CHANGELOG.md +15 -0
- data/Readme.adoc +6 -0
- data/ci/publish-gem.sh +4 -4
- data/lib/dapr/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a4ae91a840e9e8bd3f0690d7df96ca49ffc67bab2335d875f58742aa7559d26
|
4
|
+
data.tar.gz: 05e4355dbc51c83e9e05a3eff5e835441d2c48d8f4727a23acf1ff73624a5b4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32f912473a0eb40cf9790d2a5e5816f1a3c273695e5bffb2d014cb60506ab83f3f1eba8c0a81a4d280162559df5f2ff5fae258d19dd46881042cedc9b6e78229
|
7
|
+
data.tar.gz: a0df7ede1af8f9700efd0a98ec3432dec5284a52e7011a92fbe90897954a52a1517be382b2a5b88ae16e0952795303bc29134e89ec9a89bf72b108299ca4e316
|
data/.version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.2.6](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.5...v0.2.6) (2024-06-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* Document Configuration for consumption ([#43](https://github.com/rubyists/dapr-ruby-client/issues/43)) ([5142d5b](https://github.com/rubyists/dapr-ruby-client/commit/5142d5bc85a2c4aa5da18aa91897569118d645df))
|
9
|
+
|
10
|
+
## [0.2.5](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.4...v0.2.5) (2024-06-03)
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* **ci:** Move conditional to the run script ([#40](https://github.com/rubyists/dapr-ruby-client/issues/40)) ([cb8a15f](https://github.com/rubyists/dapr-ruby-client/commit/cb8a15f60d55928258c832005607a0368ba84b40))
|
16
|
+
* **ci:** Only publish gem when release is created ([#38](https://github.com/rubyists/dapr-ruby-client/issues/38)) ([086382f](https://github.com/rubyists/dapr-ruby-client/commit/086382fbd368088ca6d3e590dc9daaeb2684bf42))
|
17
|
+
|
3
18
|
## [0.2.4](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.3...v0.2.4) (2024-06-03)
|
4
19
|
|
5
20
|
|
data/Readme.adoc
CHANGED
@@ -127,6 +127,12 @@ Implementation of {secret-block}
|
|
127
127
|
|
128
128
|
Implementation of {configuration-block}
|
129
129
|
|
130
|
+
[source,ruby]
|
131
|
+
----
|
132
|
+
require 'dapr/client/configuration'
|
133
|
+
value = Rubyists::Dapr::Client::Configuration.get('TEST_KEY')
|
134
|
+
----
|
135
|
+
|
130
136
|
=== Distributed Lock
|
131
137
|
|
132
138
|
Implementation of {distributed-lock-block}
|
data/ci/publish-gem.sh
CHANGED
@@ -18,11 +18,11 @@ me=${BASH_SOURCE[0]}
|
|
18
18
|
here=$(cd "$(dirname "$me")" && pwd)
|
19
19
|
just_me=$(basename "$me")
|
20
20
|
|
21
|
-
: ${GEM_NAME:=dapr}
|
22
|
-
: ${GIT_ORG:=rubyists}
|
21
|
+
: "${GEM_NAME:=dapr}"
|
22
|
+
: "${GIT_ORG:=rubyists}"
|
23
23
|
|
24
24
|
GEM_HOST=$1
|
25
|
-
: ${GEM_HOST:=rubygems}
|
25
|
+
: "${GEM_HOST:=rubygems}"
|
26
26
|
|
27
27
|
case "$GEM_HOST" in
|
28
28
|
rubygems)
|
@@ -32,7 +32,7 @@ case "$GEM_HOST" in
|
|
32
32
|
github)
|
33
33
|
gem_key='github'
|
34
34
|
gem_host="https://rubygems.pkg.github.com/$GIT_ORG"
|
35
|
-
sed -
|
35
|
+
sed --in-place=.bak -e "s|https://rubygems.org|https://rubygems.pkg.github.com/$GIT_ORG|" "$here/../$GEM_NAME".gemspec
|
36
36
|
trap 'mv -v "$here/../$GEM_NAME".gemspec.bak "$here/../$GEM_NAME".gemspec' EXIT
|
37
37
|
;;
|
38
38
|
*)
|
data/lib/dapr/version.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dapr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tj (bougyman) Vanderpoel
|
8
8
|
- afulki
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
12
|
date: 2024-06-03 00:00:00.000000000 Z
|
@@ -77,7 +77,7 @@ metadata:
|
|
77
77
|
source_code_uri: https://github.com/rubyists/dapr
|
78
78
|
changelog_uri: https://github.com/rubyists/dapr/blob/main/CHANGELOG.md
|
79
79
|
rubygems_mfa_required: 'true'
|
80
|
-
post_install_message:
|
80
|
+
post_install_message:
|
81
81
|
rdoc_options: []
|
82
82
|
require_paths:
|
83
83
|
- lib
|
@@ -92,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0'
|
94
94
|
requirements: []
|
95
|
-
rubygems_version: 3.5.
|
96
|
-
signing_key:
|
95
|
+
rubygems_version: 3.5.9
|
96
|
+
signing_key:
|
97
97
|
specification_version: 4
|
98
98
|
summary: Library for interacting with dapr.
|
99
99
|
test_files: []
|