Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The unit of maxAge is set in seconds, not msec #219

Closed
2 tasks done
seia-soto opened this issue Oct 27, 2022 · 3 comments · Fixed by #220
Closed
2 tasks done

The unit of maxAge is set in seconds, not msec #219

seia-soto opened this issue Oct 27, 2022 · 3 comments · Fixed by #220

Comments

@seia-soto
Copy link
Contributor

Prerequisites

  • I have written a descriptive issue title
  • I have searched existing issues to ensure the bug has not already been reported

Fastify version

4.7.0

Plugin version

8.3.0

Node.js version

v18.10.0

Operating system

macOS

Operating system version (i.e. 20.04, 11.3, 10)

12.6 (21G115)

Description

The following is fastify-cookie option typing (truncated). However, unlike the description of CookieSerializeOptions['maxAge'], the actual value takes second(s) as its unit.

export interface CookieSerializeOptions {
  /**  A `number` in milliseconds that specifies the `Expires` attribute by adding the specified milliseconds to the current date. If both `expires` and `maxAge` are set, then `expires` is used. */
  maxAge?: number;
}

Steps to Reproduce

I set the simple test environment: https://github.com/seia-soto/fastify-cookie-maxage

fastify.get('/set', async (_req, reply) => {
  reply.setCookie('test', '1', {
    maxAge: 3600
  })
})

Expected Behavior

If the unit is msec, we should see 3.6ss instead of a hour below: (LibreWolf)

image

This is not the browser specific issue: (Safari)

image

@seia-soto
Copy link
Contributor Author

seia-soto commented Oct 27, 2022

Using second for max-age is a common behavior in many other frameworks and I think we can just update the type definition instead of fixing this. We don't need to break any existing projects.

@seia-soto seia-soto changed the title In firefox, the unit of maxAge is set in seconds, not msec The unit of maxAge is set in seconds, not msec Oct 27, 2022
@Uzlopak
Copy link
Contributor

Uzlopak commented Oct 27, 2022

It would be nice if you would provide a PR

@seia-soto
Copy link
Contributor Author

Done 🙃

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants