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

Fixes ISO 8601 timestamp validation #490

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Dec 27, 2021

  1. Fixes ISO 8601 timestamp validation

    The regex used to perform timestamp validation fails to parse valid
    timestamps that do not have fractional seconds (e.g. `2020-04-14T19:54:46Z`).
    
    This change (1) updates the regex to account for this and (2) moves the regex
    into a global variable so it lives in one place.
    
    The new regex is sourced from Ch 4.7 in `Regular Expressions Cookbook` 2e
    by Goyvaerts and Levithan.
    
    note - From what I can tell Postman only allows strings in environment
    variables so I cannot simply put the validation function there.
    sgg authored and geromegrignon committed Dec 27, 2021
    Configuration menu
    Copy the full SHA
    caf8ec9 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2022

  1. fix: rebase repository

    geromegrignon committed May 22, 2022
    Configuration menu
    Copy the full SHA
    b7054cd View commit details
    Browse the repository at this point in the history