Skip to content

Releases: ether/etherpad-lite

v2.2.4

07 Sep 13:20
v2.2.4
Compare
Choose a tag to compare

[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

05 Sep 17:25
v2.2.3
Compare
Choose a tag to compare

[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

09 Aug 10:01
v2.2.2
Compare
Choose a tag to compare

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

07 Jul 19:16
v2.1.1
Compare
Choose a tag to compare

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

02 Jun 11:25
v2.1.0
Compare
Choose a tag to compare

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

29 Apr 19:58
v2.0.3
Compare
Choose a tag to compare

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

v2.0.2

10 Apr 17:34
v2.0.2
Compare
Choose a tag to compare

Notable enhancements and fixes

  • Fixed the locale loading in the admin panel
  • Added OAuth2.0 support for the Etherpad API. You can now log in into the Etherpad API with your admin user using OAuth2

Compatibility changes

  • The tests now require generating a token from the OAuth secret. You can find the generateJWTToken in the common.ts script for plugin endpoint updates.

v2.0.1

17 Mar 21:39
v2.0.1
Compare
Choose a tag to compare

Notable enhancements and fixes

  • Fixed a bug where a plugin depending on a scoped dependency would not install successfully.

v2.0.0

17 Mar 12:07
v2.0.0
Compare
Choose a tag to compare

First of all I am very happy to announce the second major version of Etherpad. During the course of the last months we have updated all dependencies, cleaned up some of the old Etherpad code and converted most of the things to Typescript.

Compatibility changes

  • Socket io has been updated to 4.7.5. This means that the json.send function won't work anymore and needs to be changed to .emit('message', myObj)
  • Deprecating npm version 6 in favor of pnpm: We have made the decision to switch to the well established pnpm (https://pnpm.io/). It works by symlinking dependencies into a global directory allowing you to have a cleaner and more reliable environment.
  • Introducing Typescript to the Etherpad core: Etherpad core logic has been rewritten in Typescript allowing for compiler checking of errors.
  • Rewritten Admin Panel: The Admin panel has been rewritten in React and now features a more pleasant user experience. It now also features an integrated pad searching with sorting functionality.

Notable enhancements and fixes

  • Bugfixes

    • Live Plugin Manager: The live plugin manager caused problems when a plugin had depdendencies defined. This issue is now resolved.
  • Enhancements

    • pnpm Workspaces: In addition to pnpm we introduced workspaces. A clean way to manage multiple bounded contexts like the admin panel or the bin folder.
    • Bin folder: The bin folder has been moved from the src folder to the root folder. This change was necessary as the contained scripts do not represent core functionality of the user.
    • Starting Etherpad: Etherpad can now be started with a single command: pnpm run prod in the root directory.
    • Installing Etherpad: Etherpad no longer symlinks itself in the root directory. This is now also taken care by pnpm, and it just creates a node_modules folder with the src directory`s ep_etherpad-lite folder
    • Plugins can now be installed simply via the command: pnpm run install-plugins first-plugin second-plugin or if you want to install from path you can do:
      pnpm run install-plugins --path ../path-to-plugin

This wouldn't be possible as a single developer. Special thanks to:

  • @HMarzban for jumping in to update socket io
  • @Gared for implementing and fixing the Live Plugin Manager
  • @JannikStreek for adapting the Etherpad Docker build process, introducing PNPM workspaces and separating the bin and src folder
  • @AugustinMauroy for the roadmap and inspiration of modernizing the Etherpad structure

v1.9.7

05 Feb 19:40
v1.9.7
Compare
Choose a tag to compare

Notable enhancements and fixes

  • Added Live Plugin Manager: Plugins are now installed into a separate folder on the host system. This folder is called plugin_packages.
    That way the plugins are separated from the normal etherpad installation.
  • Make repairPad.js more verbose
  • Fixed favicon not being loaded correctly