Skip to content

Commit fc526e8

Browse files
authored
Merge pull request #449 from pusher/upgrade-nwwebsocket
Upgrade NWWebsocket v0.5.8
2 parents d8d7a77 + 0e16bc8 commit fc526e8

File tree

14 files changed

+24
-18
lines changed

14 files changed

+24
-18
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: maxim-lobanov/setup-xcode@v1
1616
with:
17-
xcode-version: '15.0.1'
17+
xcode-version: '16.2.0'
1818
- uses: actions/cache@v4
1919
id: carthage-cache
2020
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v2
4040
- uses: maxim-lobanov/setup-xcode@v1
4141
with:
42-
xcode-version: '15.0.1'
42+
xcode-version: '16.2.0'
4343
- name: Clear Carthage cache
4444
run: |
4545
echo "🧹 Clearing Carthage caches for clean build..."

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [10.1.7](https://github.com/pusher/pusher-websocket-swift/compare/10.1.6...10.1.7) - 2025-12-05
8+
9+
### Fixed
10+
11+
- Upgrade NWWebSocket library to version 0.5.8 to fix reconnections getting stuck after network disruptions
12+
713
## [10.1.6](https://github.com/pusher/pusher-websocket-swift/compare/10.1.5...10.1.6) - 2025-06-20
814

915
### Fixed

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "bitmark-inc/tweetnacl-swiftwrap" ~> 1.1.0
2-
github "pusher/NWWebSocket" ~> 0.5.7
2+
github "pusher/NWWebSocket" ~> 0.5.8

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "bitmark-inc/tweetnacl-swiftwrap" "1.1.0"
2-
github "pusher/NWWebSocket" "0.5.7"
2+
github "pusher/NWWebSocket" "0.5.8"

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ let package = Package(
99
.library(name: "PusherSwift", targets: ["PusherSwift"])
1010
],
1111
dependencies: [
12-
.package(url: "https://github.com/pusher/NWWebSocket.git", .upToNextMajor(from: "0.5.7")),
12+
.package(url: "https://github.com/pusher/NWWebSocket.git", .upToNextMajor(from: "0.5.8")),
1313
.package(url: "https://github.com/bitmark-inc/tweetnacl-swiftwrap", .upToNextMajor(from: "1.1.0")),
14-
],
14+
],
1515
targets: [
1616
.target(
1717
name: "PusherSwift",

PusherSwift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'PusherSwift'
3-
s.version = '10.1.6'
3+
s.version = '10.1.7'
44
s.summary = 'A Pusher client library in Swift'
55
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
66
s.license = 'MIT'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313
s.source_files = ['Sources/**/*.swift']
1414

1515
s.dependency 'TweetNacl', '~> 1.0.0'
16-
s.dependency 'NWWebSocket', '~> 0.5.7'
16+
s.dependency 'NWWebSocket', '~> 0.5.8'
1717

1818
s.ios.deployment_target = '13.0'
1919
s.osx.deployment_target = '10.15'

PusherSwiftWithEncryption.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'PusherSwiftWithEncryption'
3-
s.version = '10.1.6'
3+
s.version = '10.1.7'
44
s.summary = 'A Pusher client library in Swift that supports encrypted channels'
55
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
66
s.license = 'MIT'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313
s.source_files = ['Sources/**/*.swift']
1414

1515
s.dependency 'TweetNacl', '~> 1.0.0'
16-
s.dependency 'NWWebSocket', '~> 0.5.7'
16+
s.dependency 'NWWebSocket', '~> 0.5.8'
1717

1818
s.ios.deployment_target = '13.0'
1919
s.osx.deployment_target = '10.15'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ source 'https://github.com/CocoaPods/Specs.git'
8282
platform :ios, '10.0'
8383
use_frameworks!
8484

85-
pod 'PusherSwift', '~> 10.1.6'
85+
pod 'PusherSwift', '~> 10.1.7'
8686
```
8787

8888
Then, run the following command:
@@ -150,7 +150,7 @@ let package = Package(
150150
targets: ["YourPackage"]),
151151
],
152152
dependencies: [
153-
.package(url: "https://github.com/pusher/pusher-websocket-swift.git", from: "10.1.6"),
153+
.package(url: "https://github.com/pusher/pusher-websocket-swift.git", from: "10.1.7"),
154154
],
155155
targets: [
156156
.target(

0 commit comments

Comments
 (0)