@serenityjs/raknet 0.8.17 → 0.8.18-beta-20260205000321

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @serenityjs/raknet
2
2
 
3
+ ## 0.8.18-beta-20260205000321
4
+
5
+ ### Patch Changes
6
+
7
+ - [`1d42bb8`](https://github.com/SerenityJS/serenity/commit/1d42bb8816a1bbe7dc39c9bdb2798af83cbfd88b) Thanks [@PMK744](https://github.com/PMK744)! - init v0.8.18-beta
8
+
9
+ - Updated dependencies [[`1d42bb8`](https://github.com/SerenityJS/serenity/commit/1d42bb8816a1bbe7dc39c9bdb2798af83cbfd88b)]:
10
+ - @serenityjs/emitter@0.8.18-beta-20260205000321
11
+ - @serenityjs/logger@0.8.18-beta-20260205000321
12
+ - @serenityjs/nbt@0.8.18-beta-20260205000321
13
+
3
14
  ## 0.8.17
4
15
 
5
16
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -553,6 +553,10 @@ interface RaknetServerProperties {
553
553
  * The max mtu size of the server.
554
554
  */
555
555
  mtuMinSize: number;
556
+ /**
557
+ * Whether to validate the port of incoming connections and its packets.
558
+ */
559
+ validatePort: boolean;
556
560
  }
557
561
 
558
562
  /**
package/dist/index.d.ts CHANGED
@@ -553,6 +553,10 @@ interface RaknetServerProperties {
553
553
  * The max mtu size of the server.
554
554
  */
555
555
  mtuMinSize: number;
556
+ /**
557
+ * Whether to validate the port of incoming connections and its packets.
558
+ */
559
+ validatePort: boolean;
556
560
  }
557
561
 
558
562
  /**