Skip to content

Commit e560d7c

Browse files
committed
Release 1.12.2
1 parent 348bdc9 commit e560d7c

File tree

8 files changed

+25
-22
lines changed

8 files changed

+25
-22
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. This
44
project adheres to [Semantic Versioning][SemVer].
55

66
## [Unreleased]
7+
8+
## [1.12.2] - 2025-05-01
79
### Added
810
- Allow for setting the `software_name` option to `none`, which configures
911
eturnal to omit the `SOFTWARE` attribute from STUN/TURN responses.
@@ -505,7 +507,8 @@ project adheres to [Semantic Versioning][SemVer].
505507
### Added
506508
- Initial (pre-)release of the eturnal STUN/TURN server.
507509

508-
[Unreleased]: https://github.com/processone/eturnal/compare/1.12.1...HEAD
510+
[Unreleased]: https://github.com/processone/eturnal/compare/1.12.2...HEAD
511+
[1.12.2]: https://github.com/processone/eturnal/releases/tag/1.12.2
509512
[1.12.1]: https://github.com/processone/eturnal/releases/tag/1.12.1
510513
[1.12.0]: https://github.com/processone/eturnal/releases/tag/1.12.0
511514
[1.11.1]: https://github.com/processone/eturnal/releases/tag/1.11.1

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ As an alternative, there's an `#eturnal` channel [on Slack][25].
130130
[12]: https://eturnal.net/windows/
131131
[13]: https://eturnal.net/doc/install.html
132132
[14]: https://en.wikipedia.org/wiki/YAML
133-
[15]: https://github.com/processone/eturnal/blob/1.12.1/config/eturnal.yml
133+
[15]: https://github.com/processone/eturnal/blob/1.12.2/config/eturnal.yml
134134
[16]: https://www.freedesktop.org/software/systemd/man/systemctl.html
135-
[17]: https://github.com/processone/eturnal/blob/1.12.1/overlay/init/sysv/eturnal
136-
[18]: https://github.com/processone/eturnal/blob/1.12.1/overlay/init/openrc/eturnal.initd
135+
[17]: https://github.com/processone/eturnal/blob/1.12.2/overlay/init/sysv/eturnal
136+
[18]: https://github.com/processone/eturnal/blob/1.12.2/overlay/init/openrc/eturnal.initd
137137
[19]: https://www.freedesktop.org/software/systemd/man/systemd-journald.service.html
138138
[20]: https://eturnal.net/doc/
139-
[21]: https://github.com/processone/eturnal/blob/1.12.1/CHANGELOG.md
139+
[21]: https://github.com/processone/eturnal/blob/1.12.2/CHANGELOG.md
140140
[22]: https://github.com/processone/eturnal/issues
141141
[23]: https://xmpp.org
142142
[24]: https://eturnal.net/chat/

