-
Notifications
You must be signed in to change notification settings - Fork 217
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
Added $ulid
Function for Dynamic Variable
#1378
Open
madeindra
wants to merge
111
commits into
postmanlabs:develop
Choose a base branch
from
madeindra:feature/ulid-function
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* release/v0.4.14: (21 commits) Bumped package.json version to v0.4.14 Tightened dependency requirements to use precise versions only update node-oauth1 version, fixes postmanlabs/postman-app-support#2272 0.4.13 code style added tests for the meta properties added a function to get meta properties Ensure that meta keywords of base constructor "merges" the properties instead of deleting them. Updated propertyBase to pick description from `info` block if provided Updated the _.createDefined util function to accept a fallback parameter to set default 0.4.12 added an option to get the port when it is not specified added a method to get the remote from a url Added Travis CI build notification capability fixed the tests Added unparsing tests for query params that lack value Fixed dead code and throwback logic in URL constructor and query param getter. Updated QueryParam.unparse to internally use unparseSingle -> thus retaining parameter integrity Updated query param constructor to inherit from Property (no clue why it was not done) and split the constructor to use `update` function. Also, made the toString() function of query param use `unparseSingle` Updated the function of single query param parsing to (1) not trim anything and (2) if value is missing, store it as undefined. These are useful in retaining integrity during unparsing ...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Current dynamic variables support GUID by using
v4
method fromuuid
package. However, there is no way to generate ULID. This PR introduces $ulid variable that can generate ULID variable just like how GUID is generated.Dependency: https://www.npmjs.com/package/ulid
The above dependency is choosen because the other dependency (
ulidx
) failed the test run innpm test
.