@soleil-se/build-app 2.1.6 → 2.1.7

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.
package/CHANGELOG.md CHANGED
@@ -4,9 +4,13 @@ title: Changelog
4
4
 
5
5
  Baseras på [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) och använder [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.1.7] - 2025-03-05
8
+
9
+ - Ta bort encoding av användarnamn på anrop.
10
+
7
11
  ## [2.1.6] - 2025-02-28
8
12
 
9
- - Ta bort encoding av inlodggningsuppgifter på anrop för signering.
13
+ - Ta bort encoding av inloggningsuppgifter på anrop för signering.
10
14
 
11
15
  ## [2.1.5] - 2025-02-28
12
16
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@soleil-se/build-app",
3
3
  "description": "Script for building WebApps, RESTApps and Widgets with Svelte in Sitevision.",
4
- "version": "2.1.6",
4
+ "version": "2.1.7",
5
5
  "bin": {
6
6
  "build-app": "./bin/index.js",
7
7
  "sv-app-build": "./bin/index.js"
@@ -52,8 +52,8 @@
52
52
  "rollup-plugin-svelte": "7.2.2",
53
53
  "slash": "5.1.0",
54
54
  "svelte-preprocess": "6.0.3",
55
- "@soleil-se/build-utils": "1.8.2",
56
- "@soleil-se/build-config": "1.3.0"
55
+ "@soleil-se/build-config": "1.3.0",
56
+ "@soleil-se/build-utils": "1.8.2"
57
57
  },
58
58
  "devDependencies": {
59
59
  "svelte": "^5.6.2"
@@ -8,8 +8,8 @@ const [username, password] = Buffer.from(auth || '', 'base64').toString().split(
8
8
 
9
9
  const options = {
10
10
  prefixUrl: `${host}/rest-api/1/0/${encodeURIComponent(name)}/`,
11
- username: encodeURIComponent(username),
12
- password: encodeURIComponent(password),
11
+ username,
12
+ password: encodeURI(password),
13
13
  method: 'POST',
14
14
  responseType: 'json',
15
15
  resolveBodyOnly: true,