Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update release notes #192

Closed
wants to merge 1 commit into from
Closed
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
93 changes: 32 additions & 61 deletions docs/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,73 +1,44 @@
## Masa Bittensor Release Notes

<!-- Release notes generated using configuration in .github/release.yml at v0.5.0 -->

# Highlights
## 🎉 New Features
- Oracle Miner & Validator V1: Launched the first version of the Oracle Miner and Validator, enhancing the validation process.
- Social Media Integration: Refactored the Twitter profile query and scoring system, and added support for Twitter profiles, followers, and tweets.
- Validator API: Introduced a comprehensive API for validators, streamlining validation tasks.
- Web Scraping & Discord Enhancements: Added a web scraping task to the subnet and improved Discord profile endpoints and response handling.
- Debug Mode & Health Check: Implemented a debug mode for easier troubleshooting and added a health check endpoint to ensure system stability.
- Miner Blacklist: Introduced a basic miner blacklist using vpermit and minimum stake requirements to enhance security.
## 📖 Documentation
- Initial Subnet Documentation: Published the initial documentation for Masa Bittensor Subnet 0.0.1-alpha.
- Updated Dev Docs: Synced documentation with development updates and included details for web and Discord profile endpoints.
- Miscellaneous Updates: Made small updates for Python path, faucet node staking, and fixed API categories for web.
## 🛠️ Other Changes
- Project Renaming: Renamed the project from Alchemy to Masa.
- Development Tools: Added a Makefile, set up black and flake8 for code formatting and linting.
- CI/CD Enhancements: Set up Docker for CI/CD and testing, applied flake8 linting feedback, and added a commitlint workflow.
- Release Configuration: Added configuration for automated releases.
<!-- Release notes generated using configuration in .github/release.yml at main -->

## What's Changed
### Bug fixes :bug:
* fix: server async issues by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/47
* fix: validator storage by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/46
* fix: setup docs by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/48
* fix: .env not loading and timeout when using local oracle on miner by @juanmanso in https://github.com/masa-finance/masa-bittensor/pull/54
* fix: add validator code for discord profile by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/70
* fix: setting weights on chain by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/82
* fix: avoiding setting scores when there are no responses by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/130
* Fix endpoints by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/136
* fix/tempo fetching by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/116
### Exciting New Features 🎉
* feat: Oracle Miner & Validator V1 by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/7
* feat: refactor Twitter Profile Query and Scoring System by @teslashibe in https://github.com/masa-finance/masa-bittensor/pull/37
* feat: various setup improvements by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/40
* feat: add validator API by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/41
* feat: Twitter Profile, Followers, and Tweets by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/45
* Refactor Forward logic by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/55
* feat: add web scraping task to the subnet by @juanmanso in https://github.com/masa-finance/masa-bittensor/pull/67
* feat: add discord profile endpoint by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/68
* feat: web response no longer a list of lists by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/75
* feat: debug mode by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/84
* feat: implements basic miner blacklist using vpermit and min stake req by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/86
* feat: add missing discord endpoints by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/97
* feat: add health check endpoint and fix out of bounds issue by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/127
### 📖 Documentation and examples
* docs: Masa Bittensor Subnet 0.0.1-alpha by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/56
* docs: Syncs w/ Dev Docs by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/72
* docs: updates references to masa-bittensor in relevant docs by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/73
* docs: include web and discord profile endpoints by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/80
* docs: small documentation updates for pythonpath and faucet node staking by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/79
* chore(docs): fixes api categories for web (reported by user) by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/115
* feat: implement basic sanitation for miner selection by @juanmanso in https://github.com/masa-finance/masa-bittensor/pull/112
* feat: playground server and improvements by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/138
* Adding deepnote simulation notebook to repo by @theMultitude in https://github.com/masa-finance/masa-bittensor/pull/114
### Other Changes
* renamed alchemy to masa by @jdutchak in https://github.com/masa-finance/masa-bittensor/pull/6
* chore: add Makefile and some nitpicks on docs and example .env by @juanmanso in https://github.com/masa-finance/masa-bittensor/pull/39
* chore: setup black and flake8 by @juanmanso in https://github.com/masa-finance/masa-bittensor/pull/113
* ci(Docker): set up subtensor, miner, and validator using Docker for CICD and testing by @5u6r054 in https://github.com/masa-finance/masa-bittensor/pull/102
* ci(docker): various enhancements by @5u6r054 in https://github.com/masa-finance/masa-bittensor/pull/126
* ci: apply flake8 linting feedback by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/129
* ci(release): add release configuration by @mudler in https://github.com/masa-finance/masa-bittensor/pull/131
* ci: add commitlint workflow by @mudler in https://github.com/masa-finance/masa-bittensor/pull/134
* ci: run commitlint checks only on PRs by @mudler in https://github.com/masa-finance/masa-bittensor/pull/140
* Add incentivized testnet docs by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/141
* fix(docs): testnet walkthrough copy by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/142
* fix/docs and make by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/146
* Playground ip fix by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/147
* feat: uncommenting code by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/148
* feat: fix condition by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/149
* gdf/validator-cleanup-and-doc-update by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/151
* feat: validator improvements by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/154
* feat: adding dependency by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/155
* ci: add PR template by @mudler in https://github.com/masa-finance/masa-bittensor/pull/156
* feat: calculating block times by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/158
* feat: publish tagged images on release by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/150
* chore: debug publishing images by @obasilakis in https://github.com/masa-finance/masa-bittensor/pull/160
* fix: points to protocol docs instead of duplicating by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/163
* fix: adds versions to requirements.txt by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/165
* feat: reward scoring improvements by @hide-on-bush-x in https://github.com/masa-finance/masa-bittensor/pull/166
* feat: miner validator version control by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/168
* chore: format and clean repo by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/175
* feat: copies release notes to docs and creates PR by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/178
* chore: update release notes by @H34D in https://github.com/masa-finance/masa-bittensor/pull/188
* fix: release trigger testing by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/185
* fix: update trigger by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/189
* fix: release notes only on release by @grantdfoster in https://github.com/masa-finance/masa-bittensor/pull/190

## New Contributors
* @jdutchak made their first contribution in https://github.com/masa-finance/masa-bittensor/pull/6
* @hide-on-bush-x made their first contribution in https://github.com/masa-finance/masa-bittensor/pull/7
* @teslashibe made their first contribution in https://github.com/masa-finance/masa-bittensor/pull/37
* @grantdfoster made their first contribution in https://github.com/masa-finance/masa-bittensor/pull/40
* @obasilakis made their first contribution in https://github.com/masa-finance/masa-bittensor/pull/47
* @theMultitude made their first contribution in https://github.com/masa-finance/masa-bittensor/pull/114
* @H34D made their first contribution in https://github.com/masa-finance/masa-bittensor/pull/188

**Full Changelog**: https://github.com/masa-finance/masa-bittensor/commits/v0.5.0
**Full Changelog**: https://github.com/masa-finance/masa-bittensor/compare/v0.5.0...v0.5.1

[All Releases](https://github.com/masa-finance/masa-bittensor/releases)
Loading