Skip to content

Commit 68e5155

Browse files
committed
Release 4.14.1
1 parent 8413826 commit 68e5155

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 4.14.1
2+
- Removed unused 'errors' metric
3+
14
## 4.14.0
25
- Upgrade dart and dependencies
36
- Add additional metrics

docker-compose.prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.9'
22
services:
33
running_on_dart:
4-
image: ghcr.io/nyxx-discord/running_on_dart:4.14.0
4+
image: ghcr.io/nyxx-discord/running_on_dart:4.14.1
55
container_name: running_on_dart
66
restart: unless-stopped
77
ports:

lib/src/modules/metrics.dart

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ class DynamicMetricContext {
5252
var removals = 0;
5353
var events = 0;
5454
var interactions = 0;
55-
var errors = 0;
5655
}
5756

5857
class StaticMetric extends Metric {
@@ -146,12 +145,6 @@ final List<Metric> periodicMetrics = [
146145

147146
return value;
148147
}, unit: 'interactions/min'),
149-
DynamicMetric('errors_per_minute', 'Errors', (context) {
150-
final value = context.errors.toString();
151-
context.errors = 0;
152-
153-
return value;
154-
}, unit: 'errors/min'),
155148
StaticMetric(
156149
'uptime',
157150
'Uptime',

lib/src/settings.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'dart:io';
22

33
import 'package:nyxx/nyxx.dart';
44

5-
String get version => '4.14.0';
5+
String get version => '4.14.1';
66
String get frontendVersion => '1.0.0';
77

88
/// Get a [String] from an environment variable, throwing an exception if it is not set.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: running_on_dart
2-
version: 4.14.0
2+
version: 4.14.1
33
description: Discord Bot for nyxx development
44
homepage: https://github.com/nyxx-discord/running_on_dart
55
repository: https://github.com/nyxx-discord/running_on_dart

0 commit comments

Comments
 (0)