From f830bbc058efca829e1cb59cba632d4c2fbebfd5 Mon Sep 17 00:00:00 2001 From: munja Date: Tue, 29 Mar 2022 11:25:00 +0100 Subject: [PATCH 1/2] chore(release): 0.0.44 --- CHANGELOG.md | 10 ++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d64994..76995a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.0.44](https://github.com/sasjs/server/compare/v0.0.43...v0.0.44) (2022-03-29) + + +### Bug Fixes + +* DELETE req cannot have body ([0a5aece](https://github.com/sasjs/server/commit/0a5aeceab560b022197d0c30c3da7f091b261b1e)) +* increased req body size ([6dc39c0](https://github.com/sasjs/server/commit/6dc39c0d91ac13d6d9b8c0a2240446bfc45bdd7f)) +* **session:** increased session + bug fixed ([117a53c](https://github.com/sasjs/server/commit/117a53ceeadf487a6326384ae11c10e98646631f)) +* **stp:** use same session from file upload ([dd56a95](https://github.com/sasjs/server/commit/dd56a95314f0b61480489118734e45877e1745ef)) + ### [0.0.43](https://github.com/sasjs/server/compare/v0.0.42...v0.0.43) (2022-03-23) diff --git a/package-lock.json b/package-lock.json index f90558d..1ae9b15 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "server", - "version": "0.0.43", + "version": "0.0.44", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "server", - "version": "0.0.43", + "version": "0.0.44", "devDependencies": { "prettier": "^2.3.1", "standard-version": "^9.3.2" diff --git a/package.json b/package.json index 9b4507f..4d28a7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "server", - "version": "0.0.43", + "version": "0.0.44", "description": "NodeJS wrapper for calling the SAS binary executable", "repository": "https://github.com/sasjs/server", "scripts": { From 7f4201ba855743144fa6d3efac2b11e816d4696e Mon Sep 17 00:00:00 2001 From: Allan Bowe Date: Tue, 29 Mar 2022 16:11:15 +0000 Subject: [PATCH 2/2] fix: proving a PRINT destination during SAS invocation. Closes #111 --- api/src/controllers/internal/Session.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/src/controllers/internal/Session.ts b/api/src/controllers/internal/Session.ts index 074bf51..332ffd3 100644 --- a/api/src/controllers/internal/Session.ts +++ b/api/src/controllers/internal/Session.ts @@ -87,6 +87,8 @@ ${autoExecContent}` codePath, '-LOG', path.join(session.path, 'log.log'), + '-PRINT', + path.join(session.path, 'output.lst'), '-WORK', session.path, '-AUTOEXEC',