Skip to content

Commit 4d671e6

Browse files
authored
fleetd-chrome v1.3.1 release (#19087)
#18811 * Fixed bug where fleetd-chrome sent multiple read requests to Fleet server at the same time. * Improved console log output messages when Fleet server is down.
1 parent 31f8c7e commit 4d671e6

10 files changed

+32
-17
lines changed

.github/workflows/release-fleetd-chrome-beta.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,19 @@ jobs:
3737
run: |
3838
npm install && npm run test
3939
40+
- name: Set the version
41+
working-directory: ./ee/fleetd-chrome
42+
run: |
43+
echo "FLEETD_CHROME_VERSION=$(npm pkg get version --workspaces=false | tr -d \")" >> $GITHUB_ENV
44+
4045
- name: Build & sign extension
4146
working-directory: ./ee/fleetd-chrome
4247
env:
4348
CHROME_SIGNING_KEY: ${{ secrets.FLEETD_CHROME_SIGNING_KEY_BETA }}
4449
run: |
4550
echo -e 'FLEET_URL=""\nFLEET_ENROLL_SECRET=""' > .env
46-
npm install && npm run build
51+
npm run build
52+
sed -i "s/FLEETD_CHROME_VERSION/${{ env.FLEETD_CHROME_VERSION }}/g" updates-beta.xml
4753
echo "$CHROME_SIGNING_KEY" > chrome.pem
4854
/usr/bin/google-chrome --pack-extension=./dist --pack-extension-key=chrome.pem
4955

.github/workflows/release-fleetd-chrome.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,19 @@ jobs:
3838
run: |
3939
npm install && npm run test
4040
41+
- name: Set the version
42+
working-directory: ./ee/fleetd-chrome
43+
run: |
44+
echo "FLEETD_CHROME_VERSION=$(npm pkg get version --workspaces=false | tr -d \")" >> $GITHUB_ENV
45+
4146
- name: Build & sign extension
4247
working-directory: ./ee/fleetd-chrome
4348
env:
4449
CHROME_SIGNING_KEY: ${{ secrets.FLEETD_CHROME_SIGNING_KEY }}
4550
run: |
4651
echo -e 'FLEET_URL=""\nFLEET_ENROLL_SECRET=""' > .env
47-
npm install && npm run build
52+
npm run build
53+
sed -i "s/FLEETD_CHROME_VERSION/${{ env.FLEETD_CHROME_VERSION }}/g" updates.xml
4854
echo "$CHROME_SIGNING_KEY" > chrome.pem
4955
/usr/bin/google-chrome --pack-extension=./dist --pack-extension-key=chrome.pem
5056

ee/fleetd-chrome/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## fleetd-chrome 1.3.1 (May 20, 2024)
2+
3+
* Fixed bug where fleetd-chrome sent multiple read requests to Fleet server at the same time.
4+
5+
* Improved console log output messages when Fleet server is down.
6+
17
## fleetd-chrome 1.3.0 (Apr 29, 2024)
28

39
* Created a fix to recover after a rare RuntimeError coming from sqlite web assembly code by reinitializing the DB.

ee/fleetd-chrome/README.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,17 @@ npm run test
6767

6868
## Release
6969

70-
1. Update CHANGELOG.md by running `version="X.X.X" make changelog-chrome`
70+
1. At the top of the repo, update CHANGELOG.md by running `version="X.X.X" make changelog-chrome`
7171
2. Review CHANGELOG.md
72-
3. Run `npm version X.X.X` to update the version in `package.json` and `package-lock.json`
73-
4. Update [updates.xml](./updates.xml) and [updates-beta.xml](./updates-beta.xml) versions.
74-
5. Commit the changes and tag the commit with `fleetd-chrome-vX.X.X-beta`. This will trigger the beta release workflow.
75-
6. Once the beta release is tested and PR merged, tag the commit with `fleetd-chrome-vX.X.X`. This will trigger the release workflow.
76-
7. Announce the release in the #help-engineering channel in Slack.
72+
3. At `ee/fleetd-chrome`, run `npm version X.X.X` to update the version in `package.json` and `package-lock.json`
73+
4. Commit the changes and tag the commit with `fleetd-chrome-vX.X.X-beta`. This will trigger the beta release workflow.
74+
5. Once the beta release is tested and PR merged, tag the commit with `fleetd-chrome-vX.X.X`. This will trigger the release workflow.
75+
6. Announce the release in the #help-engineering channel in Slack.
7776

78-
Release a new version via GitHub automation. Update the [package.json](./package.json) and [updates.xml](./updates.xml) versions, then tag a commit with `fleetd-chrome-vX.X.X` to kick off the build and deploy. The build is automatically uploaded to R2 and properly configured clients should be able to update immediately when the job completes. Note that automatic updates seem to only happen about once a day in Chrome -- Hit the "Update" button in `chrome://extensions` to trigger the update manually.
77+
Using GitHub Actions, the build is automatically uploaded to R2 and properly configured clients should be able to update immediately when the job completes. Note that automatic updates seem to only happen about once a day in Chrome -- Hit the "Update" button in `chrome://extensions` to trigger the update manually.
7978

8079
### Beta releases
8180

8281
Beta releases are pushed to `https://chrome-beta.fleetdm.com/updates.xml` with the extension ID `bfleegjcoffelppfmadimianphbcdjkb`.
8382

84-
Kick off a beta release by updating the [package.json](./package.json) and [updates-beta.xml](./updates-beta.xml) versions, then tag a commit with `fleetd-chrome-vX.X.X-beta` to kick off the build and deploy.
83+
Kick off a beta release by updating the [package.json](./package.json), then tag a commit with `fleetd-chrome-vX.X.X-beta` to kick off the build and deploy.

ee/fleetd-chrome/changes/18775-2-main-threads

-1
This file was deleted.

ee/fleetd-chrome/changes/18940-error-when-server-down

-1
This file was deleted.

ee/fleetd-chrome/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ee/fleetd-chrome/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fleetd-for-chrome",
33
"description": "Extension for Fleetd on ChromeOS",
4-
"version": "1.3.0",
4+
"version": "1.3.1",
55
"dependencies": {
66
"async-mutex": "^0.5.0",
77
"dotenv": "^16.0.3",

ee/fleetd-chrome/updates-beta.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version='1.0' encoding='UTF-8'?>
22
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
33
<app appid='bfleegjcoffelppfmadimianphbcdjkb'>
4-
<updatecheck codebase='https://chrome-beta.fleetdm.com/fleetd.crx' version='1.3.0' />
4+
<updatecheck codebase='https://chrome-beta.fleetdm.com/fleetd.crx' version='FLEETD_CHROME_VERSION' />
55
</app>
66
</gupdate>

ee/fleetd-chrome/updates.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version='1.0' encoding='UTF-8'?>
22
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
33
<app appid='fleeedmmihkfkeemmipgmhhjemlljidg'>
4-
<updatecheck codebase='https://chrome.fleetdm.com/fleetd.crx' version='1.3.0' />
4+
<updatecheck codebase='https://chrome.fleetdm.com/fleetd.crx' version='FLEETD_CHROME_VERSION' />
55
</app>
66
</gupdate>

0 commit comments

Comments
 (0)