Skip to content

Commit 37124cd

Browse files
committed
v0.4.0 + release script
1 parent 97a3e58 commit 37124cd

30 files changed

+3539
-439
lines changed

.eslintrc

Lines changed: 0 additions & 49 deletions
This file was deleted.

.eslintrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es2021": true,
6+
"node": true
7+
},
8+
"extends": "eslint:recommended",
9+
"parserOptions": {
10+
"ecmaVersion": "latest"
11+
},
12+
"rules": {
13+
}
14+
}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ node_modules
33
build
44
standalone.rbxm
55
standalone
6-
*.rbxm
6+
*.rbxm
7+
sourcemap.json

.luaurc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"languageMode": "strict"
3+
}

CHANGELOG.md

Lines changed: 63 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,90 @@
11
# BridgeNet2
22

3-
This project uses [semver](https://semver.org/spec/v2.0.0.html).
3+
This project uses [semantic versioning](https://semver.org/spec/v2.0.0.html).
44

5-
## version 0.3.0: 6/8/2023
5+
## version 0.4.0
6+
7+
### **Added**
8+
9+
- Added `BridgeNet2.ServerBridge` and `BridgeNet2.ClientBridge` constructors- they are identical to ReferenceBridge, just with better types. The current ReferenceBridge will not be deprecated or affected by this.
10+
- Instead of being limited to tables, you can now pass any type into :Fire(). This means you can finally pass in nil values to :Fire() too.
11+
12+
### **Fixes**
13+
14+
- Fixed rate limiting
15+
- Re-added methods on the `Bridge` type to types
16+
17+
### **Improvements**
18+
19+
- Added `Connection` type to `Bridge:Connect()` functions
20+
- `RateLimitActive` is now a public boolean that can be set by the user
21+
- Improved error messages
22+
- Improved logger readability.
23+
- I made a script to automate releases- there should hopefully be less inconsistencies with releases from now on.
24+
25+
## [version 0.3.0](https://github.com/ffrostflame/BridgeNet2/releases/tag/v0.3.0): 6/8/2023
26+
27+
### **Added**
628

729
- Added Hoarcekat support
8-
- Massive internal re-structuring
9-
- Renamed `FromIdentifier` and `FromCompressed` to `Serialize` and `Deserialize`
30+
31+
### **Removed**
32+
1033
- NumberToBestForm removed (feature bloat)
1134
- StartLogging and StopLogging have been removed in favor of `object.Logging =`
12-
- Logging now displays the packet size in bytes (using @PysephWasntAvailable's [RemotePacketSizeCounter](https://github.com/PysephWasntAvailable/RemotePacketSizeCounter) package)
13-
- Compliant with strict Luau typing
14-
- Type improvements
35+
36+
### **Fixes**
37+
38+
- Literally dozens of bugfixes
39+
40+
### **Improvements**
41+
42+
- Massive internal re-structuring
43+
- Renamed `FromIdentifier` and `FromCompressed` to `Serialize` and `Deserialize`
1544
- Internally commented the entire project
1645
- Removed SetSecurity and SecurityEnums in favor of `HandleInvalidPlayer`
17-
- Literally dozens of bugfixes
46+
- Type improvements
47+
- Logging now displays the packet size in bytes (using @PysephWasntAvailable's [RemotePacketSizeCounter](https://github.com/PysephWasntAvailable/RemotePacketSizeCounter) package)
48+
- Compliant with strict Luau typing
1849

1950
## version 0.2.2
2051

52+
### **Fixes**
53+
2154
- Hotfix
2255

23-
## version 0.2.1
56+
## [version 0.2.1](https://github.com/ffrostflame/BridgeNet2/releases/tag/v0.2.1): 6/3/2023
57+
58+
### **Added**
59+
60+
- Added :Once() and :Wait() to ClientBridge
61+
62+
### **Fixes**
2463

2564
- Fixed a bug w/ :Wait() on ClientBridge
65+
66+
### **Improvements**
67+
2668
- Default format/type security errors no longer throw
27-
- Added :Once() and :Wait() to ClientBridge
2869

29-
## version 0.2.0
70+
## [version 0.2.0](https://github.com/ffrostflame/BridgeNet2/releases/tag/v0.2.0): 5/11/2023
71+
72+
### **Added**
3073

31-
- Removed .Hook()
3274
- Added :Once()
3375
- Added :Wait()
3476
- Added :StartLogging() and :StopLogging()
3577
- Added :Disconnect() to connections
36-
- "Silent" logs will display only in studio
78+
79+
### **Removed**
80+
81+
- Removed .Hook()
82+
83+
### **Improvements**
84+
3785
- Added single-player targeting
86+
- "Silent" logs will display only in studio
3887

39-
## version 0.1.0
88+
## [version 0.1.0](https://github.com/ffrostflame/BridgeNet2/releases/tag/v0.1.0): 2/19/2023
4089

4190
- Release

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Copyright 2022 ffrostflame
1+
Copyright 2022 ffrostfall
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

55
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
66

7-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
<img src=".moonwave/static/logo.png" width="512" />
44

5-
# BridgeNet2 v0.1.0
5+
# BridgeNet2 v0.4.0
6+
67
A multi-paradigm, blazingly fast & highly equipped networking library for Roblox.
78

89
Documentation
910

10-
</div>
11+
</div>

buildStandalone.js

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)