-
Notifications
You must be signed in to change notification settings - Fork 43
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
feat: minor refactor of how we debug and log out data in commands #563
Merged
Merged
Changes from 24 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
8a5619c
docs: add some JSDocs for getProjectVersion
kanadgupta a39abe7
fix(openapi): add trailing period to param description
kanadgupta 36e74dd
refactor: consolidate version opt descriptions
kanadgupta 4be032d
test: update snapshots
kanadgupta f937dc1
feat: initial pass at CI version handling
kanadgupta f2fb63d
feat: initial pass at `useSpecVersion` flag
kanadgupta 313505c
test: fix snapshots
kanadgupta 8ebaf2c
test: fix test
kanadgupta 6f87f80
test: add coverage for various version edge cases
kanadgupta 8b445fb
test: use different file
kanadgupta ea5dff1
chore(openapi): alphabetize opts
kanadgupta 6925bd4
chore: use info statement instead of debug
kanadgupta bfba671
chore: use info emoji in logger
kanadgupta ab9c956
test: fix tests
kanadgupta 2172213
chore: attempt to merge
kanadgupta ae493f1
fix: import paths for versionOpt
kanadgupta f979f5b
fix: some merge issues
kanadgupta 07cddf9
fix: lint
kanadgupta 26d9f9f
test: fix one more test jeez
kanadgupta 2cd9847
Merge branch 'main' into kanad/rm-4984-if-run-in-ci-environment-just-…
kanadgupta 695438b
fix: trailing period
kanadgupta ab3fad6
fix: version arg refactors
erunion 54ddc0a
feat: minor refactor of how we debug and log out data in commands
erunion a66095f
chore(deps-dev): bumping eslint-config to v10
erunion 2efc978
Merge branch 'main' into feat/minor-refactors
kanadgupta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"openapi": "3.0.0", | ||
"info": { | ||
"version": "1.2.3", | ||
"title": "Single Path", | ||
"description": "This is a slimmed down single path version of the Petstore definition." | ||
}, | ||
"servers": [ | ||
{ | ||
"url": "https://httpbin.org" | ||
} | ||
], | ||
"paths": { | ||
"/pet/{id}": { | ||
"parameters": [ | ||
{ | ||
"name": "id", | ||
"in": "path", | ||
"required": true, | ||
"schema": { | ||
"type": "integer" | ||
} | ||
} | ||
], | ||
"put": { | ||
"tags": ["pet"], | ||
"summary": "Update a pet", | ||
"description": "This operation will update a pet in the database.", | ||
"responses": { | ||
"400": { | ||
"description": "Invalid id value" | ||
} | ||
}, | ||
"security": [ | ||
{ | ||
"apiKey": [] | ||
} | ||
] | ||
}, | ||
"get": { | ||
"tags": ["pet"], | ||
"summary": "Find a pet", | ||
"description": "This operation will find a pet in the database.", | ||
"responses": { | ||
"400": { | ||
"description": "Invalid status value" | ||
} | ||
}, | ||
"security": [] | ||
} | ||
} | ||
}, | ||
"components": { | ||
"securitySchemes": { | ||
"apiKey": { | ||
"type": "http", | ||
"scheme": "basic" | ||
} | ||
} | ||
} | ||
} |
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
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
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved into our core standards and tagged a major release of that pkg. readmeio/standards@edffdbe