Skip to content

Commit

Permalink
Release 1.5.0 (#18)
Browse files Browse the repository at this point in the history
* Server freezes sometimes and needs to be restarted (#2)

* Fix

- Handling inside mitmproxy's code the file descriptors limit to fix this issue

* Bridge

- Adding heartbeat to cleanup old connections

* App

- Removing old bridge and websocket's python code
- Embedding mitmdump binary with mockingbird bridge
- Improved process execution layer,

* Server freezes sometimes and needs to be restarted (#2)

* Fix

- Handling inside mitmproxy's code the file descriptors limit to fix this issue

* Bridge

- Adding heartbeat to cleanup old connections

* App

- Removing old bridge and websocket's python code
- Embedding mitmdump binary with mockingbird bridge
- Improved process execution layer,

* Server freezes sometimes and needs to be restarted (#2)

* Fix

- Handling inside mitmproxy's code the file descriptors limit to fix this issue

* Bridge

- Adding heartbeat to cleanup old connections

* App

- Removing old bridge and websocket's python code
- Embedding mitmdump binary with mockingbird bridge
- Improved process execution layer,

* Fixes routing match for http method (#4)

* - bumping release version 1.2.0
- removing swiftlint installation from workflow

* Release update 1.3.0

* Updating logo

* Release 1.4.0

* Fixing new version of mitmdump_mb and tasks that should execute when exiting the app

* Release 1.5.0
  • Loading branch information
erickjung authored Apr 11, 2022
1 parent 2c4a7aa commit d221dbe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/Mockingbird.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@
CODE_SIGN_ENTITLEMENTS = Mockingbird/Resources/mockingbird.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 7;
CURRENT_PROJECT_VERSION = 8;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -1305,7 +1305,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 1.4.0;
MARKETING_VERSION = 1.5.0;
OTHER_CODE_SIGN_FLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = com.farfetch.mockingbird;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -1321,7 +1321,7 @@
CODE_SIGN_ENTITLEMENTS = Mockingbird/Resources/mockingbird.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 7;
CURRENT_PROJECT_VERSION = 8;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -1334,7 +1334,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 1.4.0;
MARKETING_VERSION = 1.5.0;
OTHER_CODE_SIGN_FLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = com.farfetch.mockingbird;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion src/Mockingbird/Store/Task/TaskReducer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private extension TaskReducer {

let dataFolder = try Folder(path: Default.Folder.mitm)

if dataFolder.files.count() <= 0 {
if !dataFolder.containsFile(named: "mitmdump_mbv2") {

if let fileURL = Bundle.main.url(forResource: "mitmdump_mb", withExtension: "zip"),
let destURL = URL(string: Default.Folder.mitm) {
Expand Down

0 comments on commit d221dbe

Please sign in to comment.