From 82603677ae0c959081a2e1377ced5d1be24e4fd0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 05:08:18 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 4 ++-- client/CHANGELOG.md | 15 +++++++++++++++ client/package.json | 2 +- server/CHANGELOG.md | 16 ++++++++++++++++ server/package.json | 2 +- 5 files changed, 35 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1b91adf1..191d8d7c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "server": "1.3.0", - "client": "1.5.1", + "server": "1.4.0", + "client": "1.6.0", "docs": "1.1.0" } \ No newline at end of file diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index 30449c94..6705f9aa 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [1.6.0](https://github.com/discordplace/discord.place/compare/client@v1.5.1...client@v1.6.0) (2025-01-07) + + +### Features + +* add most voted badge to bot/server cards based on monthly votes ([#155](https://github.com/discordplace/discord.place/issues/155)) ([8b7f12e](https://github.com/discordplace/discord.place/commit/8b7f12e31e68f3fd4e131d5f3e25bb5379f59abd)) +* **dashboard/bot-denies:** add restore functionality for bot denies ([137f2db](https://github.com/discordplace/discord.place/commit/137f2dba5faccedf23e3616b4d00963c9c8e26b0)) +* remove snowfall effect ([#153](https://github.com/discordplace/discord.place/issues/153)) ([e8e146d](https://github.com/discordplace/discord.place/commit/e8e146d59d967b507b8220a0be76a0384bffa613)) + + +### Bug Fixes + +* **config:** increase bot description max length to 4096 characters ([e35408e](https://github.com/discordplace/discord.place/commit/e35408e32da036026be868b17e9b469d2955f9f2)), closes [#152](https://github.com/discordplace/discord.place/issues/152) +* **dashboard/utils:** remove unnecessary restoreBot function parameter ([1d0681a](https://github.com/discordplace/discord.place/commit/1d0681a01893eb78903c79043885c322998a5539)) + ## [1.5.1](https://github.com/discordplace/discord.place/compare/client@v1.5.0...client@v1.5.1) (2024-12-21) diff --git a/client/package.json b/client/package.json index d966f8cf..030edf5b 100644 --- a/client/package.json +++ b/client/package.json @@ -2,7 +2,7 @@ "$schema": "https://json.schemastore.org/package.json", "name": "client", "private": true, - "version": "1.5.1", + "version": "1.6.0", "scripts": { "dev": "next dev --turbo -p 3000", "build": "next build", diff --git a/server/CHANGELOG.md b/server/CHANGELOG.md index 4b9aa946..e67a1592 100644 --- a/server/CHANGELOG.md +++ b/server/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [1.4.0](https://github.com/discordplace/discord.place/compare/server@v1.3.0...server@v1.4.0) (2025-01-07) + + +### Features + +* add most voted badge to bot/server cards based on monthly votes ([#155](https://github.com/discordplace/discord.place/issues/155)) ([8b7f12e](https://github.com/discordplace/discord.place/commit/8b7f12e31e68f3fd4e131d5f3e25bb5379f59abd)) +* **dashboard/bot-denies:** add restore functionality for bot denies ([137f2db](https://github.com/discordplace/discord.place/commit/137f2dba5faccedf23e3616b4d00963c9c8e26b0)) + + +### Bug Fixes + +* **bot-denies/restore:** use publisher information instead of bot owner for embed author ([0dd41a7](https://github.com/discordplace/discord.place/commit/0dd41a75f407321aaab63986697012f4e5595c60)) +* **config:** increase bot description max length to 4096 characters ([e35408e](https://github.com/discordplace/discord.place/commit/e35408e32da036026be868b17e9b469d2955f9f2)), closes [#152](https://github.com/discordplace/discord.place/issues/152) +* correct user ID for most voted user in database, add is_most_vot… ([#154](https://github.com/discordplace/discord.place/issues/154)) ([e2e7165](https://github.com/discordplace/discord.place/commit/e2e7165bf1ddad3d590e4163d3d148142a8858cf)) +* correct user ID for most voted user in database, add is_most_voted field ([e2e7165](https://github.com/discordplace/discord.place/commit/e2e7165bf1ddad3d590e4163d3d148142a8858cf)) + ## [1.3.0](https://github.com/discordplace/discord.place/compare/server@v1.2.4...server@v1.3.0) (2024-12-21) diff --git a/server/package.json b/server/package.json index da154bdc..743a704c 100644 --- a/server/package.json +++ b/server/package.json @@ -2,7 +2,7 @@ "$schema": "https://json.schemastore.org/package.json", "name": "server", "private": true, - "version": "1.3.0", + "version": "1.4.0", "main": "index.js", "scripts": { "dev": "cross-env NODE_ENV=development node -r dotenv/config index.js",