Skip to content

Commit be9de32

Browse files
committed
Bump dependencies
1 parent 33f08b8 commit be9de32

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ docker run \
1414
--name trino-git \
1515
-e REPO_URL=https://github.com/nineinchnick/trino-rest.git \
1616
-p 8080:8080 \
17-
nineinchnick/trino-git:0.19
17+
nineinchnick/trino-git:0.22
1818
```
1919

2020
Then use your favourite SQL client to connect to Trino running at http://localhost:8080
2121

2222
# Usage
2323

24-
Download one of the ZIP packages, unzip it and copy the `trino-git-0.19` directory to the plugin directory on every node in your Trino cluster.
24+
Download one of the ZIP packages, unzip it and copy the `trino-git-0.22` directory to the plugin directory on every node in your Trino cluster.
2525
Create a `github.properties` file in your Trino catalog directory and point to a remote repo.
2626
You can also use a path to a local repo if it's available on every worker node.
2727

@@ -97,12 +97,12 @@ docker run \
9797
-p 8080:8080 \
9898
--name trino \
9999
-d \
100-
trinodb/trino:378
100+
trinodb/trino:384
101101
```
102102

103103
Connect to that server using:
104104
```bash
105-
docker run -it --rm --link trino trinodb/trino:378 trino --server trino:8080 --catalog git --schema default
105+
docker run -it --rm --link trino trinodb/trino:384 trino --server trino:8080 --catalog git --schema default
106106
```
107107

108108
# References

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<parent>
3131
<groupId>io.airlift</groupId>
3232
<artifactId>airbase</artifactId>
33-
<version>124</version>
33+
<version>125</version>
3434
</parent>
3535

3636
<licenses>
@@ -52,10 +52,10 @@
5252
<air.check.fail-checkstyle>true</air.check.fail-checkstyle>
5353
<air.check.skip-checkstyle>false</air.check.skip-checkstyle>
5454

55-
<dep.trino.version>381</dep.trino.version>
55+
<dep.trino.version>384</dep.trino.version>
5656
<dep.airlift.version>215</dep.airlift.version>
5757
<dep.packaging.version>${dep.airlift.version}</dep.packaging.version>
58-
<dep.errorprone.version>2.13.1</dep.errorprone.version>
58+
<dep.errorprone.version>2.14.0</dep.errorprone.version>
5959
<dep.jackson.version>2.13.3</dep.jackson.version>
6060
<dep.testng.version>7.6.0</dep.testng.version>
6161

@@ -283,7 +283,7 @@
283283
<plugin>
284284
<groupId>org.apache.maven.plugins</groupId>
285285
<artifactId>maven-scm-plugin</artifactId>
286-
<version>1.12.2</version>
286+
<version>1.13.0</version>
287287
<configuration>
288288
<pushChanges>true</pushChanges>
289289
</configuration>

0 commit comments

Comments
 (0)