Skip to content

Rename iMazing Profile Editor to iMazing in the FMA library#43555

Merged
allenhouchins merged 1 commit intomainfrom
allenhouchins-fix-imazing
Apr 14, 2026
Merged

Rename iMazing Profile Editor to iMazing in the FMA library#43555
allenhouchins merged 1 commit intomainfrom
allenhouchins-fix-imazing

Conversation

@allenhouchins
Copy link
Copy Markdown
Member

@allenhouchins allenhouchins commented Apr 14, 2026

Replace the fleet-maintained app record for "iMazing Profile Editor" with the full "iMazing" app. Deleted the old input file and added a new input for imazing; renamed output paths and updated app metadata (bundle identifier, slug, categories). Bumped version to 3.5.2 and updated installer URL, install/uninstall script refs and SHA256. Updated frontend icon mapping and website routes to point to the new imazing slug, and adjusted fleet configs: workstation software slug, dynamic label query, and macOS patch policy to reference imazing/darwin and the new bundle identifier.

Summary by CodeRabbit

  • New Features

    • iMazing application (v3.5.2) now replaces iMazing Profile Editor with improved capabilities and enhanced functionality.
    • Application category updated from Developer tools to Utilities for better organization and discoverability.
  • Updates

    • Updated deployment configurations, system routes, and management policies to support iMazing across all managed environments and platforms.

Replace the fleet-maintained app record for "iMazing Profile Editor" with the full "iMazing" app. Deleted the old input file and added a new input for imazing; renamed output paths and updated app metadata (bundle identifier, slug, categories). Bumped version to 3.5.2 and updated installer URL, install/uninstall script refs and SHA256. Updated frontend icon mapping and website routes to point to the new imazing slug, and adjusted fleet configs: workstation software slug, dynamic label query, and macOS patch policy to reference imazing/darwin and the new bundle identifier.
@github-actions
Copy link
Copy Markdown
Contributor

Script Diff Results

ee/maintained-apps/inputs/homebrew/imazing-profile-editor.json

Error: File 'ee/maintained-apps/inputs/homebrew/imazing-profile-editor.json' does not exist

ee/maintained-apps/outputs/imazing/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

@codecov
Copy link
Copy Markdown

codecov Bot commented Apr 14, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 66.90%. Comparing base (10a7476) to head (33ac34f).
⚠️ Report is 15 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main   #43555   +/-   ##
=======================================
  Coverage   66.90%   66.90%           
=======================================
  Files        2600     2600           
  Lines      208391   208391           
  Branches     9296     9297    +1     
=======================================
  Hits       139428   139428           
  Misses      56276    56276           
  Partials    12687    12687           
Flag Coverage Δ
frontend 54.75% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@allenhouchins allenhouchins marked this pull request as ready for review April 14, 2026 18:51
@allenhouchins allenhouchins requested a review from a team as a code owner April 14, 2026 18:51
Copilot AI review requested due to automatic review settings April 14, 2026 18:51
@fleet-release fleet-release requested a review from eashaw April 14, 2026 18:51
Copy link
Copy Markdown

@claude claude Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Claude Code Review

This repository is configured for manual code reviews. Comment @claude review to trigger a review and subscribe this PR to future pushes, or @claude review once for a one-time review.

Tip: disable this comment in your organization's Code Review settings.

@allenhouchins
Copy link
Copy Markdown
Member Author

allenhouchins commented Apr 14, 2026

@eashaw just a small edit to routes.js so no links break due to the FMA name changing.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR replaces the fleet-maintained “iMazing Profile Editor” app record with the full “iMazing” app across maintained-app metadata, website routes, frontend icon mapping, and Fleet configuration references.

Changes:

  • Introduces a new maintained-app input/output for imazing/darwin and updates apps.json metadata (name, slug, bundle identifier, version, URL, scripts, SHA).
  • Updates Fleet configs (workstation software slug, dynamic label query, and macOS patch policy) to reference the new slug/bundle identifier.
  • Updates website and frontend routing/icon mapping to support the new imazing software-catalog slug (including redirect from the old slug).

