Skip to content

Releases: TwiN/gatus

v3.3.6

18 Nov 02:51
Compare
Choose a tag to compare

Changed license from MIT to Apache 2 #203

v3.3.5

17 Nov 04:06
Compare
Choose a tag to compare

Fixed paging issue with Postgres #202

v3.3.4

17 Nov 00:42
Compare
Choose a tag to compare
  • Events now display the number of days ago rather than the number of hours if the event happened more than 72 hours
  • Fixed icon_url for Mattermost alerts
  • Updated TwiN/health to v1.1.0
  • Updated front-end dependencies

v3.3.3

06 Nov 02:47
Compare
Choose a tag to compare
  • Deprecated storage.file in favor of storage.path #197
  • Deprecated persistence for storage of type memory #198
  • Minor data savings improvement

v3.3.2

29 Oct 01:42
Compare
Choose a tag to compare

Restructure storage package

v3.3.1

25 Oct 01:30
Compare
Choose a tag to compare
  • Handled issue caused by #192 for users using storage of type memory with a file specified
  • Made minor changes needed for upcoming gatus.io

v3.3.0

23 Oct 21:08
6ed93d4
Compare
Choose a tag to compare

Renamed service to endpoint #191 #192

THIS CHANGE IS BACKWARD COMPATIBLE

I've been wanting to rename service to endpoint for a while now.
service is confusing, and it doesn't align well with features I want to implement in the future.

As such, I finally decided to make the move.

What you need to know

For most people, all you need to do is replace services: by endpoints: in your configuration file, but here's a full break down of the changes that may impact you.

Endpoint changes

All /api/v1/services/* routes will continue working until v4.0.0 for the sake of backward compatibility, but should be replaced by /api/v1/endpoints/*.

This includes badges.

Configuration changes

services has been renamed to endpoints, but the former will continue being supported until v5.0.0. This is a pretty big breaking change, and I want people to have enough time to migrate.

Before:

services:
  - name: website
    url: "https://twin.sh/health"
    conditions:
      - "[STATUS] == 200"

After:

endpoints:
  - name: website
    url: "https://twin.sh/health"
    conditions:
      - "[STATUS] == 200"

If you continue using services in your configuration, there will be a warning logged in the console pointing to this issue

Storage

SQLite and Postgres

If you are using a storage of type sqlite or postgres, the data in the old tables will not be migrated. I considered automatically migrating the data, but decided that it was not worth the trouble given that currently, the retention period is very short.

That being said, the old tables are not going to be automatically deleted, in case you are using said data for other purposes.

Here is a list of the old table names and their replacements:

  • service -> endpoints
  • service_event -> endpoint_events
  • service_result -> endpoint_results
  • service_result_condition -> endpoint_result_conditions
  • service_uptime -> endpoint_uptimes

If you have any questions, please ask them in #191

v3.2.3

18 Oct 16:21
Compare
Choose a tag to compare

Added Docker image for armv6

v3.2.2

08 Oct 02:48
Compare
Choose a tag to compare

⚠ Migrated TwinProduction/gatus to TwiN/gatus

NOTE: The Docker repository will not be affected by this change

v3.2.1

04 Oct 02:03
Compare
Choose a tag to compare
  • Updated Go to 1.17
  • Added /v3 to module path: Gatus was never meant to be used as a library, but I have a use case for this now, hence the small release.