Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.2.0](https://github.com/dewstouh/niby-discord-bot/compare/v1.1.0...v1.2.0) (2025-07-20)


### Features

* add Docker support with Dockerfile, docker-compose and CI workflow for Niby ([5b50910](https://github.com/dewstouh/niby-discord-bot/commit/5b509105da957ad1cd8a63bec6c7e1dea70e5e47))


### Bug Fixes

* **ci:** write repo name to $GITHUB_ENV instead of invalid $GITHUB to fix env setup ([6618b96](https://github.com/dewstouh/niby-discord-bot/commit/6618b962e732bf01e3d3b00cbf863893391a6080))
* **db:** fallback to local mongodb if DATABASE_URL is undefined and enable autoIndex ([9e58a00](https://github.com/dewstouh/niby-discord-bot/commit/9e58a00f2d84858a4da0b76787cd1b05124939f9))

## [1.1.0](https://github.com/dewstouh/niby-discord-bot/compare/v1.0.0...v1.1.0) (2025-07-10)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "niby",
"description": "A multipurpose Discord bot with a variety of features including music, moderation, and more.",
"version": "1.1.0",
"version": "1.2.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc && tsc-alias",
Expand All @@ -12,7 +12,7 @@
"lint:fix": "eslint . --ext .ts --fix",
"docker:build": "docker build -t niby-discord-bot -f docker/images/niby/Dockerfile .",
"docker:run": "docker run -d --name niby-discord-bot --env-file .env -p 3000:3000 niby-discord-bot",
"docker:restart": "docker restart niby-discord-bot",
"docker:restart": "docker restart niby-discord-bot",
"docker:logs": "docker logs -f niby-discord-bot",
"docker:stop": "docker stop niby-discord-bot",
"docker:rm": "docker rm niby-discord-bot"
Expand Down