Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-coding committed Jan 13, 2024
1 parent 3a49161 commit 3628399
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gropius-backend
Submodule gropius-backend updated 85 files
+2 −1 .github/workflows/deploy.yml
+2 −1 .github/workflows/test-deploy.yml
+21 −0 LICENSE
+4 −0 core/src/main/kotlin/gropius/service/architecture/ComponentVersionService.kt
+3 −0 core/src/main/kotlin/gropius/util/schema/MaxDepthExceededException.kt
+7 −0 core/src/main/kotlin/gropius/util/schema/Schema.kt
+3 −0 core/src/main/kotlin/gropius/util/schema/SchemaField.kt
+23 −2 core/src/main/kotlin/gropius/util/schema/Validator.kt
+5 −3 github/build.gradle.kts
+8 −0 github/src/main/graphql/gropius/sync/github/CommentRead.graphql
+1 −0 github/src/main/graphql/gropius/sync/github/CommonData.graphql
+12 −0 github/src/main/graphql/gropius/sync/github/IssueMutation.graphql
+4 −1 github/src/main/graphql/gropius/sync/github/IssueRead.graphql
+25 −3 github/src/main/graphql/gropius/sync/github/IssueReadTimeline.graphql
+10,827 −5,160 github/src/main/graphql/gropius/sync/github/schema.graphqls
+17 −5 github/src/main/kotlin/gropius/Application.kt
+65 −0 github/src/main/kotlin/gropius/sync/github/CommentWalker.kt
+17 −0 github/src/main/kotlin/gropius/sync/github/GitHubResourceWalkerConfig.kt
+93 −0 github/src/main/kotlin/gropius/sync/github/GithubDataService.kt
+24 −0 github/src/main/kotlin/gropius/sync/github/GithubResourceWalkerBudget.kt
+255 −0 github/src/main/kotlin/gropius/sync/github/GithubSync.kt
+0 −274 github/src/main/kotlin/gropius/sync/github/Incoming.kt
+713 −0 github/src/main/kotlin/gropius/sync/github/IssuePile.kt
+67 −0 github/src/main/kotlin/gropius/sync/github/IssueWalker.kt
+0 −239 github/src/main/kotlin/gropius/sync/github/NodeSourcerer.kt
+0 −656 github/src/main/kotlin/gropius/sync/github/Outgoing.kt
+0 −132 github/src/main/kotlin/gropius/sync/github/SyncSelector.kt
+74 −0 github/src/main/kotlin/gropius/sync/github/TimelineWalker.kt
+31 −6 github/src/main/kotlin/gropius/sync/github/config/IMSConfig.kt
+38 −87 github/src/main/kotlin/gropius/sync/github/config/IMSConfigManager.kt
+61 −13 github/src/main/kotlin/gropius/sync/github/config/IMSProjectConfig.kt
+0 −48 github/src/main/kotlin/gropius/sync/github/config/MongoConfig.kt
+0 −29 github/src/main/kotlin/gropius/sync/github/model/IssueDataCache.kt
+0 −50 github/src/main/kotlin/gropius/sync/github/model/IssueInfo.kt
+0 −32 github/src/main/kotlin/gropius/sync/github/model/RepositoryInfo.kt
+0 −34 github/src/main/kotlin/gropius/sync/github/model/TimelineEventInfo.kt
+0 −31 github/src/main/kotlin/gropius/sync/github/model/TimelineItemDataCache.kt
+0 −29 github/src/main/kotlin/gropius/sync/github/model/UserInfo.kt
+0 −46 github/src/main/kotlin/gropius/sync/github/repository/IssueInfoRepository.kt
+0 −29 github/src/main/kotlin/gropius/sync/github/repository/RepositoryInfoRepository.kt
+0 −28 github/src/main/kotlin/gropius/sync/github/repository/TimelineEventInfoRepository.kt
+0 −28 github/src/main/kotlin/gropius/sync/github/repository/UserInfoRepository.kt
+0 −154 github/src/main/kotlin/gropius/sync/github/utils/Grabber.kt
+0 −120 github/src/main/kotlin/gropius/sync/github/utils/IssueGrabber.kt
+0 −129 github/src/main/kotlin/gropius/sync/github/utils/TimelineGrabber.kt
+0 −228 github/src/main/kotlin/gropius/sync/github/utils/TimelineItemHandler.kt
+18 −0 jira/build.gradle.kts
+96 −0 jira/src/main/kotlin/gropius/Application.kt
+11 −0 jira/src/main/kotlin/gropius/JiraConfigurationProperties.kt
+102 −0 jira/src/main/kotlin/gropius/sync/jira/JiraDataService.kt
+25 −0 jira/src/main/kotlin/gropius/sync/jira/JiraResourceWalkerBudget.kt
+17 −0 jira/src/main/kotlin/gropius/sync/jira/JiraResourceWalkerConfig.kt
+381 −0 jira/src/main/kotlin/gropius/sync/jira/JiraSync.kt
+58 −0 jira/src/main/kotlin/gropius/sync/jira/config/IMSConfig.kt
+147 −0 jira/src/main/kotlin/gropius/sync/jira/config/IMSConfigManager.kt
+75 −0 jira/src/main/kotlin/gropius/sync/jira/config/IMSProjectConfig.kt
+435 −0 jira/src/main/kotlin/gropius/sync/jira/model/IssueData.kt
+46 −0 jira/src/main/kotlin/gropius/sync/jira/model/IssueQuery.kt
+160 −0 jira/src/main/kotlin/gropius/sync/jira/model/ProjectQuery.kt
+15 −0 jira/src/main/kotlin/gropius/sync/jira/model/RepoDescription.kt
+13 −0 jira/src/main/resources/application.yml
+96 −0 login-service/src/model/graphql/generated.ts
+1 −0 settings.gradle.kts
+7 −5 sync/build.gradle.kts
+652 −0 sync/src/main/kotlin/gropius/sync/AbstractSync.kt
+140 −0 sync/src/main/kotlin/gropius/sync/CursorResourceWalker.kt
+20 −0 sync/src/main/kotlin/gropius/sync/DereplicatorInfo.kt
+110 −0 sync/src/main/kotlin/gropius/sync/HeuristicDereplicator.kt
+66 −0 sync/src/main/kotlin/gropius/sync/Incoming.kt
+59 −0 sync/src/main/kotlin/gropius/sync/InvasiveDereplicator.kt
+33 −0 sync/src/main/kotlin/gropius/sync/IssueCleaner.kt
+65 −0 sync/src/main/kotlin/gropius/sync/IssueConversionInformation.kt
+81 −0 sync/src/main/kotlin/gropius/sync/IssueDereplicator.kt
+25 −0 sync/src/main/kotlin/gropius/sync/JsonHelper.kt
+76 −0 sync/src/main/kotlin/gropius/sync/LoadBalancedDataFetcher.kt
+48 −0 sync/src/main/kotlin/gropius/sync/NullDereplicator.kt
+24 −0 sync/src/main/kotlin/gropius/sync/ResourceWalkerBudget.kt
+7 −0 sync/src/main/kotlin/gropius/sync/SyncDataService.kt
+60 −0 sync/src/main/kotlin/gropius/sync/TimelineItemConversionInformation.kt
+92 −0 sync/src/main/kotlin/gropius/sync/config/MongoConfig.kt
+4 −5 sync/src/main/kotlin/gropius/sync/model/LabelInfo.kt
+4 −5 sync/src/main/kotlin/gropius/sync/repository/LabelInfoRepository.kt
+122 −0 sync/src/main/kotlin/gropius/sync/user/UserMapper.kt
+14 −2 website/docs/docs/github.mdx
+223 −0 website/docs/docs/jira.mdx

0 comments on commit 3628399

Please sign in to comment.