From 442d82accd08466b8c2e8cfdf52175d9f43bd65f Mon Sep 17 00:00:00 2001 From: kn0wmad <39687477+kn0wmad@users.noreply.github.com> Date: Thu, 9 Mar 2023 22:35:33 +0000 Subject: [PATCH] 0.4.0 update (#7) * Init 0.4.0 update * Stop DDOSing Robosats coordinator with hcks --- Dockerfile | 2 +- manifest.yaml | 4 ++-- scripts/deps.ts | 2 +- scripts/procedures/healthChecks.ts | 2 +- scripts/procedures/migrations.ts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index c890d58..c645aca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM recksato/robosats-client:v0.3.3-alpha +FROM recksato/robosats-client:v0.4.0-alpha RUN apt-get update && apt-get install wget curl sudo bash tini -y RUN wget https://github.com/mikefarah/yq/releases/download/v4.6.3/yq_linux_amd64.tar.gz -O - |\ tar xz && mv yq_linux_amd64 /usr/bin/yq diff --git a/manifest.yaml b/manifest.yaml index 97e386f..076dd94 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -5,10 +5,10 @@ id: robosats # A human readable service title title: "RoboSats" # Service version - accepts up to four digits, where the last confirms to revisions necessary for EmbassyOS - see documentation: https://github.com/Start9Labs/emver-rs. This value will change with each release of the service. -version: 0.3.3 +version: 0.4.0 # Release notes for the update - can be a string, paragraph or URL release-notes: | - * Updated to v0.3.3-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.3.3-alpha) + * Updated to v0.4.0-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.4.0-alpha) # The type of license for the project. Include the LICENSE in the root of the project directory. A license is required for a Start9 package. license: mit # The Start9 wrapper repository URL for the package. This repo contains the manifest file (this), any scripts necessary for configuration, backups, actions, or health checks (more below). This key must exist. But could be embedded into the source repository. diff --git a/scripts/deps.ts b/scripts/deps.ts index 3bfd85b..ee0dcd8 100644 --- a/scripts/deps.ts +++ b/scripts/deps.ts @@ -1 +1 @@ -export * from "https://deno.land/x/embassyd_sdk@v0.3.3.0.2/mod.ts"; +export * from "https://deno.land/x/embassyd_sdk@v0.3.3.0.8/mod.ts"; diff --git a/scripts/procedures/healthChecks.ts b/scripts/procedures/healthChecks.ts index 3282b1e..3666f8b 100644 --- a/scripts/procedures/healthChecks.ts +++ b/scripts/procedures/healthChecks.ts @@ -1,5 +1,5 @@ import { types as T, healthUtil } from "../deps.ts"; export const health: T.ExpectedExports.health = { - "web-ui": healthUtil.checkWebUrl("http://robosats.embassy:12596") + "web-ui": healthUtil.checkWebUrl("http://robosats.embassy:12596/selfhosted") } diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index 05b7a81..3551620 100644 --- a/scripts/procedures/migrations.ts +++ b/scripts/procedures/migrations.ts @@ -1,4 +1,4 @@ import { compat, types as T } from "../deps.ts"; export const migration: T.ExpectedExports.migration = compat.migrations - .fromMapping({}, "0.3.3" ); + .fromMapping({}, "0.4.0" );