Uploaded image for project: 'Node.js Driver'
  1. Node.js Driver
  2. NODE-5030

Missing milliseconds precision with EJSON.serialize(Date)

    • Type: Icon: Bug Bug
    • Resolution: Works as Designed
    • Priority: Icon: Unknown Unknown
    • None
    • Affects Version/s: 5.0.0
    • Component/s: BSON
    • 2
    • Not Needed
    • Hide

      1. What would you like to communicate to the user about this feature?
      2. Would you like the user to see examples of the syntax and/or executable code and its output?
      3. Which versions of the driver/connector does this apply to?

      Show
      1. What would you like to communicate to the user about this feature? 2. Would you like the user to see examples of the syntax and/or executable code and its output? 3. Which versions of the driver/connector does this apply to?

      What problem are you facing?

      Milliseconds precision is truncated with bson.EJSON.serialize(new Date()).

       

      What driver and relevant dependency versions are you using?

      bson: 5.0.0

       

      Steps to reproduce?

      const { EJSON } = require('bson')
      const res = new Date("2023-01-01T12:35:31.000Z")
      EJSON.serialize(res)
       

      Current

      { '$date': '2023-01-01T12:35:31Z' }

       

      Expected

      { '$date': '2023-01-01T12:35:31.000Z' }

            Assignee:
            bailey.pearson@mongodb.com Bailey Pearson
            Reporter:
            turegemailus@gmail.com Jack Allen
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: