Skip to content

Commit

Permalink
upgrade to svelte 5 (issue #30) (#36)
Browse files Browse the repository at this point in the history
* close #30

* changelog, fix go repo path
  • Loading branch information
felix-schott authored Oct 29, 2024
1 parent c927173 commit 36aa79c
Show file tree
Hide file tree
Showing 47 changed files with 939 additions and 714 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Calendar Versioning](https://calver.org/) (`YYYY.MM.MICRO-TAG`).

## [v2024.10.3-beta] - 2024-10-29

### Added

- Store author and time alongside comment content in separate DB table; implement UI (PR [#34](https://github.com/felix-schott/jamsessions/pull/34))
- Add rating functionality with new DB table/API routes and UI changes (PR [#34](https://github.com/felix-schott/jamsessions/pull/34))
- Add UI to change backline and genre information in `EditSessionPopup.svelte` (PR [#35](https://github.com/felix-schott/jamsessions/issues/35))

### Changed

- Upgrade frontend code to Svelte 5 (PR [#36](https://github.com/felix-schott/jamsessions/pull/34))

### Fixed

- Fixed a bug that occurred with an empty database (PR [#28](https://github.com/felix-schott/jamsessions/pull/28))
- Propagate release tag from `install.sh` to the docker image version in `docker-compose.yml` (PR [#33](https://github.com/felix-schott/jamsessions/pull/33))

## [v2024.10.2-beta] - 2024-10-24

### Added
Expand Down
4 changes: 2 additions & 2 deletions backend/cmd/dbcli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"fmt"
"log"

dbutils "github.com/felix-schott/london-jam-sessions/internal/db"
"github.com/felix-schott/london-jam-sessions/internal/geocoding"
dbutils "github.com/felix-schott/jamsessions/backend/internal/db"
"github.com/felix-schott/jamsessions/backend/internal/geocoding"

"github.com/alexflint/go-arg"
)
Expand Down
4 changes: 2 additions & 2 deletions backend/cmd/dbcli/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"testing"
"time"

dbutils "github.com/felix-schott/london-jam-sessions/internal/db"
"github.com/felix-schott/london-jam-sessions/internal/types"
dbutils "github.com/felix-schott/jamsessions/backend/internal/db"
"github.com/felix-schott/jamsessions/backend/internal/types"
"github.com/jackc/pgx/v5/pgtype"
geom "github.com/twpayne/go-geom"
)
Expand Down
4 changes: 2 additions & 2 deletions backend/cmd/server/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"strings"
"time"

dbutils "github.com/felix-schott/london-jam-sessions/internal/db"
types "github.com/felix-schott/london-jam-sessions/internal/types"
dbutils "github.com/felix-schott/jamsessions/backend/internal/db"
types "github.com/felix-schott/jamsessions/backend/internal/types"
"github.com/go-fuego/fuego"
"github.com/jackc/pgx/v5/pgtype"
)
Expand Down
4 changes: 2 additions & 2 deletions backend/cmd/server/handlers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"github.com/jackc/pgx/v5/pgtype"
geom "github.com/twpayne/go-geom"

dbutils "github.com/felix-schott/london-jam-sessions/internal/db"
"github.com/felix-schott/london-jam-sessions/internal/types"
dbutils "github.com/felix-schott/jamsessions/backend/internal/db"
"github.com/felix-schott/jamsessions/backend/internal/types"
"github.com/go-fuego/fuego"
)

Expand Down
2 changes: 1 addition & 1 deletion backend/cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"os"

dbutils "github.com/felix-schott/london-jam-sessions/internal/db"
dbutils "github.com/felix-schott/jamsessions/backend/internal/db"
"github.com/getkin/kin-openapi/openapi3"
"github.com/go-fuego/fuego"
"github.com/rs/cors"
Expand Down
2 changes: 1 addition & 1 deletion backend/doc/openapi.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion backend/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/felix-schott/london-jam-sessions
module github.com/felix-schott/jamsessions/backend

go 1.22.5

Expand Down
2 changes: 1 addition & 1 deletion backend/internal/db/db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"testing"
"time"

"github.com/felix-schott/london-jam-sessions/internal/types"
"github.com/felix-schott/jamsessions/backend/internal/types"
"github.com/jackc/pgx/v5/pgtype"
geom "github.com/twpayne/go-geom"
)
Expand Down
Loading

0 comments on commit 36aa79c

Please sign in to comment.