Skip to content

Commit 57aba8c

Browse files
chore(deps): update all non-major regex dependencies (#764)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Max Baumann <[email protected]>
1 parent 958b00f commit 57aba8c

File tree

516 files changed

+51037
-49637
lines changed

Some content is hidden

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

516 files changed

+51037
-49637
lines changed

.github/workflows/buf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
# renovate: datasource=docker depName=golang versioning=docker
1515
GO_VERSION: '1.22'
1616
# renovate: datasource=github-releases depName=bufbuild/buf
17-
BUF_CLI_VERSION: '1.31.0'
17+
BUF_CLI_VERSION: '1.32.2'
1818
# renovate: datasource=github-releases depName=favadi/protoc-go-inject-tag
1919
PROTOC_GO_INJECT_TAG_VERSION: '1.4.0'
2020

.github/workflows/cicd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
env:
1414
# renovate: dev-tag
15-
DEV_TAG: '7'
15+
DEV_TAG: '8'
1616

1717
jobs:
1818

.github/workflows/fly-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: 'Deploy to Fly'
55

66
env:
77
# renovate: datasource=github-releases depName=superfly/flyctl versioning=semver
8-
FLY_CLI_VERSION: '0.2.52'
8+
FLY_CLI_VERSION: '0.2.62'
99

1010
on:
1111
workflow_call:

.github/workflows/migrations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
# renovate: datasource=github-releases depName=golang-migrate/migrate
1212
MIGRATE_VERSION: '4.17.1'
1313
# renovate: datasource=github-releases depName=superfly/flyctl versioning=semver
14-
FLY_CLI_VERSION: '0.2.52'
14+
FLY_CLI_VERSION: '0.2.62'
1515
# renovate: datasource=github-releases depName=sqlc-dev/sqlc
1616
SQLC_VERSION: '1.26.0'
1717

.github/workflows/publish-bufs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ on:
55
branches: [ 'main' ]
66
paths:
77
- proto/**/*.proto
8-
- gen/*/proto/**/*
8+
- gen/**/*
99

1010
env:
1111
# renovate: datasource=github-releases depName=bufbuild/buf
12-
BUF_CLI_VERSION: '1.31.0'
12+
BUF_CLI_VERSION: '1.32.2'
1313
NODE_VERSION: '18.x'
1414
# renovate: datasource=dart-version depName=dart
15-
DART_VERSION: '3.3.4'
15+
DART_VERSION: '3.4.2'
1616

1717
jobs:
1818
check-preconditions:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,6 @@ dist/
513513
downloads/
514514
eggs/
515515
.eggs/
516-
lib/
517516
lib64/
518517
parts/
519518
sdist/

Dockerfile.apisix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:bookworm AS deps
33
# renovate: datasource=github-releases depName=DarthSim/hivemind
44
ARG HIVEMIND_VERSION=1.1.0
55
# renovate: datasource=github-releases depName=dapr/dapr
6-
ARG DAPR_VERSION=1.13.2
6+
ARG DAPR_VERSION=1.13.4
77

88
RUN apt update && \
99
apt install -y wget

Dockerfile.impulse-svc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt update -y && apt-get install python3-dev -y
1111
RUN mkdir -p /libs/python/gen
1212

1313
COPY libs/python/ /libs/python/
14-
COPY gen/python/proto /libs/python/gen/proto/
14+
COPY gen/python /libs/python/gen/
1515
COPY services/impulse_svc/. /app
1616
COPY docker-run-migrations-impulse-svc.sh ./run-migrations.sh
1717
RUN chmod +x run-migrations.sh

Dockerfile.standalone

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ARG HIVEMIND_VERSION=1.1.0
3232
# renovate: datasource=github-releases depName=golang-migrate/migrate
3333
ARG MIGRATE_VERSION=4.17.1
3434
# renovate: datasource=github-releases depName=dapr/dapr
35-
ARG DAPR_VERSION=1.13.2
35+
ARG DAPR_VERSION=1.13.4
3636

3737
RUN apt update && \
3838
apt install -y wget

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ To see what compose actually starts, we recommend a look into the [docker-compos
8888
* `services`
8989
* `devcontainer`
9090

91-
Of particular interest are the `services` and `devcontainer` containers. The former starts all go services using [air](https://github.com/cosmtrek/air), a tool that automatically recompiles and restarts the service on reload.
91+
Of particular interest are the `services` and `devcontainer` containers. The former starts all go services using [air](https://github.com/air-verse/air), a tool that automatically recompiles and restarts the service on reload.
9292
The latter gives you a playground for development with all the tools you need. As it is in the docker network you can use the names of the other (docker compose) services as hostnames (i.e., `postgres` will be resolved to the container in which the postgres instance is running on).
9393
**It also has access to docker.** This means you can, for example, read the services logs like this: `docker compose logs services -f`, and start / stop / restart containers.
9494

@@ -122,7 +122,7 @@ grpcurl --plaintext \
122122
-H "Authorization: Bearer <...>" \
123123
-d '{}' \
124124
localhost:3001 \
125-
proto.services.task_svc.v1.WardService/GetWards
125+
services.task_svc.v1.WardService/GetWards
126126
```
127127

128128
## Ports

0 commit comments

Comments
 (0)