dapr 0.2.11 → 0.3.1
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 +18 -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: eb950146d2c73109f4c62d4c698ca7c949ae1ec17c87a0b0acffde6fbff6fd5a
|
4
|
+
data.tar.gz: 0b22b033b5f96dc35411159ec1b48984accd79f5682c3eaca57f19b9948433e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 402fea67d0ae37a5c5a99e36fe7af50b2eb7717f48bb3b89cbed3c1f6d62d52f97624d2125ea4cd3a7f5916a9f7d416aee05765d5344446e82a10bb17c2c4fb7
|
7
|
+
data.tar.gz: 14d2b26b6ccb5e5d16a7e8d5cd577457918f147a56f79f581a5d6f6f47ce73a438b042ce68c0f5e1c778f3285688208f43c059e0d350ba833852faef54d1abd5
|
data/.version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.3.1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.3.1](https://github.com/rubyists/dapr-ruby-client/compare/v0.3.0...v0.3.1) (2024-06-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Remove owner/ from the published ghcr.io image ([#67](https://github.com/rubyists/dapr-ruby-client/issues/67)) ([47100ba](https://github.com/rubyists/dapr-ruby-client/commit/47100ba1b4621ad351e8349a2b185ac4bd424c21))
|
9
|
+
|
10
|
+
## [0.3.0](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.11...v0.3.0) (2024-06-03)
|
11
|
+
|
12
|
+
|
13
|
+
### ⚠ BREAKING CHANGES
|
14
|
+
|
15
|
+
* Forcing release with a brilliant feature ([#64](https://github.com/rubyists/dapr-ruby-client/issues/64))
|
16
|
+
|
17
|
+
### Features
|
18
|
+
|
19
|
+
* 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))
|
20
|
+
|
3
21
|
## [0.2.11](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.10...v0.2.11) (2024-06-03)
|
4
22
|
|
5
23
|
|
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