Skip to content

Commit 29d3697

Browse files
committed
Update Feb 28 2024
Signed-off-by: Luis Pabón <lpabon@purestorage.com>
1 parent 81e7ec8 commit 29d3697

File tree

151 files changed

+2305
-3052
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+2305
-3052
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ container-buildx-uninstall:
7979
./venv:
8080
python3 -m venv venv
8181
bash -c "source venv/bin/activate && \
82+
pip3 install --upgrade pip && \
8283
pip3 install -r requirements.txt"
8384
@echo "Type: 'source venv/bin/active' to get access to mkdocs"
8485

docs/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -689,10 +689,10 @@ <h1 id="welcome-to-grpc-framework">Welcome to grpc-framework<a class="headerlink
689689
</ul>
690690
<h2 id="usage">Usage<a class="headerlink" href="#usage" title="Permanent link">&para;</a></h2>
691691
<p>To add the library to your Golang application use the following command:</p>
692-
<pre><code class="language-bash">go get github.com/libopenstorage/grpc-framework@v0.1.1
692+
<pre><code class="language-bash">go get github.com/libopenstorage/grpc-framework@v0.1.2
693693
</code></pre>
694694
<p>Also, use the following container version on your builds:</p>
695-
<pre><code>quay.io/openstorage/grpc-framework:v0.1.1
695+
<pre><code>quay.io/openstorage/grpc-framework:v0.1.2
696696
</code></pre>
697697
<p>Here is an example:</p>
698698
<pre><code class="language-Makefile">PROTO_FILE = ./api/hello.proto
@@ -706,7 +706,7 @@ <h2 id="usage">Usage<a class="headerlink" href="#usage" title="Permanent link">&
706706
-e &quot;PROTO_USER=$(shell id -u)&quot; \
707707
-e &quot;PROTO_GROUP=$(shell id -g)&quot; \
708708
-e &quot;PATH=/bin:/usr/bin:/usr/local/bin:/go/bin:/usr/local/go/bin&quot; \
709-
quay.io/openstorage/grpc-framework:v0.1.1 \
709+
quay.io/openstorage/grpc-framework:v0.1.2 \
710710
make docker-proto
711711

712712
docker-proto:

docs/intro/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ <h2 id="containerize-tools">Containerize tools<a class="headerlink" href="#conta
841841
-e &quot;PROTO_USER=$(shell id -u)&quot; \
842842
-e &quot;PROTO_GROUP=$(shell id -g)&quot; \
843843
-e &quot;PATH=/bin:/usr/bin:/usr/local/bin:/go/bin:/usr/local/go/bin&quot; \
844-
quay.io/openstorage/grpc-framework:v0.1.1 \
844+
quay.io/openstorage/grpc-framework:v0.1.2 \
845845
make docker-proto
846846

847847
docker-proto:

docs/search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/sitemap.xml.gz

0 Bytes
Binary file not shown.

docs/tutorial/intro/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ <h2 id="sample-application">Sample Application<a class="headerlink" href="#sampl
754754
<pre><code>go mod init hello
755755
</code></pre>
756756
<p>Now add the grpc-framework as a dependency:</p>
757-
<pre><code>go get github.com/libopenstorage/grpc-framework@v0.0.8
757+
<pre><code>go get github.com/libopenstorage/grpc-framework@v0.1.2
758758
</code></pre>
759759
<p>Let golang determine the rest of the dependencies:</p>
760760
<pre><code>go mod tidy

go.mod

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,37 +8,36 @@ require (
88
github.com/golang/mock v1.6.0
99
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
1010
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
11-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0
11+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1
1212
github.com/pborman/uuid v1.2.1
13-
github.com/prometheus/client_golang v1.18.0
13+
github.com/prometheus/client_golang v1.19.0
1414
github.com/rs/cors v1.10.1
1515
github.com/sirupsen/logrus v1.9.3
1616
github.com/stretchr/testify v1.8.0
1717
golang.org/x/time v0.5.0
18-
google.golang.org/genproto/googleapis/api v0.0.0-20240108191215-35c7eff3a6b1
19-
google.golang.org/grpc v1.60.1
18+
google.golang.org/genproto/googleapis/api v0.0.0-20240228224816-df926f6c8641
19+
google.golang.org/grpc v1.62.0
2020
google.golang.org/protobuf v1.32.0
2121
)
2222

2323
require (
24+
cloud.google.com/go/compute v1.24.0 // indirect
2425
github.com/beorn7/perks v1.0.1 // indirect
2526
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2627
github.com/davecgh/go-spew v1.1.1 // indirect
27-
github.com/go-jose/go-jose/v3 v3.0.1 // indirect
28+
github.com/go-jose/go-jose/v3 v3.0.2 // indirect
2829
github.com/golang/protobuf v1.5.3 // indirect
29-
github.com/google/uuid v1.5.0 // indirect
30-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
30+
github.com/google/uuid v1.6.0 // indirect
3131
github.com/pmezard/go-difflib v1.0.0 // indirect
32-
github.com/prometheus/client_model v0.5.0 // indirect
33-
github.com/prometheus/common v0.45.0 // indirect
32+
github.com/prometheus/client_model v0.6.0 // indirect
33+
github.com/prometheus/common v0.48.0 // indirect
3434
github.com/prometheus/procfs v0.12.0 // indirect
35-
golang.org/x/crypto v0.18.0 // indirect
36-
golang.org/x/net v0.20.0 // indirect
37-
golang.org/x/oauth2 v0.16.0 // indirect
38-
golang.org/x/sys v0.16.0 // indirect
35+
golang.org/x/crypto v0.20.0 // indirect
36+
golang.org/x/net v0.21.0 // indirect
37+
golang.org/x/oauth2 v0.17.0 // indirect
38+
golang.org/x/sys v0.17.0 // indirect
3939
golang.org/x/text v0.14.0 // indirect
4040
google.golang.org/appengine v1.6.8 // indirect
41-
google.golang.org/genproto v0.0.0-20240108191215-35c7eff3a6b1 // indirect
42-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 // indirect
41+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641 // indirect
4342
gopkg.in/yaml.v3 v3.0.1 // indirect
4443
)

0 commit comments

Comments
 (0)