Workbrew 1.4 is here.
Here’s what’s fresh in this release:
This release makes it easier to shape how software is installed across your organization, while reducing friction for everyone involved.
You can now connect your MDM to Workbrew at no cost, making it simpler to manage Workbrew across your entire fleet.
View device data, stay in sync, and cross-reference with your MDM for complete fleet-level control.
For step-by-step instructions on connecting your MDM to Workbrew and enabling zero-touch enrollment, see our handy guides for all major MDMs.
MDM Connections are now available on all plans.
You can now manage fleet-wide package updates through GitHub in a way that fits your team’s workflow.
Instead of one central gatekeeper, you can choose the level of control that works for you: self-serve installation, peer review, manager review, multi-layer approval, or fully centralized review. Using familiar GitHub pull requests, developers propose changes to your Brewfile, get the right level of review, and merge when ready. Workbrew then syncs those changes automatically.
This approach combines visibility, history, and collaboration. Every change is tracked in Git, one person’s improvements benefit the whole team, and newcomers automatically get the same setup as everyone else.
Powered by our new GitHub Action, this keeps your Brewfiles in sync with the Workbrew Console and reduces manual updates while making package management part of your normal developer workflow.
Need help setting it up? Contact us.
For Admins:
For Your Team:
GitHub-based Default Package Management is now available on Pro and Enterprise plans.
You can now see package details even for tools that aren’t installed on your fleet. The Console now shows dependencies and dependents on package detail pages, so you can understand how packages relate before making changes.
This means you can quickly spot when removing or forbidding a package might affect others, even if you’ve never installed it in your environment.
For Admins:
For Teams:
Package dependency insights are now available on all plans.
User notification emails now support fine-grained alerts.
Set rules for which notification types you are most interested in and be updated when there is a change.
For example, you might only want to know:
…without having to follow all other notification types. Stay informed without the noise.
For Admins:
And coming soon!
Custom Alert Subscriptions for user notification emails are now available on Pro and Enterprise plans.
Warnings and errors are now separated from general command output, so issues are easier to scan and debug.
The Brew Commands list now shows run status at a glance. Quickly identify failed executions and dive into logs for more detail.
Run results can be exported manually or accessed via the API. Export for dashboards, audits, or that one spreadsheet-loving stakeholder.
Brew Run Improvements are now available on Pro and Enterprise plans.
You can now restrict sign-ins to specific email domains from your workspace settings. This helps ensure only people from your organization can join, reducing the risk of unauthorised access and keeping your workspace membership clean.
Gain simple but effective control without the complexity of full SSO.
For Admins:
Allowed Domains are now available on Pro and Enterprise plans.
Want help making use of any of these features, or need advice on structuring your workspace? Reach out to us. We’re always happy to help.
#!/bin/bash
# Check for Homebrew in supported installation paths.
if [[ -x "/opt/homebrew/bin/brew" ]] ||
[[ -x "/usr/local/bin/brew" ]] ||
[[ -x "/home/linuxbrew/.linuxbrew/bin/brew" ]]
then
echo "Homebrew is installed."
exit 0
else
echo "Homebrew is not installed."
exit 1
fi
Workbrew 1.4 is here.
Here’s what’s fresh in this release:
This release makes it easier to shape how software is installed across your organization, while reducing friction for everyone involved.
You can now connect your MDM to Workbrew at no cost, making it simpler to manage Workbrew across your entire fleet.
View device data, stay in sync, and cross-reference with your MDM for complete fleet-level control.
For step-by-step instructions on connecting your MDM to Workbrew and enabling zero-touch enrollment, see our handy guides for all major MDMs.
MDM Connections are now available on all plans.
You can now manage fleet-wide package updates through GitHub in a way that fits your team’s workflow.
Instead of one central gatekeeper, you can choose the level of control that works for you: self-serve installation, peer review, manager review, multi-layer approval, or fully centralized review. Using familiar GitHub pull requests, developers propose changes to your Brewfile, get the right level of review, and merge when ready. Workbrew then syncs those changes automatically.
This approach combines visibility, history, and collaboration. Every change is tracked in Git, one person’s improvements benefit the whole team, and newcomers automatically get the same setup as everyone else.
Powered by our new GitHub Action, this keeps your Brewfiles in sync with the Workbrew Console and reduces manual updates while making package management part of your normal developer workflow.
Need help setting it up? Contact us.
For Admins:
For Your Team:
GitHub-based Default Package Management is now available on Pro and Enterprise plans.
You can now see package details even for tools that aren’t installed on your fleet. The Console now shows dependencies and dependents on package detail pages, so you can understand how packages relate before making changes.
This means you can quickly spot when removing or forbidding a package might affect others, even if you’ve never installed it in your environment.
For Admins:
For Teams:
Package dependency insights are now available on all plans.
User notification emails now support fine-grained alerts.
Set rules for which notification types you are most interested in and be updated when there is a change.
For example, you might only want to know:
…without having to follow all other notification types. Stay informed without the noise.
For Admins:
And coming soon!
Custom Alert Subscriptions for user notification emails are now available on Pro and Enterprise plans.
Warnings and errors are now separated from general command output, so issues are easier to scan and debug.
The Brew Commands list now shows run status at a glance. Quickly identify failed executions and dive into logs for more detail.
Run results can be exported manually or accessed via the API. Export for dashboards, audits, or that one spreadsheet-loving stakeholder.
Brew Run Improvements are now available on Pro and Enterprise plans.
You can now restrict sign-ins to specific email domains from your workspace settings. This helps ensure only people from your organization can join, reducing the risk of unauthorised access and keeping your workspace membership clean.
Gain simple but effective control without the complexity of full SSO.
For Admins:
Allowed Domains are now available on Pro and Enterprise plans.
Want help making use of any of these features, or need advice on structuring your workspace? Reach out to us. We’re always happy to help.
3. IT Admins have questions. We weren’t sure what to expect, but so many folks had specific implementation queries. Others were curious about what Workbrew is up to. It was a non-stop flow of awesome conversations, and we ran out of Homebrew Cheat Sheets and Implementation Guides.
4. MacAd.UK has great bean bag chairs – the Chill-Out Zone was a super comfortable place to talk about CVEs.
5. The wonderful MacAdmins Foundation offers grants for folks who want to attend but aren’t in a position to fund the trip. For those looking to attend MacAdmins PSU, their applications are open.
A big thank you to the MacAD.UK team and we’re excited to be back next year.
If you missed it, check out Brandon’s talk on Balancing the Needs of IT, Security, & Engineering Teams at Scale
3. IT Admins have questions. We weren’t sure what to expect, but so many folks had specific implementation queries. Others were curious about what Workbrew is up to. It was a non-stop flow of awesome conversations, and we ran out of Homebrew Cheat Sheets and Implementation Guides.
4. MacAD.UK has great bean bag chairs – the Chill-Out Zone was a super comfortable place to talk about CVEs.
5. The wonderful MacAdmins Foundation offers grants for folks who want to attend but aren’t in a position to fund the trip. For those looking to attend MacAdmins PSU, their applications are open.
A big thank you to the MacAD.UK team and we’re excited to be back next year.
If you missed it, check out my talk on Balancing the Needs of IT, Security, & Engineering Teams at Scale
#!/bin/bash
# Check for Homebrew in supported installation paths.
if [[ -x "/opt/homebrew/bin/brew" ]] ||
[[ -x "/usr/local/bin/brew" ]] ||
[[ -x "/home/linuxbrew/.linuxbrew/bin/brew" ]]
then
echo "Homebrew is installed."
exit 0
else
echo "Homebrew is not installed."
exit 1
fi
Workbrew 1.4 is here.
Here’s what’s fresh in this release:
This release makes it easier to shape how software is installed across your organization, while reducing friction for everyone involved.
You can now connect your MDM to Workbrew at no cost, making it simpler to manage Workbrew across your entire fleet.
View device data, stay in sync, and cross-reference with your MDM for complete fleet-level control.
For step-by-step instructions on connecting your MDM to Workbrew and enabling zero-touch enrollment, see our handy guides for all major MDMs.
MDM Connections are now available on all plans.
You can now manage fleet-wide package updates through GitHub in a way that fits your team’s workflow.
Instead of one central gatekeeper, you can choose the level of control that works for you: self-serve installation, peer review, manager review, multi-layer approval, or fully centralized review. Using familiar GitHub pull requests, developers propose changes to your Brewfile, get the right level of review, and merge when ready. Workbrew then syncs those changes automatically.
This approach combines visibility, history, and collaboration. Every change is tracked in Git, one person’s improvements benefit the whole team, and newcomers automatically get the same setup as everyone else.
Powered by our new GitHub Action, this keeps your Brewfiles in sync with the Workbrew Console and reduces manual updates while making package management part of your normal developer workflow.
Need help setting it up? Contact us.
For Admins:
For Your Team:
GitHub-based Default Package Management is now available on Pro and Enterprise plans.
You can now see package details even for tools that aren’t installed on your fleet. The Console now shows dependencies and dependents on package detail pages, so you can understand how packages relate before making changes.
This means you can quickly spot when removing or forbidding a package might affect others, even if you’ve never installed it in your environment.
For Admins:
For Teams:
Package dependency insights are now available on all plans.
User notification emails now support fine-grained alerts.
Set rules for which notification types you are most interested in and be updated when there is a change.
For example, you might only want to know:
…without having to follow all other notification types. Stay informed without the noise.
For Admins:
And coming soon!
Custom Alert Subscriptions for user notification emails are now available on Pro and Enterprise plans.
Warnings and errors are now separated from general command output, so issues are easier to scan and debug.
The Brew Commands list now shows run status at a glance. Quickly identify failed executions and dive into logs for more detail.
Run results can be exported manually or accessed via the API. Export for dashboards, audits, or that one spreadsheet-loving stakeholder.
Brew Run Improvements are now available on Pro and Enterprise plans.
You can now restrict sign-ins to specific email domains from your workspace settings. This helps ensure only people from your organization can join, reducing the risk of unauthorised access and keeping your workspace membership clean.
Gain simple but effective control without the complexity of full SSO.
For Admins:
Allowed Domains are now available on Pro and Enterprise plans.
Want help making use of any of these features, or need advice on structuring your workspace? Reach out to us. We’re always happy to help.
3. IT Admins have questions. We weren’t sure what to expect, but so many folks had specific implementation queries. Others were curious about what Workbrew is up to. It was a non-stop flow of awesome conversations, and we ran out of Homebrew Cheat Sheets and Implementation Guides.
4. MacAd.UK has great bean bag chairs – the Chill-Out Zone was a super comfortable place to talk about CVEs.
5. The wonderful MacAdmins Foundation offers grants for folks who want to attend but aren’t in a position to fund the trip. For those looking to attend MacAdmins PSU, their applications are open.
A big thank you to the MacAD.UK team and we’re excited to be back next year.
If you missed it, check out Brandon’s talk on Balancing the Needs of IT, Security, & Engineering Teams at Scale
3. IT Admins have questions. We weren’t sure what to expect, but so many folks had specific implementation queries. Others were curious about what Workbrew is up to. It was a non-stop flow of awesome conversations, and we ran out of Homebrew Cheat Sheets and Implementation Guides.
4. MacAD.UK has great bean bag chairs – the Chill-Out Zone was a super comfortable place to talk about CVEs.
5. The wonderful MacAdmins Foundation offers grants for folks who want to attend but aren’t in a position to fund the trip. For those looking to attend MacAdmins PSU, their applications are open.
A big thank you to the MacAD.UK team and we’re excited to be back next year.
If you missed it, check out my talk on Balancing the Needs of IT, Security, & Engineering Teams at Scale
Workbrew 1.4 is here.
Here’s what’s fresh in this release:
This release makes it easier to shape how software is installed across your organization, while reducing friction for everyone involved.
You can now connect your MDM to Workbrew at no cost, making it simpler to manage Workbrew across your entire fleet.
View device data, stay in sync, and cross-reference with your MDM for complete fleet-level control.
For step-by-step instructions on connecting your MDM to Workbrew and enabling zero-touch enrollment, see our handy guides for all major MDMs.
MDM Connections are now available on all plans.
You can now manage fleet-wide package updates through GitHub in a way that fits your team’s workflow.
Instead of one central gatekeeper, you can choose the level of control that works for you: self-serve installation, peer review, manager review, multi-layer approval, or fully centralized review. Using familiar GitHub pull requests, developers propose changes to your Brewfile, get the right level of review, and merge when ready. Workbrew then syncs those changes automatically.
This approach combines visibility, history, and collaboration. Every change is tracked in Git, one person’s improvements benefit the whole team, and newcomers automatically get the same setup as everyone else.
Powered by our new GitHub Action, this keeps your Brewfiles in sync with the Workbrew Console and reduces manual updates while making package management part of your normal developer workflow.
Need help setting it up? Contact us.
For Admins:
For Your Team:
GitHub-based Default Package Management is now available on Pro and Enterprise plans.
You can now see package details even for tools that aren’t installed on your fleet. The Console now shows dependencies and dependents on package detail pages, so you can understand how packages relate before making changes.
This means you can quickly spot when removing or forbidding a package might affect others, even if you’ve never installed it in your environment.
For Admins:
For Teams:
Package dependency insights are now available on all plans.
User notification emails now support fine-grained alerts.
Set rules for which notification types you are most interested in and be updated when there is a change.
For example, you might only want to know:
…without having to follow all other notification types. Stay informed without the noise.
For Admins:
And coming soon!
Custom Alert Subscriptions for user notification emails are now available on Pro and Enterprise plans.
Warnings and errors are now separated from general command output, so issues are easier to scan and debug.
The Brew Commands list now shows run status at a glance. Quickly identify failed executions and dive into logs for more detail.
Run results can be exported manually or accessed via the API. Export for dashboards, audits, or that one spreadsheet-loving stakeholder.
Brew Run Improvements are now available on Pro and Enterprise plans.
You can now restrict sign-ins to specific email domains from your workspace settings. This helps ensure only people from your organization can join, reducing the risk of unauthorised access and keeping your workspace membership clean.
Gain simple but effective control without the complexity of full SSO.
For Admins:
Allowed Domains are now available on Pro and Enterprise plans.
Want help making use of any of these features, or need advice on structuring your workspace? Reach out to us. We’re always happy to help.
3. IT Admins have questions. We weren’t sure what to expect, but so many folks had specific implementation queries. Others were curious about what Workbrew is up to. It was a non-stop flow of awesome conversations, and we ran out of Homebrew Cheat Sheets and Implementation Guides.
4. MacAd.UK has great bean bag chairs – the Chill-Out Zone was a super comfortable place to talk about CVEs.
5. The wonderful MacAdmins Foundation offers grants for folks who want to attend but aren’t in a position to fund the trip. For those looking to attend MacAdmins PSU, their applications are open.
A big thank you to the MacAD.UK team and we’re excited to be back next year.
If you missed it, check out Brandon’s talk on Balancing the Needs of IT, Security, & Engineering Teams at Scale
3. IT Admins have questions. We weren’t sure what to expect, but so many folks had specific implementation queries. Others were curious about what Workbrew is up to. It was a non-stop flow of awesome conversations, and we ran out of Homebrew Cheat Sheets and Implementation Guides.
4. MacAD.UK has great bean bag chairs – the Chill-Out Zone was a super comfortable place to talk about CVEs.
5. The wonderful MacAdmins Foundation offers grants for folks who want to attend but aren’t in a position to fund the trip. For those looking to attend MacAdmins PSU, their applications are open.
A big thank you to the MacAD.UK team and we’re excited to be back next year.
If you missed it, check out my talk on Balancing the Needs of IT, Security, & Engineering Teams at Scale