Skip to content

Commit

Permalink
Release v4.16.2 (hotfix)
Browse files Browse the repository at this point in the history
* Visited session bug

* Alpha

* versions
  • Loading branch information
antoinejaussoin authored Sep 15, 2022
1 parent a5ce285 commit 2aaac4b
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'Alpha Build'

on:
push:
branches: [v4160/german]
branches: [v4162/emergency-fix]

jobs:
build:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ This will run a demo version, which you can turn into a fully licenced version b

## Versions History

### Version 4.16.2

- Fixed a bug where sessions a user participated in did not show up on their homepage. (👏 Thanks a bunch to Frank Becker for reporting the issue and helping find the problem)

### Version 4.16.1

- Fixed a bug where sessions could not be deleted when there was any chat messages (👏 Thanks Florin Bicher for the report)
Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/backend",
"version": "4.16.1",
"version": "4.16.2",
"license": "GNU GPLv3",
"private": true,
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions backend/src/db/actions/sessions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export async function previousSessions(
userId: string
): Promise<SessionMetadata[]> {
return await transaction(async (manager) => {
const sessionsAsVisitors: { sessionsId: string }[] = await manager.query(
const sessionsAsVisitors: { sessions_id: string }[] = await manager.query(
`
select distinct v.sessions_id from visitors v
where v.users_id = $1
Expand All @@ -281,7 +281,7 @@ export async function previousSessions(
);

const ids = uniq([
...sessionsAsVisitors.map((s) => s.sessionsId),
...sessionsAsVisitors.map((s) => s.sessions_id),
...sessionsAsOwner.map((s) => s.id),
]);

Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "4.16.1",
"version": "4.16.2",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/frontend",
"version": "4.16.1",
"version": "4.16.2",
"license": "GNU GPLv3",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion integration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "retro-board-integration",
"version": "4.16.1",
"version": "4.16.2",
"description": "Integrations tests",
"main": "index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "retrospected",
"version": "4.16.1",
"version": "4.16.2",
"description": "An agile retrospective board - Powering www.retrospected.com",
"private": true,
"scripts": {
Expand Down

0 comments on commit 2aaac4b

Please sign in to comment.