Skip to content

Commit cf4c540

Browse files
committed
chore(release): v1.11.0
1 parent bcf2fe2 commit cf4c540

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
- Nothing yet
11+
12+
## [1.11.0] - 2026-06-30
13+
1014
### Added
1115

1216
- DASH Content Steering (ISO/IEC 23009-1 6th ed. §K.3.6, ETSI TS 103 998): the `steer_` URL option
@@ -18,7 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1822
(`_DASH_pathway`/`_DASH_throughput`) are verified and off-pathway clients flagged. An optional
1923
`csid_<group>` token groups sessions under one shared decision. The `/urlgen/` form has a Content
2024
Steering section and the index page links to the monitor.
21-
2225
- DASH XLink for multi-period: the `xlink_1` URL option activates the replacement of completed past
2326
periods elements with remote elements using XLink elements with `xlink:href="onRequest"`.
2427
The XLink urls for each completed period target the same endpoint as the manifest and adding the
@@ -40,11 +43,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4043
`templ generate` (see `make templ`); a `make templ-check` target and a pre-commit
4144
hook (triggered by both `*.templ` and `*_templ.go` changes) keep the generated code in
4245
sync, and the generated `*_templ.go` files are excluded from `golangci-lint`.
46+
- Updated `github.com/go-chi/chi/v5` from v5.2.2 to v5.2.4.
4347

4448
### Fixed
4549

4650
- cmaf-ingest-receiver tests: replaced fixed `time.Sleep` waits for the receiver's asynchronous
4751
writes with polling (`EventuallyWithT`), fixing intermittent failures on the Windows CI runner.
52+
- Hardened the `esc()` helper on the SGAI session-status page (added in v1.10.0) to also escape
53+
`"` and `'`, so values interpolated into double-quoted HTML attributes cannot break out of the
54+
attribute (attribute XSS); matches the same hardening on the content-steering status page.
4855

4956
## [1.10.0] - 2026-06-15
5057

@@ -451,7 +458,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
451458
- features and URLs listed at livesim2 root page
452459
- configurable generated stpp subtitles with timing info
453460

454-
[Unreleased]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.10.0...HEAD
461+
[Unreleased]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.11.0...HEAD
462+
[1.11.0]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.10.0...v1.11.0
455463
[1.10.0]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.9.0...v1.10.0
456464
[1.9.0]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.8.0...v1.9.0
457465
[1.8.0]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.7.0...v1.8.0

internal/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
)
1313

1414
var (
15-
commitVersion string = "v1.10.0" // Should be updated during build
16-
commitDate string = "1781474400" // commitDate in Epoch seconds (can be filled/updated in during build)
15+
commitVersion string = "v1.11.0" // Should be updated during build
16+
commitDate string = "1782770400" // commitDate in Epoch seconds (can be filled/updated in during build)
1717
)
1818

1919
// GetVersion - get version, commitHash and commitDate depending on what is inserted

0 commit comments

Comments
 (0)