Skip to content

Commit 990f8ee

Browse files
committed
add setting release publisher to the publish step
1 parent 0633d6b commit 990f8ee

File tree

9 files changed

+339
-153
lines changed

9 files changed

+339
-153
lines changed

.github/workflows/prepare-release-mongosh.yml

+12-10
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,21 @@ jobs:
2626
prepare-release:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- name: Create Github App Token
30-
uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
29+
- uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
3130
id: app-token
3231
with:
3332
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
3433
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
3534

36-
- name: Checkout
37-
uses: actions/checkout@v4
35+
- uses: actions/checkout@v4
3836
with:
39-
# NOTE: this is necessary to get the full history
40-
# and check if tags are already present
41-
fetch-depth: 0
37+
# don't checkout a detatched HEAD
38+
ref: ${{ github.head_ref }}
39+
40+
# this is important so git log can pick up on
41+
# the whole history to generate the list of AUTHORS
42+
fetch-depth: "0"
43+
token: ${{ steps.app-token.outputs.token }}
4244

4345
- name: Setup Node.js Environment
4446
uses: actions/setup-node@v4
@@ -87,15 +89,15 @@ jobs:
8789
- name: Bump mongosh and package versions
8890
shell: bash
8991
env:
90-
LAST_BUMP_COMMIT_MESSAGE: "chore(release): prepare for mongosh v${NEXT_VERSION} ${{ github.event.inputs.jiraTicket }}"
92+
MONGOSH_RELEASE_VERSION: ${{ env.NEXT_VERSION }}
9193
run: |
9294
set -e
9395
echo Bumping mongosh versions to ${NEXT_VERSION} and packages
9496
95-
MONGOSH_RELEASE_VERSION=${NEXT_VERSION} npm run bump
97+
npm run bump
9698
9799
git add .
98-
git commit --no-allow-empty -m "$LAST_BUMP_COMMIT_MESSAGE" || true
100+
git commit --no-allow-empty -m "chore(release): prepare for mongosh v${NEXT_VERSION} ${{ github.event.inputs.jiraTicket }}" || true
99101
100102
- name: Create Pull Request
101103
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # 7.0.5

.github/workflows/release-mongosh.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,22 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- name: Create Github App Token
17-
uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
16+
- uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
1817
id: app-token
1918
with:
2019
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
2120
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
22-
21+
2322
- uses: actions/checkout@v4
2423
with:
2524
# don't checkout a detatched HEAD
2625
ref: ${{ github.head_ref }}
2726

27+
# this is important so git log can pick up on
28+
# the whole history to generate the list of AUTHORS
29+
fetch-depth: "0"
30+
token: ${{ steps.app-token.outputs.token }}
31+
2832
- name: Extract version from the branch
2933
run: |
3034
set -e
@@ -51,6 +55,7 @@ jobs:
5155
- name: "Publish what is not already in NPM"
5256
env:
5357
NPM_TOKEN: ${{ secrets.DEVTOOLSBOT_NPM_TOKEN }}
58+
MONGOSH_RELEASE_PUBLISHER: ${{ github.triggering_actor }}
5459
run: |
5560
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ~/.npmrc
5661
npm config list

packages/build/src/npm-packages/bump.ts

