-
Notifications
You must be signed in to change notification settings - Fork 1k
Update Fleet-maintained apps #52160
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
Closed
Closed
Update Fleet-maintained apps #52160
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
🔎 Supported by static analysis
🏁 Script executed:
Repository: fleetdm/fleet
Length of output: 9685
🏁 Script executed:
Repository: fleetdm/fleet
Length of output: 19800
🌐 Web query:
macOS com.apple.LSSharedFileList.ApplicationRecentDocuments filename bundle identifier case sfl💡 Result:
In macOS, the directory ~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/ contains files that store the "Recent Documents" lists for individual applications [1][2][3]. Key technical details regarding these files include: 1. File Format and Naming: - These files use the.sfl2 extension (formerly.sfl in older versions of macOS) [1][4][3]. - They are named using the application's bundle identifier (e.g., com.apple.iwork.pages.sfl2) [2][5][3]. - While they are colloquially called property lists, they are actually binary files encoded with NSKeyedArchiver (a serialized object graph) [6][3][7]. Because of this, they cannot be read as plain text or standard XML property lists without specific decoding tools [1][6]. 2. Content and Structure: - The files contain "Bookmarks"—opaque, system-maintained data blobs that resolve to file paths [1][4][7]. - They do not typically contain human-readable file paths or timestamps directly in plain text [1][2]. Instead, they store a "Bookmark" object that LaunchServices uses to resolve the document's location [4][6][8]. - Each file includes a key, typically com.apple.LSSharedFileList.MaxAmount, which specifies the maximum number of recent items to store [2][9][7]. 3. Interaction: - These files are managed by the sharedfilelistd service [2][5]. - They are updated when an application is opened and interacts with its recent documents list [2]. - To access the information programmatically, developers typically use the URLByResolvingBookmarkData:options:relativeToURL:bookmarkDataIsStale:error: method in Swift or Objective-C to convert the stored bookmark data back into accessible file paths [6][8]. For digital forensics or troubleshooting purposes, removing an.sfl2 file associated with a specific bundle identifier and restarting the sharedfilelistd process (e.g., via killall sharedfilelistd) is a common way to reset an application's Recent Documents list [5][10].
Citations:
🌐 Web query:
Cherry Studio macOS Info.plist CFBundleIdentifier com.kangfenmao.CherryStudio💡 Result:
The identifier com.kangfenmao.CherryStudio was the original CFBundleIdentifier used for the Cherry Studio macOS application [1][2]. In May 2026, the application underwent a rebranding that included a change to its bundle identifier [2]. The identifier was updated from com.kangfenmao.CherryStudio to com.cherryai.CherryStudio [2]. This change had several consequences for macOS users, as the operating system treats the new bundle identifier as a completely new application [2]. Consequently, macOS resets application-scoped state for users upgrading from versions that used the old identifier, including: - URL scheme registrations [2] - Accessibility and Transparency, Consent, and Control (TCC) authorizations [2] - Keychain entries (safeStorage) [2] - Notification permissions [2] - Login items [2] - Access to protected folders like Documents and Downloads [2] While user data is generally preserved because the underlying storage location (userData) is keyed by the product name rather than the bundle identifier, users are required to re-grant these system permissions and re-configure related settings upon the first launch of the updated version [2]. Note that current repositories and documentation reflect the updated identifier [3].
Citations:
🌐 Web query:
bash compgen -G pathname expansion case sensitive filesystem macOS case-sensitive volume💡 Result:
The behavior of
compgenin Bash on macOS is determined primarily by the Readline library's configuration, not the underlying filesystem's case sensitivity [1][2]. Filesystem Case Sensitivity macOS typically uses APFS (or HFS+ on older systems), which are case-insensitive and case-preserving by default [1][3]. While the filesystem itself performs case-insensitive lookups for file paths, the Bash shell and its built-incompgenutility operate independently of the filesystem's matching logic [1][2]. Whencompgenperforms pathname expansion, it acts as a filter that expects exact character matches unless explicitly configured otherwise [2]. BashcompgenBehavior By default,compgen(used for tab completion) is case-sensitive [4][5]. Even if you are working on a case-insensitive macOS volume,compgenwill not automatically match "File.txt" if you type "file" and hit tab, because it relies on its own internal matching process rather than delegating the search to the OS [2]. How to Enable Case-Insensitive Completion To makecompgen(and by extension, Bash tab completion) case-insensitive, you must configure the Readline library, which Bash uses to handle input and completion [4][5]. You can do this by adding the following line to your ~/.inputrc file (or creating it if it does not exist) [4][5]: set completion-ignore-case on After saving the file, you may need to reload your configuration (e.g., by restarting your terminal or using the key binding Ctrl+X, Ctrl+R) [5]. Alternatively, you can run the following command to apply the setting for the current session: bind "set completion-ignore-case on" Note that if you are using a case-sensitive volume, the shell will treat files with different casings as distinct entities, but thecompletion-ignore-casesetting will simply instructcompgento treat those different casings as matches during the completion process [2][5].Citations:
🏁 Script executed:
Repository: fleetdm/fleet
Length of output: 224
Preserve the bundle identifier’s exact casing.
compgen -Gdoes not matchcom.kangfenmao.cherrystudio.sfl*againstcom.kangfenmao.CherryStudio.sfl2. Use the exact bundle identifier casing.🤖 Prompt for AI Agents
Source: MCP tools