Skip to content

Commit

Permalink
Merge pull request #1174 from threefoldtech/development_proxy_fix-rel…
Browse files Browse the repository at this point in the history
…easer

fix releaser deprecated flag
  • Loading branch information
Omarabdul3ziz authored Sep 1, 2024
2 parents 306b28e + ba6b642 commit f57ae56
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ archives:
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
Expand Down
2 changes: 1 addition & 1 deletion grid-proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Check `/version` on any instance to know the version.

## Releases

### v0.15.12
### v0.15.13

---

Expand Down
2 changes: 1 addition & 1 deletion grid-proxy/charts/gridproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ version: 1.0.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.15.12
appVersion: 0.15.13

# make sure to update the changelog with the changes in this release
4 changes: 2 additions & 2 deletions grid-proxy/internal/explorer/db/setup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ BEGIN
AND resources_cache.node_id = NEW.node_id;
EXCEPTION
WHEN OTHERS THEN
RAISE EXCEPTION 'failed reflecting node_contract updates %', SQLERRM;
RAISE NOTICE 'failed reflecting node_contract updates %', SQLERRM;
END;

ELSIF (TG_OP = 'INSERT') THEN
Expand All @@ -457,7 +457,7 @@ BEGIN
WHERE resources_cache.node_id = NEW.node_id;
EXCEPTION
WHEN OTHERS THEN
RAISE EXCEPTION 'failed calc node_contracts_count %', SQLERRM;
RAISE NOTICE 'failed calc node_contracts_count %', SQLERRM;
END;
END IF;
RETURN NULL;
Expand Down

0 comments on commit f57ae56

Please sign in to comment.