-
Notifications
You must be signed in to change notification settings - Fork 7
[Issue #490] Small dependency bump #498
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b25e565
Small dependency bump
jcrichlake aedd90e
Fixing axios ddos issue
jcrichlake 7d7c80c
build: Adopts pnpm catalog
widal001 aaba98a
build: Update deps
widal001 1c566ae
refactor(cli): Saves changes to generated OpenAPI docs
widal001 34140cb
build: Adds changeset for patch release
widal001 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 hidden or 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,9 @@ | ||
| --- | ||
| "@common-grants/core": patch | ||
| "@common-grants/cli": patch | ||
| --- | ||
|
|
||
| Updates dependencies | ||
|
|
||
| - Updates both `@common-grants/core` and `@common-grants/cli` to use the latest TypeSpec library versions | ||
| - Updates `@common-grants/cli` to reference `@common-grants/core` as a dev dependency instead of a direct dependency |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -818,13 +818,41 @@ components: | |
| Examples might include a deadline for questions, anticipated award date, etc. | ||
| description: Key dates and events in the opportunity's timeline, such as when the opportunity is posted and closes | ||
| example: | ||
| postDate: {} | ||
| closeDate: {} | ||
| postDate: | ||
| name: Application posted date | ||
| eventType: singleDate | ||
| date: '2024-01-15' | ||
| description: Opportunity is posted publicly | ||
|
Comment on lines
+821
to
+825
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These examples are preserved due to the switch to the latest |
||
| closeDate: | ||
| name: Opportunity close date | ||
| eventType: singleDate | ||
| date: '2024-12-31' | ||
| time: '17:00:00' | ||
| description: Opportunity closes for all applications | ||
| otherDates: | ||
| anticipatedAward: {} | ||
| applicationPeriod: {} | ||
| performancePeriod: {} | ||
| infoSessions: {} | ||
| anticipatedAward: | ||
| name: Anticipated award date | ||
| eventType: singleDate | ||
| date: '2025-03-15' | ||
| description: When we expect to announce awards for this opportunity. | ||
| applicationPeriod: | ||
| name: Application period | ||
| eventType: dateRange | ||
| startDate: '2024-01-01' | ||
| endDate: '2024-01-31' | ||
| endTime: '17:00:00' | ||
| description: Primary application period for the grant opportunity | ||
| performancePeriod: | ||
| name: Period of Performance | ||
| eventType: dateRange | ||
| startDate: '2024-01-01' | ||
| endDate: '2024-12-31' | ||
| description: Period of performance for the grant | ||
| infoSessions: | ||
| name: Info sessions | ||
| eventType: other | ||
| details: Every other Tuesday | ||
| description: Info sessions for the opportunity | ||
| CommonGrants.Models.OpportunityBase: | ||
| type: object | ||
| required: | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -51,13 +51,13 @@ | |
| "author": "CommonGrants", | ||
| "license": "CC0-1.0", | ||
| "peerDependencies": { | ||
| "@typespec/compiler": "^1.5.0", | ||
| "@typespec/http": "^1.5.0", | ||
| "@typespec/json-schema": "^1.5.0", | ||
| "@typespec/openapi3": "^1.5.0", | ||
| "@typespec/openapi": "^1.5.0", | ||
| "@typespec/rest": "^0.75.0", | ||
| "@typespec/versioning": "^0.75.0" | ||
| "@typespec/compiler": "catalog:", | ||
| "@typespec/http": "catalog:", | ||
|
Comment on lines
+54
to
+55
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. New syntax for using pnpm catalog |
||
| "@typespec/json-schema": "catalog:", | ||
| "@typespec/openapi3": "catalog:", | ||
| "@typespec/openapi": "catalog:", | ||
| "@typespec/rest": "catalog:", | ||
| "@typespec/versioning": "catalog:" | ||
| }, | ||
| "devDependencies": { | ||
| "@eslint/js": "^9.18.0", | ||
|
|
||
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.
This enables us to to a patch release of both
@common-grants/coreand@common-grants/cli