Skip to content

Releases: gafirst/match-uploader

v5.1.1

07 Mar 04:06
b673847
Compare
Choose a tag to compare

5.1.1 (2025-03-07)

Bug Fixes

v5.1.0

02 Mar 06:50
3426887
Compare
Choose a tag to compare

5.1.0 (2025-03-02)

Features

  • autoRename: Quality of life improvements for auto rename (#160) (3426887)

v5.0.0

17 Feb 01:08
193421f
Compare
Choose a tag to compare

5.0.0 (2025-02-17)

Features

BREAKING CHANGES

  • Due to the fix for #147, existing Auto Rename data will become hidden during the DB migration to this version unless the event key is set to legacy_no_event_key. Moving forward, Auto Rename will only show associations related to the current event key. This change was necessary to avoid Auto Rename conflicting across different events.
  • The default video description template has changed due to the addition of event media uploads. If you have customized the description template, go to Settings and paste the updated example description template, then re-make your changes.

v4.0.0

09 Jan 04:12
05304ad
Compare
Choose a tag to compare

4.0.0 (2025-01-09)

Features

  • Add report showing which matches have videos uploaded (#150) (05304ad)

BREAKING CHANGES

  • The server's minimum Node.js version is now v22

v3.6.0

16 Oct 15:35
86acb20
Compare
Choose a tag to compare

3.6.0 (2024-10-16)

Features

v3.5.0

15 Oct 04:42
Compare
Choose a tag to compare

3.5.0 (2024-10-15)

Features

v3.4.0

19 Jun 20:19
95f4c0b
Compare
Choose a tag to compare

3.4.0 (2024-06-19)

Features

  • client: Add beta version of Live Mode (#126) (95f4c0b)

v3.3.0

24 Mar 22:28
3ed94b9
Compare
Choose a tag to compare

3.3.0 (2024-03-24)

Features

Upgrade notes

Note

This was a feature release because the steps below are optional.

After upgrading, you should adjust your existing docker-compose.yml file as follows:

  1. Rename the file to docker-compose.yaml
  2. Make the following 2 modifications to use a YAML anchor to keep the web and worker Docker volumes in sync (for an example of the diff, see here)
    1. web container, find the volumes: line. Append &common_volumes to this line, so it becomes volumes: &common_volumes.
    2. worker container, remove the existing volumes: block including its children. Then, add the line back as volumes: *common_volumes (this references the common_volumes anchor defined in the web container's YAML).

After these changes, the web/worker container service definitions should look like this:

services:
  web:
    [... omitted for brevity ...]
    volumes: &common_volumes
     - ./server/settings:/home/node/app/server/settings
     - ./server/env:/home/node/app/server/env
     - ./server/videos:/home/node/app/server/videos
  worker:
    image: ghcr.io/gafirst/match-uploader:latest
    command: yarn start:worker
    volumes: *common_volumes
    env_file:
      - ./server/env/production.env
    [... omitted for brevity ...]

You can also view docker-compose.yaml on this tag for a full, functional example.

v3.2.2

24 Mar 22:16
b027e03
Compare
Choose a tag to compare

3.2.2 (2024-03-24)

Bug Fixes

  • client: Ensure stale data is discarded when event code changes (#115) (b027e03)

v3.2.1

08 Mar 04:35
72f3bd6
Compare
Choose a tag to compare

3.2.1 (2024-03-08)

Bug Fixes

  • Fix Next Match bug and refresh match list on settings changes (#109) (72f3bd6)