Skip to content

Commit 97eff6a

Browse files
authored
merge develop into main (#190)
2 parents 478c348 + f35d50e commit 97eff6a

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## Unreleased
8+
## [2.20.3] - 2026-01-29
9+
### Fixed
10+
- Fix the timer [#188] (https://github.com/rokwire/gateway-building-block/issues/188)
11+
12+
## [2.20.2] - 2026-01-29
813
## [2.20.1] - 2026-01-29
914
### Fixed
1015
- Make context timeout for image send request [#185](https://github.com/rokwire/gateway-building-block/issues/185)

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
Patches for **Gateway Building Block** in this repository will only be applied to the following versions:
55
| Version | Supported |
66
| ------- | ------------------ |
7-
| 2.20.1 | :white_check_mark: |
8-
| < 2.20.1 | :x: |
7+
| 2.20.3 | :white_check_mark: |
8+
| < 2.20.3 | :x: |
99

1010
## Reporting a Bug or Vulnerability
1111

core/logic_events.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func (e eventsLogic) setupWebToolsTimer() {
104104
e.logger.Infof("setupWebToolsTimer -> now - hours:%d minutes:%d seconds:%d\n", now.Hour(), now.Minute(), now.Second())
105105

106106
nowSecondsInDay := 60*60*now.Hour() + 60*now.Minute() + now.Second()
107-
desiredMoment := 55800
107+
desiredMoment := 18000
108108

109109
var durationInSeconds int
110110
log.Printf("setupWebToolsTimer -> nowSecondsInDay:%d desiredMoment:%d\n", nowSecondsInDay, desiredMoment)

driver/web/docs/gen/def.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.3
22
info:
33
title: Rokwire Gateway Building Block API
44
description: Gateway Building Block API Documentation
5-
version: 2.20.1
5+
version: 2.20.3
66
servers:
77
- url: 'https://api.rokwire.illinois.edu/gateway'
88
description: Production server

driver/web/docs/index.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.3
22
info:
33
title: Rokwire Gateway Building Block API
44
description: Gateway Building Block API Documentation
5-
version: 2.20.1
5+
version: 2.20.3
66
servers:
77
- url: 'https://api.rokwire.illinois.edu/gateway'
88
description: Production server

0 commit comments

Comments
 (0)