Releases: ether/etherpad-lite
v2.3.0
Notable enhancements and fixes
- Added possibility to cluster Etherpads behind reverse proxy. There is now a new reverse proxy designed for Etherpads that handles multiple Etherpads and the created pads in them. It will assign the pad assignement to an Etherpad at random but once the choice was made it will always reverse proxy the same backend. This allows to host multiple concurrent Etherpads and benefit from multi core systems even though one Etherpad is singlethreaded.
- Added reverse proxy configuration for replacing Nginx. In the past there were some issues with nginx and its configuration. This reverse proxy allows you to handle your configuration with ease.
If you want to find out more about the reverse proxy method check out the repository https://github.com/ether/etherpad-proxy . It also contains a sample docker-compose file with three Etherpads and one etherpad-proxy. Of course you need to adapt the settings.json.template to your liking and map it into the reverse proxy image before you are ready :).
- Added client authorization to work with Etherpad. Before it would get blocked because it doesn't have the required claim. As this is now fixed etherpad-proxy can also work with your new OAuth2 configuration and retrieve a token via client credentials flow.
v2.2.7
[email protected] generateChangelog D:\a\etherpad-lite\etherpad-lite\bin
node --import tsx generateReleaseNotes.ts "refs/tags/v2.2.7"
2.2.7
Notable enhancements and fixes
- We migrated all important pages to React 19 and React Router v7
Besides that only dependency updates.
-> Have a merry Christmas and a happy new year. 🎄 🎁
v2.2.6
[email protected] generateChangelog D:\a\etherpad-lite\etherpad-lite\bin
node --import tsx generateReleaseNotes.ts "refs/tags/v2.2.6"
2.2.6
Notable enhancements and fixes
- Added option to delete a pad by the creator. This option can be found in the settings menu. When you click on it you get a confirm dialog and after that you have the chance to completely erase the pad.
v2.2.5
[email protected] generateChangelog D:\a\etherpad-lite\etherpad-lite\bin
node --import tsx generateReleaseNotes.ts "refs/tags/v2.2.5"
2.2.5
Notable enhancements and fixes
- Fixed timeslider not scrolling when the revision count is a multiple of 100
- Added new Restful API for version 2 of Etherpad. It is available at /api-docs
v2.2.4
[email protected] generateChangelog D:\a\etherpad-lite\etherpad-lite\bin
node --import tsx generateReleaseNotes.ts "refs/tags/v2.2.4"
2.2.4
Notable enhancements and fixes
- Switched to new SQLite backend
- Fixed rusty-store-kv module not found
v2.2.3
[email protected] generateChangelog D:\a\etherpad-lite\etherpad-lite\bin
node --import tsx generateReleaseNotes.ts "refs/tags/v2.2.3"
2.2.3
Notable enhancements and fixes
- Introduced a new in process database
rustydb
that represents a fast key value store written in Rust. - Readded window._ as a shortcut for getting text
- Added support for migrating any ueberdb database to another. You can now switch as you please. See here: https://docs.etherpad.org/cli.html
- Further Typescript movements
- A lot of security issues fixed and reviewed in this release. Please update.
v2.2.2
2.2.2
Notable enhancements and fixes
- Removal of Etherpad require kernel: We finally managed to include esbuild to bundle our frontend code together. So no matter how many plugins your server has it is always one JavaScript file. This boosts performance dramatically.
- Added log layoutType: This lets you print the log in either colored or basic (black and white text)
- Introduced esbuild for bundling CSS files
- Cache all files to be bundled in memory for faster load speed
v2.1.1
Notable enhancements and fixes
- Fixed failing Docker build when checked out as git submodule. Thanks to @neurolabs
- Fixed: Fallback to websocket and polling when unknown(old) config is present for socket io
- Fixed: Next page disabled if zero page by @samyakj023
- On CTRL+CLICK bring the window back to focus by Helder Sepulveda
Finally fixed random websocket disconnects!
v2.1.0
Notable enhancements and fixes
- Added PWA support. You can now add your Etherpad instance to your home screen on your mobile device or desktop.
- Fixed live plugin manager versions clashing. Thanks to @yacchin1205
- Fixed a bug in the pad panel where pagination was not working correctly when sorting by pad name
Compatibility changes
- Reintroduced APIKey.txt support. You can now switch between APIKey and OAuth2.0 authentication. This can be toggled with the setting authenticationMethod. The default is OAuth2. If you want to use the APIKey method you can set that to
apikey
.
v2.0.3
Notable enhancements and fixes
- Added documentation for replacing apikeys with oauth2
- Bumped live plugin manager to 0.20.0. Thanks to @fgreinacher
- Added better documentation for using docker-compose with Etherpad