doc/CONTAINER.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ version of a particular release in case of any bug fix etc. of the image.
1717
| Tags | Description | Additional notes |
1818
| ------------ | ------------ | ------------ |
1919
| `edge` | Built from `master` branch, see [changelog](https://github.com/processone/eturnal/blob/master/CHANGELOG.md) | For testing purposes. |
20-
| `1.12.1`, `latest` | [Release changelog](https://github.com/processone/eturnal/releases/tag/1.12.1) | |
21-
| `1.12.1-acme`, `acme` | As the standalone image, but including the [acme.sh](https://github.com/acmesh-official/acme.sh) | [Variant specific documentation](https://github.com/processone/eturnal/blob/master/doc/CONTAINER-ACME.md) |
20+
| `1.12.2`, `latest` | [Release changelog](https://github.com/processone/eturnal/releases/tag/1.12.2) | |
21+
| `1.12.2-acme`, `acme` | As the standalone image, but including the [acme.sh](https://github.com/acmesh-official/acme.sh) | [Variant specific documentation](https://github.com/processone/eturnal/blob/master/doc/CONTAINER-ACME.md) |
2222

2323
Images are scanned daily by [Trivy](https://www.aquasec.com/products/trivy) and,
2424
if necessary, the `latest` release will be rebuilt and updated.

doc/INSTALL.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ and `openssl-devel`.
2121
> [older Rebar3][6] version (3.15.x on Erlang/OTP 21.x, otherwise 3.16.x).
2222
2323
```shell
24-
curl https://eturnal.net/eturnal-1.12.1.tar.gz | tar -C /tmp -xzf -
25-
cd /tmp/eturnal-1.12.1
24+
curl https://eturnal.net/eturnal-1.12.2.tar.gz | tar -C /tmp -xzf -
25+
cd /tmp/eturnal-1.12.2
2626
./rebar3 as prod tar
2727
```
2828

29-
This generates the archive file `_build/prod/rel/eturnal/eturnal-1.12.1.tar.gz`.
29+
This generates the archive file `_build/prod/rel/eturnal/eturnal-1.12.2.tar.gz`.
3030
The default installation prefix is set to `/opt/eturnal`, and it's assumed the
3131
server will be executed by a user named `eturnal`. To change these defaults,
3232
edit the [build.config][7] file or override the settings using environment
@@ -66,7 +66,7 @@ or `sudo -i`, first.
6666

6767
```shell
6868
cd /opt/eturnal
69-
tar -xzf /tmp/eturnal-1.12.1/_build/prod/rel/eturnal/eturnal-1.12.1.tar.gz
69+
tar -xzf /tmp/eturnal-1.12.2/_build/prod/rel/eturnal/eturnal-1.12.2.tar.gz
7070
chown eturnal /opt/eturnal/etc/eturnal.yml
7171
```
7272

@@ -95,8 +95,8 @@ configuration and usage instructions.
9595
[4]: https://gcc.gnu.org
9696
[5]: https://s3.amazonaws.com/rebar3/rebar3
9797
[6]: https://github.com/erlang/rebar3/releases
98-
[7]: https://github.com/processone/eturnal/blob/1.12.1/build.config
99-
[8]: https://github.com/processone/eturnal/blob/1.12.1/config/shell.config
100-
[9]: https://github.com/processone/eturnal/blob/1.12.1/config/eturnal.yml
101-
[10]: https://github.com/processone/eturnal/blob/1.12.1/README.md
98+
[7]: https://github.com/processone/eturnal/blob/1.12.2/build.config
99+
[8]: https://github.com/processone/eturnal/blob/1.12.2/config/shell.config
100+
[9]: https://github.com/processone/eturnal/blob/1.12.2/config/eturnal.yml
101+
[10]: https://github.com/processone/eturnal/blob/1.12.2/README.md
102102
[11]: https://eturnal.net/doc/

doc/QUICK-TEST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ On Linux/x64 systems, the following commands provide STUN/TURN services on
44
UDP/TCP port 3478 (on Linux/arm64 systems, replace `x64` with `arm64`):
55

66
```shell
7-
curl https://eturnal.net/eturnal-1.12.1-linux-glibc-x64.tar.gz | tar -xzf -
7+
curl https://eturnal.net/eturnal-1.12.2-linux-glibc-x64.tar.gz | tar -xzf -
88
eturnal/bin/eturnalctl foreground
99
```
1010

doc/overview.edoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ limitations under the License.
1919
--------------------------------------------------------------------------------
2020

2121
@title eturnal Documentation
22-
@version 1.12.1 ({@date})
22+
@version 1.12.2 ({@date})
2323
@copyright 2020-2023 ProcessOne, SARL
2424
@author Holger Weiss
2525

@@ -33,7 +33,7 @@ clients receive temporary TURN credentials where the user name is comprised of
3333
the (Unix) expiry timestamp and the password is derived from a {@section secret}
3434
shared between the service generating those credentials and eturnal. The service
3535
offering the credentials <a
36-
href="https://github.com/processone/eturnal/blob/1.12.1/examples/make-credentials">performs</a>
36+
href="https://github.com/processone/eturnal/blob/1.12.2/examples/make-credentials">performs</a>
3737
a `Base64(HMAC-SHA1($secret, $timestamp))' operation to generate the ephemeral
3838
password, and eturnal does the same to verify it. As an alternative, static <a
3939
href="#credentials">credentials</a> may be configured as well.
@@ -51,9 +51,9 @@ eturnal.net</a>. On other Linux/x64 and Linux/arm64 systems, the <a
5151
href="https://eturnal.net/download/linux/installer/">binary release</a> can be
5252
installed as described <a href="#Installation">below</a>. For building eturnal
5353
from source, see the <a
54-
href="https://github.com/processone/eturnal/blob/1.12.1/doc/INSTALL.md">INSTALL.md</a>
54+
href="https://github.com/processone/eturnal/blob/1.12.2/doc/INSTALL.md">INSTALL.md</a>
5555
file shipped with eturnal's <a
56-
href="https://eturnal.net/download/eturnal-1.12.1.tar.gz">source code
56+
href="https://eturnal.net/download/eturnal-1.12.2.tar.gz">source code
5757
archive</a>.
5858

5959
=== Installation ===

tools/ctrrel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# The github action "tails" the last line of this file to extract the relevant release and tags.
1616
#
1717

18-
1.12.1-r2
18+
1.12.2-r0

tools/get-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set -e
66
set -u
77

8-
rel_vsn='1.12.1'
8+
rel_vsn='1.12.2'
99

1010
( git describe --tags --match '[0-9]*' 2>'/dev/null' || echo "$rel_vsn" ) \
1111
| sed -e 's/-g.*//' -e 's/-/+/' | tr -d '[:space:]'

0 commit comments

Comments
 (0)