Skip to content

Commit f8d872f

Browse files
authored
Update libs (#240)
* Big version updates * Update python * Update golang * Update csharp * Update pom.xml * Final push * Updating * Revert "Updating" This reverts commit b96f9cd. * its built with 1.22 * Revert "its built with 1.22" This reverts commit 5c14d3f. * Buiild and exported with 1.22 * go1.20 * Finally
1 parent de3ba41 commit f8d872f

File tree

728 files changed

+20079
-21736
lines changed

Some content is hidden

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

728 files changed

+20079
-21736
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM buildpack-deps:bullseye-scm
22

3-
COPY --from=golang:1.18-bullseye /usr/local/go/ /usr/local/go/
3+
COPY --from=golang:1.20-bullseye /usr/local/go/ /usr/local/go/
44

55
ENV PATH=/usr/local/go/bin:${PATH}
66
ENV GOPATH=/go

buf.gen.all.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ managed:
77
except:
88
- buf.build/googleapis/googleapis
99
plugins:
10-
- plugin: buf.build/protocolbuffers/go:v1.31.0
10+
- plugin: buf.build/protocolbuffers/go:v1.33.0
1111
out: gen/go
1212
opt: paths=source_relative
13-
- plugin: buf.build/protocolbuffers/python:v23.4
13+
- plugin: buf.build/protocolbuffers/python:v29.3
1414
out: gen/python
1515
- plugin: buf.build/protocolbuffers/js:v3.21.2
1616
out: gen/js
1717
opt: import_style=commonjs,binary
18-
- plugin: buf.build/protocolbuffers/java:v23.4
18+
- plugin: buf.build/protocolbuffers/java:v29.3
1919
out: gen/java
20-
- plugin: buf.build/protocolbuffers/csharp:v23.4
20+
- plugin: buf.build/protocolbuffers/csharp:v29.3
2121
out: gen/csharp
2222
opt: base_namespace=

buf.gen.deps.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ plugins:
1212
- plugin: buf.build/protocolbuffers/js:v3.21.2
1313
out: gen/js
1414
opt: import_style=commonjs,binary
15-
- plugin: buf.build/protocolbuffers/java:v23.4
15+
- plugin: buf.build/protocolbuffers/java:v29.3
1616
out: gen/java
17-
- plugin: buf.build/protocolbuffers/csharp:v23.4
17+
- plugin: buf.build/protocolbuffers/csharp:v29.3
1818
out: gen/csharp
1919
opt: base_namespace=

buf.gen.grpc.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ plugins:
1515
opt:
1616
- paths=source_relative
1717
- require_unimplemented_servers=false
18-
- plugin: buf.build/grpc/python:v1.56.2
18+
- plugin: buf.build/grpc/python:v1.70.1
1919
out: gen/python
20-
- plugin: buf.build/grpc/web:v1.4.2
20+
- plugin: buf.build/grpc/web:v1.5.0
2121
out: gen/js
2222
opt: import_style=commonjs+dts,mode=grpcwebtext
23-
- plugin: buf.build/grpc/java:v1.56.1
23+
- plugin: buf.build/grpc/java:v1.70.0
2424
out: gen/java
25-
- plugin: buf.build/grpc/csharp:v1.56.2
25+
- plugin: buf.build/grpc/csharp:v1.70.1
2626
out: gen/csharp

buf.gen.openapiv2.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: v1
22
plugins:
3-
- plugin: buf.build/grpc-ecosystem/openapiv2:v2.16.0
3+
- plugin: buf.build/grpc-ecosystem/openapiv2:v2.26.1
44
out: gen/openapiv2
55
opt:
66
- logtostderr=true

buf.gen.python.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: v1
22
plugins:
3-
- plugin: buf.build/protocolbuffers/pyi:v23.4
3+
- plugin: buf.build/protocolbuffers/pyi:v29.3
44
out: gen/python
5-
- plugin: buf.build/protocolbuffers/python:v23.4
5+
- plugin: buf.build/protocolbuffers/python:v29.3
66
out: gen/python

examples/csharp/AutosuggestCreateDatasetExample/CreateDatasetExample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Grpc.Net.Client" Version="2.50.0" />
12-
<PackageReference Include="vmlapis" Version="1.0.10" />
11+
<PackageReference Include="Grpc.Net.Client" Version="2.67.0" />
12+
<PackageReference Include="vmlapis" Version="1.6.2" />
1313
</ItemGroup>
1414
</Project>

examples/csharp/SmartscanAnnotateDocumentExample/AnnotateDocumentExample.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
9-
9+
1010
<ItemGroup>
11-
<PackageReference Include="Grpc.Net.Client" Version="2.50.0" />
12-
<PackageReference Include="vmlapis" Version="1.0.10" />
11+
<PackageReference Include="Grpc.Net.Client" Version="2.67.0" />
12+
<PackageReference Include="vmlapis" Version="1.6.2" />
1313
</ItemGroup>
1414
</Project>

examples/csharp/SmartscanRasterizePdfExample/RasterizePdfExample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Grpc.Net.Client" Version="2.50.0" />
12-
<PackageReference Include="vmlapis" Version="1.0.10" />
11+
<PackageReference Include="Grpc.Net.Client" Version="2.67.0" />
12+
<PackageReference Include="vmlapis" Version="1.6.2" />
1313
</ItemGroup>
1414
</Project>

examples/go/AutosuggestCreateDatasetExample/example.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package main
33
import (
44
"context"
55
"fmt"
6+
67
"github.com/e-conomic/vmlapis/gen/go/asgt/data/v1"
78
asgttype "github.com/e-conomic/vmlapis/gen/go/asgt/type"
89
"google.golang.org/grpc"
@@ -16,7 +17,7 @@ func main() {
1617

1718
func CreateDataset(datasetName, datasetType string) {
1819
// create connection
19-
conn, err := grpc.Dial("api.stag.asgt.visma.ai:443", grpc.WithTransportCredentials(credentials.NewTLS(nil)))
20+
conn, err := grpc.NewClient("api.stag.asgt.visma.ai:443", grpc.WithTransportCredentials(credentials.NewTLS(nil)))
2021
if err != nil {
2122
fmt.Println(err)
2223
return
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
module example
22

3-
go 1.19
3+
go 1.24
44

55
require (
6-
github.com/e-conomic/vmlapis v1.0.10
7-
google.golang.org/grpc v1.53.0
6+
github.com/e-conomic/vmlapis v1.6.2
7+
google.golang.org/grpc v1.70.0
88
)
99

1010
require (
11-
github.com/golang/protobuf v1.5.2 // indirect
12-
golang.org/x/net v0.5.0 // indirect
13-
golang.org/x/sys v0.4.0 // indirect
14-
golang.org/x/text v0.6.0 // indirect
11+
golang.org/x/net v0.32.0 // indirect
12+
golang.org/x/sys v0.28.0 // indirect
13+
golang.org/x/text v0.21.0 // indirect
1514
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
16-
google.golang.org/protobuf v1.28.1 // indirect
15+
google.golang.org/protobuf v1.35.2 // indirect
1716
)

examples/go/SmartscanAnnotateDocumentExample/example.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ package main
33
import (
44
"context"
55
"fmt"
6+
"os"
7+
68
"github.com/e-conomic/vmlapis/gen/go/ssn/annotator/v1"
79
ssntype "github.com/e-conomic/vmlapis/gen/go/ssn/type"
810
"google.golang.org/grpc"
911
"google.golang.org/grpc/credentials"
1012
"google.golang.org/grpc/metadata"
11-
"os"
1213
)
1314

1415
func main() {
@@ -17,7 +18,7 @@ func main() {
1718

1819
func AnnotateDocument() {
1920
// create connection
20-
conn, err := grpc.Dial("api.stag.ssn.visma.ai:443", grpc.WithTransportCredentials(credentials.NewTLS(nil)))
21+
conn, err := grpc.NewClient("api.stag.ssn.visma.ai:443", grpc.WithTransportCredentials(credentials.NewTLS(nil)))
2122
if err != nil {
2223
fmt.Println(err)
2324
return
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
module example
22

3-
go 1.19
3+
go 1.24
44

55
require (
6-
github.com/e-conomic/vmlapis v1.0.10
7-
google.golang.org/grpc v1.53.0
6+
github.com/e-conomic/vmlapis v1.6.2
7+
google.golang.org/grpc v1.70.0
88
)
99

1010
require (
11-
github.com/golang/protobuf v1.5.2 // indirect
12-
golang.org/x/net v0.5.0 // indirect
13-
golang.org/x/sys v0.4.0 // indirect
14-
golang.org/x/text v0.6.0 // indirect
11+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
12+
golang.org/x/net v0.32.0 // indirect
13+
golang.org/x/sys v0.28.0 // indirect
14+
golang.org/x/text v0.21.0 // indirect
1515
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
16-
google.golang.org/protobuf v1.28.1 // indirect
16+
google.golang.org/protobuf v1.35.2 // indirect
1717
)

examples/go/SmartscanRasterizePdfExample/example.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ package main
33
import (
44
"context"
55
"fmt"
6+
"os"
7+
68
"github.com/e-conomic/vmlapis/gen/go/ssn/pdfservice/v1"
79
"google.golang.org/grpc"
810
"google.golang.org/grpc/credentials"
911
"google.golang.org/grpc/metadata"
10-
"os"
1112
)
1213

1314
func main() {
@@ -16,7 +17,7 @@ func main() {
1617

1718
func RasterizePdf() {
1819
// create connection
19-
conn, err := grpc.Dial("api.stag.ssn.visma.ai:443", grpc.WithTransportCredentials(credentials.NewTLS(nil)))
20+
conn, err := grpc.NewClient("api.stag.ssn.visma.ai:443", grpc.WithTransportCredentials(credentials.NewTLS(nil)))
2021
if err != nil {
2122
fmt.Println(err)
2223
return
@@ -46,6 +47,10 @@ func RasterizePdf() {
4647

4748
// make async call
4849
call, err := client.RasterizePdf(ctx, request)
50+
if err != nil {
51+
fmt.Println(err)
52+
return
53+
}
4954
response, err := call.Recv()
5055
if err != nil {
5156
return
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
module example
22

3-
go 1.19
3+
go 1.24
44

55
require (
6-
github.com/e-conomic/vmlapis v1.0.10
7-
google.golang.org/grpc v1.53.0
6+
github.com/e-conomic/vmlapis v1.6.2
7+
google.golang.org/grpc v1.70.0
88
)
99

1010
require (
11-
github.com/golang/protobuf v1.5.2 // indirect
12-
golang.org/x/net v0.5.0 // indirect
13-
golang.org/x/sys v0.4.0 // indirect
14-
golang.org/x/text v0.6.0 // indirect
11+
golang.org/x/net v0.32.0 // indirect
12+
golang.org/x/sys v0.28.0 // indirect
13+
golang.org/x/text v0.21.0 // indirect
1514
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
16-
google.golang.org/protobuf v1.28.1 // indirect
15+
google.golang.org/protobuf v1.35.2 // indirect
1716
)

examples/java/AutosuggestCreateDatasetExample/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>ai.visma</groupId>
1313
<artifactId>vml-apis</artifactId>
14-
<version>1.0.10</version>
14+
<version>1.6.2</version>
1515
</dependency>
1616
</dependencies>
1717

examples/java/SmartscanAnnotateDocumentExample/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>ai.visma</groupId>
1313
<artifactId>vml-apis</artifactId>
14-
<version>1.0.10</version>
14+
<version>1.6.2</version>
1515
</dependency>
1616
</dependencies>
1717

examples/java/SmartscanRasterizePdfExample/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>ai.visma</groupId>
1313
<artifactId>vml-apis</artifactId>
14-
<version>1.0.10</version>
14+
<version>1.6.2</version>
1515
</dependency>
1616
</dependencies>
1717

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>org.example</groupId>
5+
<artifactId>grpc_client</artifactId>
6+
<version>1.0-SNAPSHOT</version>
7+
<name>Archetype - grpc_client</name>
8+
<url>http://maven.apache.org</url>
9+
10+
<dependencies>
11+
<dependency>
12+
<groupId>ai.visma</groupId>
13+
<artifactId>vml-apis</artifactId>
14+
<version>1.0.10</version>
15+
</dependency>
16+
</dependencies>
17+
18+
<distributionManagement>
19+
<snapshotRepository>
20+
<id>artifact-registry</id>
21+
<url>artifactregistry://europe-west4-maven.pkg.dev/dev-vml-cm/vml-apis-java</url>
22+
</snapshotRepository>
23+
<repository>
24+
<id>artifact-registry</id>
25+
<url>artifactregistry://europe-west4-maven.pkg.dev/dev-vml-cm/vml-apis-java</url>
26+
</repository>
27+
</distributionManagement>
28+
29+
<repositories>
30+
<repository>
31+
<id>artifact-registry</id>
32+
<url>artifactregistry://europe-west4-maven.pkg.dev/dev-vml-cm/vml-apis-java</url>
33+
<releases>
34+
<enabled>true</enabled>
35+
</releases>
36+
<snapshots>
37+
<enabled>true</enabled>
38+
</snapshots>
39+
</repository>
40+
</repositories>
41+
42+
<build>
43+
<extensions>
44+
<extension>
45+
<groupId>com.google.cloud.artifactregistry</groupId>
46+
<artifactId>artifactregistry-maven-wagon</artifactId>
47+
<version>2.1.0</version>
48+
</extension>
49+
</extensions>
50+
<plugins>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-compiler-plugin</artifactId>
54+
<configuration>
55+
<source>8</source>
56+
<target>8</target>
57+
</configuration>
58+
</plugin>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-shade-plugin</artifactId>
62+
<version>3.4.1</version>
63+
<executions>
64+
<execution>
65+
<phase>package</phase>
66+
<goals>
67+
<goal>shade</goal>
68+
</goals>
69+
<configuration>
70+
<shadedArtifactAttached>true</shadedArtifactAttached>
71+
<transformers>
72+
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer">
73+
</transformer>
74+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
75+
<mainClass>org.example.Client</mainClass>
76+
</transformer>
77+
</transformers>
78+
</configuration>
79+
</execution>
80+
</executions>
81+
</plugin>
82+
</plugins>
83+
</build>
84+
</project>
85+
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
vml-proto==1.0.11
2-
grpcio==1.51.1
3-
protobuf==4.21.12
1+
vml-proto==1.6.2
2+
grpcio==1.70.0
3+
protobuf==5.29.3

0 commit comments

Comments
 (0)