@exulu/backend 1.7.0 → 1.8.0

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.
@@ -24,7 +24,7 @@ jobs:
24
24
  - name: Setup Node.js
25
25
  uses: actions/setup-node@v4
26
26
  with:
27
- node-version: "20.10.0"
27
+ node-version: "22.17.1"
28
28
  - name: Install dependencies
29
29
  run: npm clean-install
30
30
  - name: Build
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 22.17.1
package/CHANGELOG.md CHANGED
@@ -1,9 +1,14 @@
1
- # [1.7.0](https://github.com/Qventu/exulu-backend/compare/v1.6.2...v1.7.0) (2025-08-06)
1
+ # [1.8.0](https://github.com/Qventu/exulu-backend/compare/v1.7.0...v1.8.0) (2025-08-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update node version in github action ([b0346b5](https://github.com/Qventu/exulu-backend/commit/b0346b5e729fb614edc8810cfbff8b5c0afc92f8))
2
7
 
3
8
 
4
9
  ### Features
5
10
 
6
- * add support for variable management ([af94446](https://github.com/Qventu/exulu-backend/commit/af94446a5bc12a092fb09397948a430f5527fccd))
11
+ * upgrade to node 22 ([7287d05](https://github.com/Qventu/exulu-backend/commit/7287d056f932ded862c574cbb0a794b214c4a5de))
7
12
 
8
13
  # [1.1.0](https://github.com/Qventu/exulu-backend/compare/v1.0.1...v1.1.0) (2025-07-30)
9
14
 
package/dist/index.js CHANGED
@@ -5096,8 +5096,8 @@ var RecursiveChunk = class _RecursiveChunk extends Chunk {
5096
5096
  // src/chunking/tokenizer.ts
5097
5097
  import { Tiktoken } from "tiktoken/lite";
5098
5098
  import { load } from "tiktoken/load";
5099
- import registry from "tiktoken/registry.json" assert { type: "json" };
5100
- import models from "tiktoken/model_to_encoding.json" assert { type: "json" };
5099
+ import registry from "tiktoken/registry.json";
5100
+ import models from "tiktoken/model_to_encoding.json";
5101
5101
  var ExuluTokenizer = class {
5102
5102
  constructor() {
5103
5103
  }
package/lms.md ADDED
@@ -0,0 +1,3 @@
1
+ The Exulu LMS is a Tutor Open Edx instance hosted on a hetzner cloud. Important, we used this guide https://community.hetzner.com/tutorials/open-edx-lms-docker. Pleas note the command "config save --set ENABLE_WEB_PROXY=false --set CADDY_HTTP_PORT=84" used in the guide is false, it should be "tutor config save --set ENABLE_WEB_PROXY=true --set ENABLE_HTTPS=true --set CADDY_HTTP_PORT=80 --set CADDY_HTTPS_PORT=443".
2
+
3
+ Also follow this guide to setup the first user, and upgrade the database to support icons / emojis: https://docs.tutor.edly.io/local.html#createuser
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "1.7.0",
4
+ "version": "1.8.0",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {
@@ -11,13 +11,14 @@
11
11
  "types": "./dist/index.d.ts",
12
12
  "homepage": "https://exulu.com",
13
13
  "engines": {
14
- "node": "20.10.0"
14
+ "node": "22.17.1"
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
18
18
  "url": "https://github.com/Qventu/exulu-backend"
19
19
  },
20
20
  "scripts": {
21
+ "preinstall": "node -e \"if (process.version !== 'v22.17.1') { console.error('❌ Wrong Node.js version. Expected v22.17.1, got ' + process.version); process.exit(1); }\"",
21
22
  "build": "tsup",
22
23
  "dev": "npm link && tsup --watch",
23
24
  "prepare": "husky",