dapr 0.2.11 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8736bfb9267b05b1f5878d3d46cd65317c6194e25ba58abc110c32dbd319440d
4
- data.tar.gz: 596d3a33a622be3a3de76ef63e4a183882e4387d661fc639b8230e43241e8bde
3
+ metadata.gz: ddccde41cfa4987277e70db836676786db13d6738a1a38b4ace5c36a2058d352
4
+ data.tar.gz: d9cc8aae9caa4391550971b33efed13c78ce6c3b412ba8d4a69e4a6ac92c29de
5
5
  SHA512:
6
- metadata.gz: cd74588e1956455f165fd23fd63d9fc7fc5d4f738fb66186f6bff8b8ccff17d67442443c341839631777425d37acbe3f000cb009b16a7c848e3b65392c69212e
7
- data.tar.gz: e0929839908d088a9485c6b26cc06200414c1f1b4d690fa8040ed873092b97b195456546f9b5ffec745767799e606f1e496fff263e7e08a30ee88a800c1d3072
6
+ metadata.gz: 243bb6776639c2d9269d80d8230914c66d1b155a519c2570b4e65c256fbd1da47bf8fc853e11ef470dd704304bbe471239dfef8cb57e0e860b9ce6a5c2cc63f0
7
+ data.tar.gz: 05ebe5607bccc04e6049ca3c27671e76611ae4bb996542b43989fff2ab86d4f715db13ad6f89b83ab0fb089388da057990ae113300cb08234fa03f51a6d0c72f
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.2.11"
2
+ ".": "0.3.0"
3
3
  }
data/.version.txt CHANGED
@@ -1 +1 @@
1
- 0.2.11
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
- # Only want this part running in CI, with no ~/.gem dir
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
@@ -3,7 +3,7 @@
3
3
  module Rubyists
4
4
  module Dapr
5
5
  # x-release-please-start-version
6
- VERSION = '0.2.11'
6
+ VERSION = '0.3.0'
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.11
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tj (bougyman) Vanderpoel