From f80fc79570fbfc1a8f5541e71959afdae8898fe7 Mon Sep 17 00:00:00 2001 From: Taken Date: Fri, 18 Oct 2024 11:42:41 +0200 Subject: [PATCH 1/2] Updated hypixel api version --- src/utils/HypixelFunctions/account.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/HypixelFunctions/account.ts b/src/utils/HypixelFunctions/account.ts index cf475ec..1c72735 100644 --- a/src/utils/HypixelFunctions/account.ts +++ b/src/utils/HypixelFunctions/account.ts @@ -5,8 +5,8 @@ import env from "~/utils/Env.js" const apikey = env.prod.hypixelapikey const mojang = "https://api.mojang.com/users/profiles/minecraft/" const mojanguuid = "https://sessionserver.mojang.com/session/minecraft/profile/" -const hypixel = "https://api.hypixel.net/player" -const guild = "https://api.hypixel.net/guild" +const hypixel = "https://api.hypixel.net/v2/player" +const guild = "https://api.hypixel.net/v2/guild" const minotar = "https://minotar.net/helm/" type GuildQueryType = "player" | "name" | "id" From 2f649b6400af8360e46c63018220a8ca13de3b79 Mon Sep 17 00:00:00 2001 From: Taken Date: Sat, 19 Oct 2024 18:38:38 +0200 Subject: [PATCH 2/2] Pinned postgres version to 16.4 --- dev-db.yml | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-db.yml b/dev-db.yml index 16407b2..95518fa 100644 --- a/dev-db.yml +++ b/dev-db.yml @@ -2,7 +2,7 @@ services: db: container_name: postgres-dev - image: postgres + image: postgres:16.4 restart: unless-stopped volumes: - ./dev/pgdata:/var/lib/postgresql/data diff --git a/docker-compose.yml b/docker-compose.yml index 928a013..1777846 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,7 +18,7 @@ services: pull_policy: always db: container_name: illegitimate-postgres - image: postgres + image: postgres:16.4 restart: unless-stopped logging: driver: journald