+12-11
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {
88
import { promises as fs } from 'fs';
99
import path from 'path';
1010
import { getPackagesInTopologicalOrder } from '@mongodb-js/monorepo-tools';
11+
import { getPackageConfigurations } from './helpers';
1112

1213
/** Bumps only the main mongosh release packages to the set version. */
1314
export async function bumpMongoshReleasePackages(): Promise<void> {
@@ -17,21 +18,21 @@ export async function bumpMongoshReleasePackages(): Promise<void> {
1718
'MONGOSH_RELEASE_VERSION version not specified during mongosh bump'
1819
);
1920
}
20-
console.info(`mongosh: Bumping package versions to ${version}`);
21-
const monorepoRootPath = path.resolve(__dirname, '..', '..', '..', '..');
22-
const packages = await getPackagesInTopologicalOrder(monorepoRootPath);
23-
24-
const workspaceNames = packages
25-
.map((p) => p.name)
26-
.filter((name) => MONGOSH_RELEASE_PACKAGES.includes(name));
2721

28-
const locations = [monorepoRootPath, ...packages.map((p) => p.location)];
22+
console.info(`mongosh: Bumping package versions to ${version}`);
23+
const packages = await getPackagesInTopologicalOrder(PROJECT_ROOT);
24+
const packageConfigurations = await getPackageConfigurations(packages);
2925

30-
for (const location of locations) {
31-
const packageJsonPath = path.join(location, 'package.json');
32-
const packageJson = JSON.parse(await fs.readFile(packageJsonPath, 'utf8'));
26+
const mongoshReleasePackages = packages.filter((packageInfo) =>
27+
MONGOSH_RELEASE_PACKAGES.includes(packageInfo.name)
28+
);
29+
const workspaceNames = mongoshReleasePackages.map(
30+
(packageInfo) => packageInfo.name
31+
);
3332

33+
for (const [packageJsonPath, packageJson] of packageConfigurations) {
3434
packageJson.version = version;
35+
3536
for (const grouping of [
3637
'dependencies',
3738
'devDependencies',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
import { expect } from 'chai';
2+
import path from 'path';
3+
import type { SinonStub } from 'sinon';
4+
import sinon from 'sinon';
5+
import type { PackageInfo } from '@mongodb-js/monorepo-tools';
6+
import { getPackagesInTopologicalOrder } from '@mongodb-js/monorepo-tools';
7+
import { PROJECT_ROOT } from './constants';
8+
import { promises as fs } from 'fs';
9+
import {
10+
getPackageConfigurations,
11+
markBumpedFilesAsAssumeUnchanged,
12+
} from './helpers';
13+
14+
describe('npm-packages helpers', function () {
15+
before(function () {
16+
if (process.version.startsWith('v16.')) return this.skip();
17+
});
18+
19+
describe('markBumpedFilesAsAssumeUnchanged', function () {
20+
let packages: PackageInfo[];
21+
let expectedFiles: string[];
22+
let spawnSync: SinonStub;
23+
24+
beforeEach(async function () {
25+
expectedFiles = [
26+
path.resolve(__dirname, '..', '..', '..', '..', 'lerna.json'),
27+
path.resolve(__dirname, '..', '..', '..', '..', 'package.json'),
28+
path.resolve(__dirname, '..', '..', '..', '..', 'package-lock.json'),
29+
];
30+
packages = await getPackagesInTopologicalOrder(PROJECT_ROOT);
31+
for (const { location } of packages) {
32+
expectedFiles.push(path.resolve(location, 'package.json'));
33+
}
34+
35+
spawnSync = sinon.stub();
36+
});
37+
38+
it('marks files with --assume-unchanged', function () {
39+
markBumpedFilesAsAssumeUnchanged(packages, true, spawnSync);
40+
expectedFiles.forEach((f) => {
41+
expect(spawnSync).to.have.been.calledWith(
42+
'git',
43+
['update-index', '--assume-unchanged', f],
44+
sinon.match.any
45+
);
46+
});
47+
});
48+
49+
it('marks files with --no-assume-unchanged', function () {
50+
markBumpedFilesAsAssumeUnchanged(packages, false, spawnSync);
51+
expectedFiles.forEach((f) => {
52+
expect(spawnSync).to.have.been.calledWith(
53+
'git',
54+
['update-index', '--no-assume-unchanged', f],
55+
sinon.match.any
56+
);
57+
});
58+
});
59+
});
60+
61+
describe('getPackageConfigurations', function () {
62+
const packages: PackageInfo[] = [
63+
{
64+
name: 'package1',
65+
version: '1.0.0',
66+
location: '/packages/package1',
67+
private: false,
68+
},
69+
{
70+
name: 'package2',
71+
version: '1.0.0',
72+
location: '/packages/package2',
73+
private: false,
74+
},
75+
];
76+
let readFileStub: sinon.SinonStub;
77+
78+
beforeEach(function () {
79+
readFileStub = sinon.stub(fs, 'readFile').throws('Unexpected path');
80+
readFileStub
81+
.withArgs(path.join(packages[0].location, 'package.json'))
82+
.resolves(
83+
JSON.stringify({
84+
name: packages[0].name,
85+
version: packages[0].version,
86+
})
87+
)
88+
.withArgs(path.join(packages[1].location, 'package.json'))
89+
.resolves(
90+
JSON.stringify({
91+
name: packages[1].name,
92+
version: packages[1].version,
93+
})
94+
);
95+
});
96+
97+
afterEach(function () {
98+
sinon.restore();
99+
});
100+
101+
it('should return package configurations', async function () {
102+
const result = await getPackageConfigurations(packages);
103+
104+
expect(result).to.deep.equal([
105+
[
106+
path.join(packages[0].location, 'package.json'),
107+
{
108+
name: packages[0].name,
109+
version: packages[0].version,
110+
},
111+
],
112+
[
113+
path.join(packages[1].location, 'package.json'),
114+
{
115+
name: packages[1].name,
116+
version: packages[1].version,
117+
},
118+
],
119+
]);
120+
121+
expect(readFileStub).has.callCount(2);
122+
expect(readFileStub.firstCall.args[0]).to.equal(
123+
path.join(packages[0].location, 'package.json')
124+
);
125+
expect(readFileStub.secondCall.args[0]).to.equal(
126+
path.join(packages[1].location, 'package.json')
127+
);
128+
});
129+
});
130+
});
+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
import path from 'path';
2+
import { promises as fs } from 'fs';
3+
import type { PackageInfo } from '@mongodb-js/monorepo-tools';
4+
import { PROJECT_ROOT } from './constants';
5+
import { spawnSync as spawnSyncFn } from '../helpers/spawn-sync';
6+
7+
export async function getPackageConfigurations(
8+
packages: PackageInfo[]
9+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
10+
): Promise<[path: string, contents: Record<string, any>][]> {
11+
return Promise.all(
12+
packages.map(async (packageInfo) => {
13+
const packageJsonPath = path.join(packageInfo.location, 'package.json');
14+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
15+
const packageJsonContents: Record<string, any> = JSON.parse(
16+
await fs.readFile(packageJsonPath, 'utf8')
17+
);
18+
return [packageJsonPath, packageJsonContents];
19+
})
20+
);
21+
}
22+
23+
export function markBumpedFilesAsAssumeUnchanged(
24+
packages: PackageInfo[],
25+
assumeUnchanged: boolean,
26+
spawnSync: typeof spawnSyncFn = spawnSyncFn
27+
): void {
28+
const filesToAssume = [
29+
path.resolve(PROJECT_ROOT, 'lerna.json'),
30+
path.resolve(PROJECT_ROOT, 'package.json'),
31+
path.resolve(PROJECT_ROOT, 'package-lock.json'),
32+
];
33+
for (const { location } of packages) {
34+
filesToAssume.push(path.resolve(location, 'package.json'));
35+
}
36+
37+
for (const f of filesToAssume) {
38+
spawnSync(
39+
'git',
40+
[
41+
'update-index',
42+
assumeUnchanged ? '--assume-unchanged' : '--no-assume-unchanged',
43+
f,
44+
],
45+
{
46+
stdio: 'inherit',
47+
cwd: PROJECT_ROOT,
48+
encoding: 'utf8',
49+
},
50+
true
51+
);
52+
console.info(
53+
`File ${f} is now ${assumeUnchanged ? '' : 'NOT '}assumed to be unchanged`
54+
);
55+
}
56+
}

packages/build/src/npm-packages/list.spec.ts

-66
This file was deleted.

0 commit comments

Comments
 (0)