Skip to content

Commit f4bfc8f

Browse files
authored
Merge pull request #351 from pylonide/development
v2.10.0
2 parents 56d39c9 + 61219c5 commit f4bfc8f

File tree

8 files changed

+1028
-462
lines changed

8 files changed

+1028
-462
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x]
13+
node-version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x, 20.x]
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Use Node.js ${{ matrix.node-version }}

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 14
17+
node-version: 18
1818
- run: npm ci
1919

2020
publish-npm:
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v3
2525
- uses: actions/setup-node@v3
2626
with:
27-
node-version: 14
27+
node-version: 18
2828
registry-url: https://registry.npmjs.org/
2929
- run: npm ci
3030
- run: npm publish

configs/default.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,14 +173,14 @@ var config = [
173173
},
174174
{
175175
packagePath: "./connect.session",
176-
name: "cloud9.sid." + port,
176+
name: "pylon.sid." + port,
177177
secret: "v1234",
178178
saveUninitialized: true
179179
},
180180
{
181181
packagePath: "./connect.session.file",
182182
sessionsPath: __dirname + "/../.sessions",
183-
maxAge: 7 * 24 * 60 * 60 * 1000
183+
maxAge: 86400
184184
},
185185
"./pylon.permissions",
186186
{

0 commit comments

Comments
 (0)