dapr 0.2.9 → 0.2.11
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 +17 -0
- data/Readme.adoc +3 -1
- data/ci/build_image.sh +10 -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: 8736bfb9267b05b1f5878d3d46cd65317c6194e25ba58abc110c32dbd319440d
|
4
|
+
data.tar.gz: 596d3a33a622be3a3de76ef63e4a183882e4387d661fc639b8230e43241e8bde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd74588e1956455f165fd23fd63d9fc7fc5d4f738fb66186f6bff8b8ccff17d67442443c341839631777425d37acbe3f000cb009b16a7c848e3b65392c69212e
|
7
|
+
data.tar.gz: e0929839908d088a9485c6b26cc06200414c1f1b4d690fa8040ed873092b97b195456546f9b5ffec745767799e606f1e496fff263e7e08a30ee88a800c1d3072
|
data/.version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.11
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.2.11](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.10...v0.2.11) (2024-06-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* **build:** Lowers concurrency for container jobs to 1 ([#59](https://github.com/rubyists/dapr-ruby-client/issues/59)) ([70c1c56](https://github.com/rubyists/dapr-ruby-client/commit/70c1c56990dbf4a87f8088b40483a213a674f793))
|
9
|
+
* Use secret references in matrix values ([#61](https://github.com/rubyists/dapr-ruby-client/issues/61)) ([9f45785](https://github.com/rubyists/dapr-ruby-client/commit/9f4578546cc77da79c5548347bee1b2ed6e790ec))
|
10
|
+
* Uses correct rubygems secret ([#60](https://github.com/rubyists/dapr-ruby-client/issues/60)) ([5de5ff4](https://github.com/rubyists/dapr-ruby-client/commit/5de5ff44bf0b06ee1652616f58c29a411ecb4e18))
|
11
|
+
|
12
|
+
## [0.2.10](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.9...v0.2.10) (2024-06-03)
|
13
|
+
|
14
|
+
|
15
|
+
### Bug Fixes
|
16
|
+
|
17
|
+
* Release testing PR ([#57](https://github.com/rubyists/dapr-ruby-client/issues/57)) ([1f56abf](https://github.com/rubyists/dapr-ruby-client/commit/1f56abfb350c8d4886fcc2a2fd7183b2f6456d35))
|
18
|
+
* **workflow:** Corrects workflow syntax ([#55](https://github.com/rubyists/dapr-ruby-client/issues/55)) ([dee10a4](https://github.com/rubyists/dapr-ruby-client/commit/dee10a4a9475f73b1b52bbc0408564c05bc83ab8))
|
19
|
+
|
3
20
|
## [0.2.9](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.8...v0.2.9) (2024-06-03)
|
4
21
|
|
5
22
|
|
data/Readme.adoc
CHANGED
@@ -159,7 +159,9 @@ Implementation of {cryptography-block}
|
|
159
159
|
|
160
160
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
161
161
|
|
162
|
-
To install this gem on your local machine, run `bundle exec rake install`.
|
162
|
+
To install this gem on your local machine, run `bundle exec rake install`.
|
163
|
+
|
164
|
+
Releases are handled by release-please in github actions.
|
163
165
|
|
164
166
|
== Contributing
|
165
167
|
|
data/ci/build_image.sh
CHANGED
@@ -25,12 +25,20 @@ cd "$repo_top" || {
|
|
25
25
|
}
|
26
26
|
|
27
27
|
base_dir=$(basename "$(pwd)")
|
28
|
-
: "${ALPINE_VERSION:=3.
|
28
|
+
: "${ALPINE_VERSION:=3.20}"
|
29
29
|
: "${BUILD_CONTEXT:=$(pwd)}"
|
30
30
|
: "${IMAGE_NAME:=$base_dir}"
|
31
31
|
: "${LICENSE:=MIT}"
|
32
32
|
: "${REGISTRY:=ghcr.io}"
|
33
|
-
: "${RUBY_VERSION:=3.3.
|
33
|
+
: "${RUBY_VERSION:=3.3.2}"
|
34
|
+
|
35
|
+
base_image_tag="$RUBY_VERSION-alpine$ALPINE_VERSION"
|
36
|
+
base_exists=$(skopeo list-tags docker://docker.io/ruby |jq -r "any(.Tags[] == \"$base_image_tag\"; .)")
|
37
|
+
if [ "$base_exists" = "false" ]
|
38
|
+
then
|
39
|
+
printf "Base image %s does not exist at docker.io/ruby, cannot build.\n" "$base_image_tag" >&2
|
40
|
+
exit 99
|
41
|
+
fi
|
34
42
|
|
35
43
|
usage() { # {{{
|
36
44
|
cat <<-EOT
|
data/lib/dapr/version.rb
CHANGED