Compare commits

...

8 Commits

Author SHA1 Message Date
mfahampshire 23f33bb982 ignore pnpm 2026-05-28 10:30:49 +01:00
serinko ea4d657fdf syntax fix 2026-05-20 11:46:43 +02:00
serinko fe144da4b2 syntax fix 2026-05-20 11:32:25 +02:00
serinko 00aedbb144 turtle beats the rabbitai 2026-05-20 10:45:55 +02:00
serinko 6a33354f84 correct comment syntax 2026-05-20 10:43:20 +02:00
serinko 19d8381950 new component import 2026-05-20 10:39:40 +02:00
serinko 27266e5e68 placeholding reminder for later 2026-05-20 10:39:09 +02:00
serinko 371a0b2ba8 operators updates 2026-05-20 10:38:40 +02:00
3 changed files with 94 additions and 10 deletions
+1
View File
@@ -0,0 +1 @@
strict-dep-builds=false
@@ -16,6 +16,8 @@ import { Steps } from 'nextra/components';
import AbuseResponse from 'components/operators/templates/dmca_response.md';
import OperatorIntroduction from 'components/operators/templates/provider_introduction.md';
import QuicDeploymentSteps from 'components/operators/snippets/quic-bridge-deployment-script-setup.mdx';
import NTMExplanation from 'components/operators/snippets/ntm-accordion-explanation.mdx';
export const TestingSteps = () => (
@@ -57,6 +59,96 @@ This page displays a full list of all the changes during our release cycle from
<VarInfo />
## `v2026.10-waterloo`
- [Release Binaries](https://github.com/nymtech/nym/releases/tag/nym-binaries-v2026.10-waterloo)
- [`nym-node`](nodes/nym-node.mdx) version `1.32.0`
```sh
ADD OUTPUT ./nym-node --version
```
### Operators Updates & Tools
<Callout type="error" emoji="🚨">
[**Security steps required**](/operators/troubleshooting/vps-isp#security-patch-copyfail--dirtyfrag): Several critical [Linux kernel vulnerabilities](https://ubuntu.com/blog/copy-fail-vulnerability-fixes-available) had been disclosed. Check out your servers and if needed apply required mitigations!
</Callout>
- [**NIP-11 - NTM updated: Telegram voice and video call works now!**](https://github.com/nymtech/nym/pull/6807) Please re-run [Nym network tunnel manager](https://raw.githubusercontent.com/nymtech/nym/refs/heads/develop/scripts/nym-node-setup/network-tunnel-manager.sh) (NTM) on your hosting servers:
<div>
<Tabs items={[
<>Manual steps</>,
<>Ansible</>,
]} defaultIndex="0">
<MyTab>
<Steps>
- Get the latest version of NTM
```sh
curl -L "https://raw.githubusercontent.com/nymtech/nym/refs/heads/develop/scripts/nym-node-setup/network-tunnel-manager.sh" -o network-tunnel-manager.sh && chmod +x ./network-tunnel-manager.sh
```
- Run NTM (Standard SSH on port 22 (default)):
```sh
./network-tunnel-manager.sh complete_networking_configuration
```
- Run NTM on non-standard SSH port:
```sh
HOST_SSH_PORT=<PORT> ./network-tunnel-manager.sh complete_networking_configuration
# example - replace 2222 with your actual port:
# HOST_SSH_PORT=2222 ./network-tunnel-manager.sh complete_networking_configuration
```
<NTMExplanation />
</Steps>
</MyTab>
<MyTab>
<Steps>
- Navigate to your Nym node Ansible directory with all playbooks (`/playbooks`)
- For safety start only with one node:
```sh
ansible-playbook deploy.yml -t ntm -l node1
```
- Check if everything worked smooth and the node works on VPN
- Run on all machines in your inventory
```sh
ansible-playbook deploy.yml -t ntm
```
<NTMExplanation />
</Steps>
</MyTab>
</Tabs>
</div>
- [**New docs**](https://github.com/nymtech/nym/pull/6716): Max's leg work on [exit services documentation](/network/infrastructure/exit-services), [`Mixfetch`](/developers/mix-fetch) and [`smolmix`](/developers/smolmix)
#### Operators UX Improvements
- [NTM: Split IPv4 / IPv6 uplinks](https://github.com/nymtech/nym/pull/6640): Now NTM can work with different uplink interfaces for IPv4 and IPv6
- [Nym Node CLI: Split IPv4 / IPv6 uplinks](https://github.com/nymtech/nym/pull/6743): `nym-node-cli.py` uplinks sync up with NTM
- [NTM & Nym Node CLI: Alternative SSH port](https://github.com/nymtech/nym/pull/6633): Operators can use these tools with `HOST_SSH_PORT` allowing them to define any alternative port instead of only using hard-coded 22
### Features
{/* ADD DEV POINTS */}
### Bugfix
{/* ADD DEV POINTS */}
### Refactors & Maintenance
{/* ADD DEV POINTS */}
## `v2026.9-venaco`
- [Release Binaries](https://github.com/nymtech/nym/releases/tag/nym-binaries-v2026.9-venaco)
@@ -19,16 +19,7 @@ This documentation page provides a guide on how to set up and run a [NYM NODE](.
## Current version
```sh
nym-node
Binary Name: nym-node
Build Timestamp: 2026-05-06T05:19:51.973494120Z
Build Version: 1.31.0
Commit SHA: f84de25302e886d4bd97a898885c569724c002a7
Commit Date: 2026-05-06T07:16:42.000000000+02:00
Commit Branch: HEAD
rustc Version: 1.91.1
rustc Channel: stable
cargo Profile: release
ADD OUTPUT ./nym-node --version
```
Detailed version archive and release notes is documented [here](../../changelog.mdx).