dapr 0.2.11 → 0.3.0
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 +11 -0
- data/Readme.adoc +13 -0
- data/ci/publish-gem.sh +6 -2
- data/lib/dapr/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddccde41cfa4987277e70db836676786db13d6738a1a38b4ace5c36a2058d352
|
4
|
+
data.tar.gz: d9cc8aae9caa4391550971b33efed13c78ce6c3b412ba8d4a69e4a6ac92c29de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 243bb6776639c2d9269d80d8230914c66d1b155a519c2570b4e65c256fbd1da47bf8fc853e11ef470dd704304bbe471239dfef8cb57e0e860b9ce6a5c2cc63f0
|
7
|
+
data.tar.gz: 05ebe5607bccc04e6049ca3c27671e76611ae4bb996542b43989fff2ab86d4f715db13ad6f89b83ab0fb089388da057990ae113300cb08234fa03f51a6d0c72f
|
data/.version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.3.0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.3.0](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.11...v0.3.0) (2024-06-03)
|
4
|
+
|
5
|
+
|
6
|
+
### ⚠ BREAKING CHANGES
|
7
|
+
|
8
|
+
* Forcing release with a brilliant feature ([#64](https://github.com/rubyists/dapr-ruby-client/issues/64))
|
9
|
+
|
10
|
+
### Features
|
11
|
+
|
12
|
+
* Forcing release with a brilliant feature ([#64](https://github.com/rubyists/dapr-ruby-client/issues/64)) ([05dcacd](https://github.com/rubyists/dapr-ruby-client/commit/05dcacd5278a622fed94acdbc025d98b621b948a))
|
13
|
+
|
3
14
|
## [0.2.11](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.10...v0.2.11) (2024-06-03)
|
4
15
|
|
5
16
|
|
data/Readme.adoc
CHANGED
@@ -46,6 +46,19 @@ gem 'datadog_api_client'
|
|
46
46
|
gem 'grpc', force_ruby_platform: true
|
47
47
|
----
|
48
48
|
|
49
|
+
=== Docker
|
50
|
+
|
51
|
+
If you find yourself waiting 20 minutes to build the grpc gem
|
52
|
+
in your CI environments, you might want to use the images
|
53
|
+
we publish (built from https://docker.io/library/ruby images)
|
54
|
+
|
55
|
+
.Example Dockerfile
|
56
|
+
[source,docker]
|
57
|
+
----
|
58
|
+
FROM ghcr.io/rubyists/dapr-ruby-client:0.3.0-ruby3.3.2-alpine3.20
|
59
|
+
RUN ...
|
60
|
+
----
|
61
|
+
|
49
62
|
== Usage
|
50
63
|
|
51
64
|
Dapr being such a Smörgåsbord, this library exposes each {dapr-building-block} as either a
|
data/ci/publish-gem.sh
CHANGED
@@ -32,7 +32,9 @@ case "$GEM_HOST" in
|
|
32
32
|
github)
|
33
33
|
gem_key='github'
|
34
34
|
gem_host="https://rubygems.pkg.github.com/$GIT_ORG"
|
35
|
+
# Replace the gem host in the gemspec, so it allows pushing to the GitHub package registry
|
35
36
|
sed --in-place=.bak -e "s|https://rubygems.org|https://rubygems.pkg.github.com/$GIT_ORG|" "$here/../$GEM_NAME".gemspec
|
37
|
+
# Restore the original gemspec after the script finishes
|
36
38
|
trap 'mv -v "$here/../$GEM_NAME".gemspec.bak "$here/../$GEM_NAME".gemspec' EXIT
|
37
39
|
;;
|
38
40
|
*)
|
@@ -41,12 +43,14 @@ case "$GEM_HOST" in
|
|
41
43
|
;;
|
42
44
|
esac
|
43
45
|
|
44
|
-
#
|
46
|
+
# We only want this part running in CI, with no ~/.gem dir
|
47
|
+
# For local testing, you should have a ~/.gem/credentials file with
|
48
|
+
# the keys you need to push to rubygems or github
|
45
49
|
if [ ! -d ~/.gem ]
|
46
50
|
then
|
47
51
|
if [ -z "$GEM_TOKEN" ]
|
48
52
|
then
|
49
|
-
printf 'No GEM_TOKEN provided, cannot publish\n'
|
53
|
+
printf 'No GEM_TOKEN provided, cannot publish\n' >&2
|
50
54
|
exit 1
|
51
55
|
fi
|
52
56
|
mkdir -p ~/.gem
|
data/lib/dapr/version.rb
CHANGED