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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7557653e645b1b964f55e38ed16cc2b097e69de47cf9cbe8509cb35a043c6887
4
- data.tar.gz: d235d474a3f637bc898ded94aaf1f7e823ebb6516241f7d2a8986cdd09d02d9f
3
+ metadata.gz: 8736bfb9267b05b1f5878d3d46cd65317c6194e25ba58abc110c32dbd319440d
4
+ data.tar.gz: 596d3a33a622be3a3de76ef63e4a183882e4387d661fc639b8230e43241e8bde
5
5
  SHA512:
6
- metadata.gz: 1f1f751d58551b253c2bc2d5ecaf80d54ec43a82a6c53d9dd197a18462211719c7cff25aa235c8e27ced921cf9ff4d90543c3eb136a039c84a2afb39efa498ce
7
- data.tar.gz: e62bc7c55f7fc623632a79e916bd301563d0478996e1398f28e436eb7b839854b698f268df70bac9b9768ad22222476f32863e52b1edd24d0060d12e0930fcd5
6
+ metadata.gz: cd74588e1956455f165fd23fd63d9fc7fc5d4f738fb66186f6bff8b8ccff17d67442443c341839631777425d37acbe3f000cb009b16a7c848e3b65392c69212e
7
+ data.tar.gz: e0929839908d088a9485c6b26cc06200414c1f1b4d690fa8040ed873092b97b195456546f9b5ffec745767799e606f1e496fff263e7e08a30ee88a800c1d3072
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.2.9"
2
+ ".": "0.2.11"
3
3
  }
data/.version.txt CHANGED
@@ -1 +1 @@
1
- 0.2.9
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`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to https://rubygems.org[rubygems.org].
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.19}"
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.1}"
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
@@ -3,7 +3,7 @@
3
3
  module Rubyists
4
4
  module Dapr
5
5
  # x-release-please-start-version
6
- VERSION = '0.2.9'
6
+ VERSION = '0.2.11'
7
7
  # x-release-please-end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dapr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.9
4
+ version: 0.2.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tj (bougyman) Vanderpoel