Skip to content
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

Upgrade transitive dependencies #300

Merged
merged 2 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ packageExtensions:
mongoose-id-validator@*:
peerDependencies:
mongoose: "*"
tss-react@*:
peerDependencies:
"@mui/material": "*"

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
Expand Down
4 changes: 2 additions & 2 deletions packages/apollo-collaboration-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@gmod/gff": "^1.2.0",
"@gmod/gff": "1.2.0",
"@gmod/indexedfasta": "^2.0.4",
"@jbrowse/core": "^2.7.0",
"@mui/base": "^5.0.0-alpha.118",
Expand Down Expand Up @@ -57,7 +57,7 @@
"mobx-state-tree": "^5.1.7",
"mongoose": "^6.12.0",
"mongoose-id-validator": "^0.6.0",
"multer": "^1.4.4",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.7",
"passport": "^0.5.0",
"passport-google-oauth20": "^2.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,8 @@ export class ChangesService {
async create(change: BaseChange, user: DecodedJWT) {
this.logger.debug(`Requested change: ${JSON.stringify(change)}`)

const sequence = await this.countersService.getNextSequenceValue(
'changeCounter',
)
const sequence =
await this.countersService.getNextSequenceValue('changeCounter')
const uniqUserId = `${user.email}-${sequence}` // Same user can upload data from more than one client

const validationResult = await validationRegistry.backendPreValidate(change)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,8 @@ export class FeaturesController {
this.logger.debug(
`Get features count by ${JSON.stringify(featureCountRequest)}`,
)
const count = await this.featuresService.getFeatureCount(
featureCountRequest,
)
const count =
await this.featuresService.getFeatureCount(featureCountRequest)
return { count }
}

Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"build": "tsc"
},
"dependencies": {
"@gmod/gff": "^1.2.0",
"@gmod/gff": "1.2.0",
"@jbrowse/core": "^2.7.0",
"apollo-schemas": "workspace:^",
"bson-objectid": "^2.0.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"clean": "rimraf dist"
},
"dependencies": {
"@gmod/gff": "^1.2.0",
"@gmod/gff": "1.2.0",
"@gmod/indexedfasta": "^2.0.4",
"@jbrowse/core": "^2.7.0",
"apollo-common": "workspace:^",
Expand Down
4 changes: 2 additions & 2 deletions packages/jbrowse-plugin-apollo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@gmod/gff": "^1.2.0",
"@gmod/gff": "1.2.0",
"@jbrowse/plugin-authentication": "^2.0.1",
"@jbrowse/plugin-linear-genome-view": "^2.0.1",
"@mui/icons-material": "^5.8.4",
Expand Down Expand Up @@ -99,7 +99,7 @@
"@types/prop-types": "^15",
"@types/react": "^17.0.34",
"@types/react-dom": "^18",
"cypress": "^12.17.2",
"cypress": "12.17.3",
"cypress-mongodb": "^6.2.0",
"fake-indexeddb": "^4.0.2",
"jest": "^29.6.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -561,9 +561,8 @@ const stateModelFactory = (
let authTypePromise: Promise<AuthType> | undefined
return {
async getPreAuthorizationInformation(location: UriLocation) {
const preAuthInfo = await superGetPreAuthorizationInformation(
location,
)
const preAuthInfo =
await superGetPreAuthorizationInformation(location)
return {
...preAuthInfo,
authInfo: {
Expand Down
Loading