1 |
--- |
2 |
title: "What's new in v8.0? - SudoBot" |
3 |
short_name: "What's new in v8.0?" |
4 |
openGraph: |
5 |
type: 'article' |
6 |
authors: |
7 |
- Ar Rakin |
8 |
images: |
9 |
- url: https://docs.sudobot.org/sudobot-v8-8.png |
10 |
height: 250 |
11 |
width: 250 |
12 |
--- |
13 |
|
14 |
import sudobot8 from '@/images/sudobot-v8.png'; |
15 |
|
16 |
# Introducing SudoBot v8.0! |
17 |
|
18 |
<ImageWithSkeleton |
19 |
src={sudobot8.src} |
20 |
alt="SudoBot 8 Branding" |
21 |
width={sudobot8.width} |
22 |
height={sudobot8.height} |
23 |
blurDataURL={sudobot8.blurDataURL} |
24 |
style={{ width: '100%' }} |
25 |
placeholder="blur" |
26 |
/> |
27 |
|
28 |
Wishing a happy new year to everyone out there! We've released version 8.0 of SudoBot, as always, packed with a bunch of new features, fixes and improvements! If you have any questions or suggestions, feel free to let us know! |
29 |
|
30 |
## Changes |
31 |
|
32 |
### Features |
33 |
|
34 |
* Now Fully Supporting [Bun](https://bun.sh)! During performance tests, SudoBot's performance was 25% better when using Bun instead of Node.js |
35 |
* Authentication and Loading Environment Variables using a Credential Server |
36 |
* URL Filtering by Crawling **[Experimental]** |
37 |
* Embed Text Filter |
38 |
* Image Text Filtering |
39 |
|
40 |
### Improvements and Refactorings |
41 |
|
42 |
* Refactored all the decorators to support TypeScript 5 Decorators as well as the old experimental decorators, to support bun |
43 |
* Refactored the HTTP Server class |
44 |
|
45 |
### Fixes |
46 |
|
47 |
* Minor performance fixes |
48 |
|
49 |
## Updating |
50 |
|
51 |
To update your instance, simply download the [latest release](https://github.com/onesoft-sudo/sudobot/releases/latest), or run the `-update` command. |
52 |
You can also use [Git](https://git-scm.com) to update your instance, by running this command: |
53 |
|
54 |
```bash |
55 |
git pull origin main |
56 |
``` |
57 |
However, this will update your instance to the latest **unstable** version. |