Missing milliseconds precision with EJSON.serialize(Date)

XMLWordPrintableJSON

    • Type: Bug
    • Resolution: Works as Designed
    • Priority: Unknown
    • None
    • Affects Version/s: 5.0.0
    • Component/s: BSON
    • 2
    • Not Needed
    • None
    • 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?
    • None
    • None
    • None
    • None
    • None
    • None

      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
            Reporter:
            Jack Allen
            None
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: