-
Notifications
You must be signed in to change notification settings - Fork 61
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
@aws-amplify/backend
should inherit version bump of same kind from dependencies
#2042
Changes from 15 commits
999cce0
46b78db
65c6794
4f13e93
fc70fe0
8a3a5af
083b7d4
1b07653
36a0ea5
7a6e499
d1cd124
85b8096
136dc07
19e6662
4702acf
c21e963
58f2e01
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,6 +2,108 @@ import getReleasePlan from '@changesets/get-release-plan'; | |||||||||||||||||||||||||
import { GitClient } from './components/git_client.js'; | ||||||||||||||||||||||||||
import { readPackageJson } from './components/package-json/package_json.js'; | ||||||||||||||||||||||||||
import { EOL } from 'os'; | ||||||||||||||||||||||||||
import { ReleasePlan, VersionType } from '@changesets/types'; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
enum VersionTypeEnum { | ||||||||||||||||||||||||||
'NONE' = 0, | ||||||||||||||||||||||||||
'PATCH' = 1, | ||||||||||||||||||||||||||
'MINOR' = 2, | ||||||||||||||||||||||||||
'MAJOR' = 3, | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const getModifiedPackages = (changedFiles: string[]): Set<string> => { | ||||||||||||||||||||||||||
const modifiedPackageDirs = new Set<string>(); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
changedFiles | ||||||||||||||||||||||||||
.filter( | ||||||||||||||||||||||||||
(changedFile) => | ||||||||||||||||||||||||||
changedFile.startsWith('packages/') && !changedFile.endsWith('test.ts') | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.forEach((changedPackageFile) => { | ||||||||||||||||||||||||||
modifiedPackageDirs.add( | ||||||||||||||||||||||||||
changedPackageFile.split('/').slice(0, 2).join('/') | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||
return modifiedPackageDirs; | ||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const versionTypeConverter = (version: VersionType): VersionTypeEnum => { | ||||||||||||||||||||||||||
switch (version) { | ||||||||||||||||||||||||||
case 'major': | ||||||||||||||||||||||||||
return VersionTypeEnum.MAJOR; | ||||||||||||||||||||||||||
case 'minor': | ||||||||||||||||||||||||||
return VersionTypeEnum.MINOR; | ||||||||||||||||||||||||||
case 'patch': | ||||||||||||||||||||||||||
return VersionTypeEnum.PATCH; | ||||||||||||||||||||||||||
case 'none': | ||||||||||||||||||||||||||
return VersionTypeEnum.NONE; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const findEffectiveVersion = ( | ||||||||||||||||||||||||||
releasePlan: ReleasePlan, | ||||||||||||||||||||||||||
packageName: string | ||||||||||||||||||||||||||
): VersionTypeEnum => { | ||||||||||||||||||||||||||
let effectiveVersion: VersionTypeEnum = VersionTypeEnum.NONE; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
for (const changeset of releasePlan.changesets) { | ||||||||||||||||||||||||||
for (const release of changeset.releases) { | ||||||||||||||||||||||||||
if (release.name === packageName) { | ||||||||||||||||||||||||||
const releaseVersionType = versionTypeConverter(release.type); | ||||||||||||||||||||||||||
if (releaseVersionType > effectiveVersion) { | ||||||||||||||||||||||||||
effectiveVersion = releaseVersionType; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
return effectiveVersion; | ||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const maxVersion = ( | ||||||||||||||||||||||||||
version1: VersionTypeEnum, | ||||||||||||||||||||||||||
version2: VersionTypeEnum, | ||||||||||||||||||||||||||
version3: VersionTypeEnum, | ||||||||||||||||||||||||||
version4: VersionTypeEnum | ||||||||||||||||||||||||||
) => { | ||||||||||||||||||||||||||
return Math.max(version1, version2, version3, version4); | ||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const checkBackendDependenciesVersion = (releasePlan: ReleasePlan) => { | ||||||||||||||||||||||||||
const backendVersion: VersionTypeEnum = findEffectiveVersion( | ||||||||||||||||||||||||||
releasePlan, | ||||||||||||||||||||||||||
'@aws-amplify/backend' | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
const backendAuthVersion: VersionTypeEnum = findEffectiveVersion( | ||||||||||||||||||||||||||
releasePlan, | ||||||||||||||||||||||||||
'@aws-amplify/backend-auth' | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
const backendDataVersion: VersionTypeEnum = findEffectiveVersion( | ||||||||||||||||||||||||||
releasePlan, | ||||||||||||||||||||||||||
'@aws-amplify/backend-data' | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
const backendFunctionVersion: VersionTypeEnum = findEffectiveVersion( | ||||||||||||||||||||||||||
releasePlan, | ||||||||||||||||||||||||||
'@aws-amplify/backend-function' | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
const backendStorageVersion: VersionTypeEnum = findEffectiveVersion( | ||||||||||||||||||||||||||
releasePlan, | ||||||||||||||||||||||||||
'@aws-amplify/backend-storage' | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
if ( | ||||||||||||||||||||||||||
backendVersion < | ||||||||||||||||||||||||||
maxVersion( | ||||||||||||||||||||||||||
backendAuthVersion, | ||||||||||||||||||||||||||
backendDataVersion, | ||||||||||||||||||||||||||
backendFunctionVersion, | ||||||||||||||||||||||||||
backendStorageVersion | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
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.
Suggested change
would this just work? 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. yep, the function is unnecessary |
||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||
throw new Error( | ||||||||||||||||||||||||||
`@aws-amplify/backend has a version bump of a different kind from its dependencies (@aws-amplify/backend-auth, @aws-amplify/backend-data, @aws-amplify/backend-function, and @aws-amplify/backend-storage) but is expected to have a version bump of the same kind.${EOL}` | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const gitClient = new GitClient(); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
@@ -18,18 +120,7 @@ const packagesWithChangeset = new Set( | |||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const changedFiles = await gitClient.getChangedFiles(baseRef); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const modifiedPackageDirs = new Set<string>(); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
changedFiles | ||||||||||||||||||||||||||
.filter( | ||||||||||||||||||||||||||
(changedFile) => | ||||||||||||||||||||||||||
changedFile.startsWith('packages/') && !changedFile.endsWith('test.ts') | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
.forEach((changedPackageFile) => { | ||||||||||||||||||||||||||
modifiedPackageDirs.add( | ||||||||||||||||||||||||||
changedPackageFile.split('/').slice(0, 2).join('/') | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||
const modifiedPackageDirs = getModifiedPackages(changedFiles); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const packagesMissingChangesets = []; | ||||||||||||||||||||||||||
for (const modifiedPackageDir of modifiedPackageDirs) { | ||||||||||||||||||||||||||
|
@@ -50,3 +141,5 @@ if (packagesMissingChangesets.length > 0) { | |||||||||||||||||||||||||
)}${EOL}${EOL}Add a changeset using 'npx changeset add'.` | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
checkBackendDependenciesVersion(releasePlan); |
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.
function name should be verb-ish.