Reviewed changes

Copilot reviewed 6 out of 9 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
website/config/routes.js Adds software-catalog redirects for imazing and redirects legacy imazing-profile-editor to the new page.
it-and-security/lib/macos/policies/patch-fleet-maintained-apps.yml Renames the patch policy and updates it to target imazing/darwin and the new label.
it-and-security/lib/all/labels/macs-with-fleet-maintained-apps-installed.yml Updates the dynamic label to match iMazing’s new bundle identifier.
it-and-security/fleets/workstations.yml Switches the self-service app slug to imazing/darwin.
frontend/pages/SoftwarePage/components/icons/index.ts Updates the icon mapping key to imazing.
ee/maintained-apps/outputs/imazing/darwin.json Updates iMazing versioning, detection queries, installer URL, install/uninstall scripts, and checksum.
ee/maintained-apps/outputs/apps.json Replaces the app listing from “iMazing Profile Editor” to “iMazing” with the new slug and bundle identifier.
ee/maintained-apps/inputs/homebrew/imazing.json Adds the new maintained-app input definition for iMazing.
ee/maintained-apps/inputs/homebrew/imazing-profile-editor.json Removes the old maintained-app input definition for iMazing Profile Editor.
Comments suppressed due to low confidence (1)

ee/maintained-apps/outputs/imazing/darwin.json:19

  • The uninstall script is attempting to quit bundle identifiers that include the version string (e.g., com.DigiDNA.iMazing3.5.2.24017Mac / .Mini). This is inconsistent with the app metadata (unique_identifier is com.DigiDNA.iMazing3Mac) and the install script (which quits com.DigiDNA.iMazing3Mac). Using versioned bundle IDs will likely fail to quit the running app, leaving it open during uninstall. Update the uninstall script to quit the stable bundle identifiers used elsewhere (and, if needed, the corresponding .Mini bundle id).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread it-and-security/fleets/workstations.yml
@allenhouchins allenhouchins changed the title Rename iMazing Profile Editor to iMazing Rename iMazing Profile Editor to iMazing in the FMA library Apr 14, 2026
@fleet-release fleet-release requested a review from eashaw April 14, 2026 18:59
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 14, 2026

Walkthrough

This change replaces the iMazing Profile Editor app definition with a new iMazing app definition across the codebase. The maintained app version is updated from 2.2.0 to 3.5.2 with a new bundle identifier (com.DigiDNA.iMazing3Mac). The app category changes from Developer tools to Utilities. All references to the previous app are updated in fleet configurations, policy definitions, label definitions, icon mappings, and website routes. Installation and uninstall scripts are modified to target the new app.

Possibly related PRs

  • PR 43473: Updates fleet-managed iMazing app entries across workstations.yml, macOS labels, and patch policies that are subsequently renamed and updated in this PR.
  • PR 43380: Modifies iMazing maintained-app metadata and version information in the same apps.json and darwin.json files being migrated in this change.
🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description provides a comprehensive overview of changes made, but the required checklist items are entirely missing or unchecked. Complete the checklist by checking relevant boxes (e.g., changes files, testing, validation) or explicitly indicate which items do not apply to this PR.
✅ Passed checks (2 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Title check ✅ Passed The PR title accurately describes the main change: replacing the iMazing Profile Editor app entry with the full iMazing app and updating all related references throughout the codebase.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch allenhouchins-fix-imazing

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (2)
it-and-security/fleets/workstations.yml (1)

317-320: Category mismatch with the new iMazing app definition.

The slug has been correctly updated to imazing/darwin. However, the category remains "Developer tools" while the new iMazing app definition in ee/maintained-apps/inputs/homebrew/imazing.json specifies "default_categories": ["Utilities"].

iMazing is an iPhone management application (not a profile editor), so "Utilities" would be more accurate. If "Developer tools" is an intentional override for this fleet, please confirm.

💡 Suggested category alignment
     - slug: imazing/darwin # iMazing for macOS
       self_service: true
       categories:
-        - Developer tools
+        - Utilities
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@it-and-security/fleets/workstations.yml` around lines 317 - 320, The
categories for the imazing entry (slug: imazing/darwin) in workstations.yml are
inconsistent with the maintained app definition; update the categories array for
the imazing/darwin entry to ["Utilities"] to match
ee/maintained-apps/inputs/homebrew/imazing.json (or explicitly confirm and
document if you intend to keep the "Developer tools" override).
ee/maintained-apps/outputs/imazing/darwin.json (1)

19-20: Uninstall script uses version-specific bundle ID inconsistent with detection and install scripts.

The uninstall script (ref 0afea46a) calls quit_application 'com.DigiDNA.iMazing3.5.2.24017Mac', while the detection queries and install script both use the generic com.DigiDNA.iMazing3Mac. If a user has a different iMazing version installed, the uninstall script will fail to quit the application since the running app likely reports the generic bundle ID.

Use com.DigiDNA.iMazing3Mac in the uninstall script to match the detection and install logic.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@ee/maintained-apps/outputs/imazing/darwin.json` around lines 19 - 20, The
uninstall script uses version-specific bundle IDs in calls to quit_application
(e.g., 'com.DigiDNA.iMazing3.5.2.24017Mac' and its .Mini variant) which prevents
quitting the app if a different version is installed; change those calls to the
generic bundle ID used by detection/install ('com.DigiDNA.iMazing3Mac' and
'com.DigiDNA.iMazing3Mac.Mini') so quit_application matches
quit_and_track_application and relaunch_application logic and will correctly
detect and quit the running app.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@ee/maintained-apps/outputs/imazing/darwin.json`:
- Around line 19-20: The uninstall script uses version-specific bundle IDs in
calls to quit_application (e.g., 'com.DigiDNA.iMazing3.5.2.24017Mac' and its
.Mini variant) which prevents quitting the app if a different version is
installed; change those calls to the generic bundle ID used by detection/install
('com.DigiDNA.iMazing3Mac' and 'com.DigiDNA.iMazing3Mac.Mini') so
quit_application matches quit_and_track_application and relaunch_application
logic and will correctly detect and quit the running app.

In `@it-and-security/fleets/workstations.yml`:
- Around line 317-320: The categories for the imazing entry (slug:
imazing/darwin) in workstations.yml are inconsistent with the maintained app
definition; update the categories array for the imazing/darwin entry to
["Utilities"] to match ee/maintained-apps/inputs/homebrew/imazing.json (or
explicitly confirm and document if you intend to keep the "Developer tools"
override).

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: f4bdf82f-4075-430c-ab27-7298057a8597

📥 Commits

Reviewing files that changed from the base of the PR and between 10a7476 and 33ac34f.

📒 Files selected for processing (9)
  • ee/maintained-apps/inputs/homebrew/imazing-profile-editor.json
  • ee/maintained-apps/inputs/homebrew/imazing.json
  • ee/maintained-apps/outputs/apps.json
  • ee/maintained-apps/outputs/imazing/darwin.json
  • frontend/pages/SoftwarePage/components/icons/index.ts
  • it-and-security/fleets/workstations.yml
  • it-and-security/lib/all/labels/macs-with-fleet-maintained-apps-installed.yml
  • it-and-security/lib/macos/policies/patch-fleet-maintained-apps.yml
  • website/config/routes.js
💤 Files with no reviewable changes (1)
  • ee/maintained-apps/inputs/homebrew/imazing-profile-editor.json

@allenhouchins allenhouchins merged commit 86b5eaf into main Apr 14, 2026
28 of 29 checks passed
@allenhouchins allenhouchins deleted the allenhouchins-fix-imazing branch April 14, 2026 19:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants