Compare commits

..

No commits in common. "3beed131a85b9b255090d50d22f565873142d1e5" and "8d320f96cd2475b04d437c6d5eec0af19a8daa16" have entirely different histories.

3 changed files with 3 additions and 23 deletions

View File

@ -2,33 +2,15 @@
All notable changes to this project will be documented in this file.
## [0.1.1] - 2025-03-26
## [unreleased]
### 🚀 Features
- *(index)* Add save and load functionality for Index using gob encoding/decoding
### 🐛 Bug Fixes
- Updated AddDocToIndex function to ignore additional special characters in scanner.Text()
- Add sonarqube properties
- Add default log level
### 🚜 Refactor
- Search logic to improve performance and reduce false positives by making query case-insensitive for simple queries and using trimmed whitespace in phrases
### 📚 Documentation
- Add first release in Changelog
- Update changelog
- Add sonarqube badge
### ⚙️ Miscellaneous Tasks
- Add sonarqube pipeline
- Update sonarqube pipeline
- Add quality gate
## [0.1.0] - 2025-03-25

View File

@ -1,7 +1,7 @@
[![Quality Gate Status](https://sonar.dev-null.rocks/api/project_badges/measure?project=gosearch&metric=alert_status&token=sqb_4d86c3b73f6837027a319df42d2f70ccb46e56a2)](https://sonar.dev-null.rocks/dashboard?id=gosearch)
# gosearch
[![Quality Gate Status](https://sonar.dev-null.rocks/api/project_badges/measure?project=gosearch&metric=alert_status&token=sqb_4d86c3b73f6837027a319df42d2f70ccb46e56a2)](https://sonar.dev-null.rocks/dashboard?id=gosearch)
### Diagram of the Architecture
```mermaid

View File

@ -2,7 +2,6 @@ package http
import (
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/log"
"github.com/gofiber/fiber/v2/middleware/logger"
)
@ -13,7 +12,6 @@ func StartService() {
app.Use(logger.New(logger.Config{
Format: "[${ip}]:${port} ${status} - ${method} ${path}\n",
}))
log.SetLevel(log.LevelInfo)
// Configure Routes
app = configureRoutes(app)