-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/24.1' into 91-extract-detections-to-module
- Loading branch information
Showing
132 changed files
with
1,623 additions
and
1,543 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,5 @@ jobs: | |
- name: "Run SwiftLint" | ||
uses: norio-nomura/[email protected] | ||
with: | ||
args: "--strict" | ||
args: "--strict --quiet --reporter github-actions-logging" | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,15 +9,6 @@ | |
"version" : "1.2.5" | ||
} | ||
}, | ||
{ | ||
"identity" : "openssl", | ||
"kind" : "remoteSourceControl", | ||
"location" : "[email protected]:krzyzanowskim/OpenSSL.git", | ||
"state" : { | ||
"revision" : "84a8ae774291a4ab1971e42908d5114d98d4b623", | ||
"version" : "3.1.5004" | ||
} | ||
}, | ||
{ | ||
"identity" : "performancebezier", | ||
"kind" : "remoteSourceControl", | ||
|
This file contains 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
import AppKit | ||
import Automator | ||
import Detections | ||
import DetectionsMac | ||
import Redacting | ||
import OSLog | ||
|
||
|
This file contains 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 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 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 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 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
File renamed without changes.
File renamed without changes.
This file contains 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 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 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Created by Geoff Pado on 5/16/24. | ||
// Copyright © 2024 Cocoatype, LLC. All rights reserved. | ||
|
||
import Logging | ||
import TestHelpersInterface | ||
|
||
public class SpyLogger: Logger { | ||
public init( | ||
logExpectation: Expectation? = nil | ||
) { | ||
self.logExpectation = logExpectation | ||
} | ||
|
||
private(set) public var loggedEvents = [Event]() | ||
public var logExpectation: Expectation? | ||
public func log(_ event: Event) { | ||
loggedEvents.append(event) | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Created by Geoff Pado on 5/16/24. | ||
// Copyright © 2024 Cocoatype, LLC. All rights reserved. | ||
|
||
public enum Logging { | ||
public static let logger = TelemetryLogger() | ||
} |
21 changes: 0 additions & 21 deletions
21
Modules/Capabilities/PurchaseMarketing/Sources/Top Bar/ProductPriceFormatter.swift
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.