Skip to content

Commit

Permalink
Merge pull request #78 from DIG-Network/release/v0.0.1-alpha.83
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.83
  • Loading branch information
MichaelTaylor3D authored Oct 4, 2024
2 parents 73edde7 + 27e6154 commit 3e9d480
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.1-alpha.83](https://github.com/DIG-Network/dig-content-server/compare/v0.0.1-alpha.82...v0.0.1-alpha.83) (2024-10-04)


### Bug Fixes

* adjust cookie timeout ([6f25b9f](https://github.com/DIG-Network/dig-content-server/commit/6f25b9fdaf06d79bec3cb5585413041e1a5c0cc9))

### [0.0.1-alpha.82](https://github.com/DIG-Network/dig-content-server/compare/v0.0.1-alpha.81...v0.0.1-alpha.82) (2024-10-04)

### [0.0.1-alpha.81](https://github.com/DIG-Network/dig-content-server/compare/v0.0.1-alpha.80...v0.0.1-alpha.81) (2024-10-04)
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dig-content-server",
"version": "0.0.1-alpha.82",
"version": "0.0.1-alpha.83",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand All @@ -25,7 +25,7 @@
],
"dependencies": {
"@dignetwork/datalayer-driver": "^0.1.28",
"@dignetwork/dig-sdk": "^0.0.1-alpha.127",
"@dignetwork/dig-sdk": "^0.0.1-alpha.130",
"add": "^2.0.6",
"cheerio": "^1.0.0",
"cookie-parser": "^1.4.6",
Expand Down
4 changes: 2 additions & 2 deletions src/middleware/parseUdi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ export const parseUdi = async (
{
httpOnly: true,
secure: false,
maxAge: 5 * 60 * 1000, // Cookie expires after 5 minutes
expires: new Date(Date.now() + 5 * 60 * 1000),
maxAge: 1 * 60 * 1000, // Cookie expires after 5 minutes
expires: new Date(Date.now() + 1 * 60 * 1000),
}
);

Expand Down

0 comments on commit 3e9d480

Please sign in to comment.