-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): Test v7.42.2 (#10098)
Signed-off-by: Matt Krick <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Georg Bremer <[email protected]> Co-authored-by: Matt Krick <[email protected]> Co-authored-by: parabol-release-bot[bot] <150284312+parabol-release-bot[bot]@users.noreply.github.com> Co-authored-by: Dale Bumblis <[email protected]> Co-authored-by: Rafa <[email protected]> Co-authored-by: Nick O'Ferrall <[email protected]> Co-authored-by: Bruce Tian <[email protected]> Co-authored-by: Bartosz Jarocki <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <[email protected]> Co-authored-by: GitHub Action <[email protected]> Co-authored-by: Jordan Husney <[email protected]> Co-authored-by: Terry Acker <[email protected]> Co-authored-by: Rafael Romero <[email protected]> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: github-actions <[email protected]>
- Loading branch information
1 parent
9e609da
commit 359e239
Showing
63 changed files
with
1,287 additions
and
421 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
".": "7.41.2" | ||
".": "7.42.2" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"description": "An open-source app for building smarter, more agile teams.", | ||
"author": "Parabol Inc. <[email protected]> (http://github.com/ParabolInc)", | ||
"license": "AGPL-3.0", | ||
"version": "7.41.2", | ||
"version": "7.42.2", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ParabolInc/parabol" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "chronos", | ||
"version": "7.41.2", | ||
"version": "7.42.2", | ||
"description": "A cron job scheduler", | ||
"author": "Matt Krick <[email protected]>", | ||
"homepage": "https://github.com/ParabolInc/parabol/tree/master/packages/chronos#readme", | ||
|
@@ -25,6 +25,6 @@ | |
}, | ||
"dependencies": { | ||
"cron": "^2.3.1", | ||
"parabol-server": "7.41.2" | ||
"parabol-server": "7.42.2" | ||
} | ||
} |
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,51 @@ | ||
import graphql from 'babel-plugin-relay/macro' | ||
import {commitMutation} from 'react-relay' | ||
import {GenerateInsightMutation as TGenerateInsightMutation} from '../__generated__/GenerateInsightMutation.graphql' | ||
import {StandardMutation} from '../types/relayMutations' | ||
|
||
graphql` | ||
fragment GenerateInsightMutation_team on GenerateInsightSuccess { | ||
wins | ||
challenges | ||
} | ||
` | ||
|
||
const mutation = graphql` | ||
mutation GenerateInsightMutation( | ||
$teamId: ID! | ||
$startDate: DateTime! | ||
$endDate: DateTime! | ||
$useSummaries: Boolean | ||
$prompt: String | ||
) { | ||
generateInsight( | ||
teamId: $teamId | ||
startDate: $startDate | ||
endDate: $endDate | ||
useSummaries: $useSummaries | ||
prompt: $prompt | ||
) { | ||
... on ErrorPayload { | ||
error { | ||
message | ||
} | ||
} | ||
...GenerateInsightMutation_team @relay(mask: false) | ||
} | ||
} | ||
` | ||
|
||
const GenerateInsightMutation: StandardMutation<TGenerateInsightMutation> = ( | ||
atmosphere, | ||
variables, | ||
{onError, onCompleted} | ||
) => { | ||
return commitMutation<TGenerateInsightMutation>(atmosphere, { | ||
mutation, | ||
variables, | ||
onCompleted, | ||
onError | ||
}) | ||
} | ||
|
||
export default GenerateInsightMutation |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"description": "An open-source app for building smarter, more agile teams.", | ||
"author": "Parabol Inc. <[email protected]> (http://github.com/ParabolInc)", | ||
"license": "AGPL-3.0", | ||
"version": "7.41.2", | ||
"version": "7.42.2", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ParabolInc/parabol" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "parabol-embedder", | ||
"version": "7.41.2", | ||
"version": "7.42.2", | ||
"description": "A service that computes embedding vectors from Parabol objects", | ||
"author": "Jordan Husney <[email protected]>", | ||
"homepage": "https://github.com/ParabolInc/parabol/tree/master/packages/embedder#readme", | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "gql-executor", | ||
"version": "7.41.2", | ||
"version": "7.42.2", | ||
"description": "A Stateless GraphQL Executor", | ||
"author": "Matt Krick <[email protected]>", | ||
"homepage": "https://github.com/ParabolInc/parabol/tree/master/packages/gqlExecutor#readme", | ||
|
@@ -27,8 +27,8 @@ | |
}, | ||
"dependencies": { | ||
"dd-trace": "^4.2.0", | ||
"parabol-client": "7.41.2", | ||
"parabol-server": "7.41.2", | ||
"parabol-client": "7.42.2", | ||
"parabol-server": "7.42.2", | ||
"undici": "^5.26.2" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "integration-tests", | ||
"author": "Parabol Inc. <[email protected]> (http://github.com/ParabolInc)", | ||
"license": "AGPL-3.0", | ||
"version": "7.41.2", | ||
"version": "7.42.2", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
|
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.