-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add async HBJobQueueHandler.enqueue * case issue * Add async HBJobQueueHandler.shutdown() * Fix inconsistent comment spacing (#219) I was reading this code and noticed these small typos and just wanted to send a quick PR in. * Add badges to README.md * Add support for running memory persist outside app (#218) * Fix HBMemoryPersistDriver (#220) Found out I completely messed up the concurrent access and was allowing access to the value dictionary from multiple event loops * Require Swift 5.7 * Implemented service lifecycle v2 Breaks all my test code :-( * Conform HBApplication to Service, Use new HBHTTPServer * Rework HBXCT framework This had needed a lot of change to get it to work with changes to HBApplication. I have also removed the embedded and asyncTest setups and replaced with a router setup which sends requests straight to the router * Fix up tests after changes to HBXCT * Added comment * Fix linux build error * Separate out Service conformance * comments * comment * HBXCTClientProtocol todo comment --------- Co-authored-by: Brian Michel <[email protected]>
- Loading branch information
1 parent
5277c71
commit b309c92
Showing
32 changed files
with
1,739 additions
and
2,102 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 |
---|---|---|
|
@@ -3,6 +3,8 @@ name: API breaking changes | |
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
linux: | ||
|
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 |
---|---|---|
|
@@ -43,7 +43,6 @@ jobs: | |
image: | ||
- 'swift:5.7' | ||
- 'swift:5.8' | ||
|
||
container: | ||
image: ${{ matrix.image }} | ||
steps: | ||
|
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
Oops, something went wrong.