ably 1.2.6 → 1.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/check.yml +5 -3
- data/CHANGELOG.md +21 -0
- data/SPEC.md +294 -294
- data/ably.gemspec +3 -2
- data/lib/ably/models/protocol_message.rb +0 -1
- data/lib/ably/realtime/connection/websocket_transport.rb +1 -1
- data/lib/ably/realtime/connection.rb +30 -2
- data/lib/ably/version.rb +1 -1
- data/spec/acceptance/realtime/auth_spec.rb +0 -7
- data/spec/acceptance/realtime/client_spec.rb +1 -1
- data/spec/acceptance/realtime/connection_failures_spec.rb +7 -7
- data/spec/acceptance/realtime/message_spec.rb +1 -1
- data/spec/acceptance/rest/base_spec.rb +4 -5
- data/spec/acceptance/rest/client_spec.rb +3 -3
- data/spec/unit/models/protocol_message_spec.rb +0 -8
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16e7e84ef48f6781cea03494b8b603b6e59cf98583ad1200f0421dab0bc0252d
|
4
|
+
data.tar.gz: 39dc6cd4bba9d31f8bd7f94f31c75b97adce21bf1fe07bbf0b3701a0f7075a59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 919eaa8f22a8178997e3505b449e03d93824196803aae58ceee9a55220e2199b4a911edad93a1563e225a167c79ec336c18983a4d0bbbd6d9626657b3acf98a9
|
7
|
+
data.tar.gz: 44ff62c2c39e022133039f7e04a52d839fb3d50abf344cd3da3ba1ec8890f51c4e532813a2ea138e78556027a133477d60d01bf839e37ca9183b126a007cff82
|
data/.github/workflows/check.yml
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
on:
|
2
|
+
workflow_dispatch:
|
2
3
|
pull_request:
|
3
4
|
push:
|
4
5
|
branches:
|
@@ -31,8 +32,9 @@ jobs:
|
|
31
32
|
run: |
|
32
33
|
mkdir junit
|
33
34
|
bundle exec parallel_rspec --prefix-output-with-test-env-number --first-is-1 -- spec/${{ matrix.type }}
|
34
|
-
- uses: actions/upload-artifact@
|
35
|
+
- uses: actions/upload-artifact@v4
|
35
36
|
with:
|
37
|
+
name: test-results-ruby-${{ matrix.ruby }}-${{ matrix.protocol }}-${{ matrix.type }}
|
36
38
|
path: |
|
37
39
|
junit/
|
38
40
|
coverage/
|
@@ -44,7 +46,7 @@ jobs:
|
|
44
46
|
server-url: 'https://test-observability.herokuapp.com'
|
45
47
|
server-auth: ${{ secrets.TEST_OBSERVABILITY_SERVER_AUTH_KEY }}
|
46
48
|
path: 'junit/'
|
47
|
-
- uses: coverallsapp/github-action@
|
49
|
+
- uses: coverallsapp/github-action@v2
|
48
50
|
with:
|
49
51
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
50
52
|
flag-name: ruby-${{ matrix.ruby }}-${{ matrix.protocol }}-${{ matrix.type }}
|
@@ -54,7 +56,7 @@ jobs:
|
|
54
56
|
runs-on: ubuntu-latest
|
55
57
|
steps:
|
56
58
|
- name: Coveralls Finished
|
57
|
-
uses: coverallsapp/github-action@
|
59
|
+
uses: coverallsapp/github-action@v2
|
58
60
|
with:
|
59
61
|
github-token: ${{ secrets.github_token }}
|
60
62
|
parallel-finished: true
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v1.2.8](https://github.com/ably/ably-ruby/tree/v1.2.8)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/ably/ably-ruby/compare/v1.2.7...v1.2.8)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
* Fix incompatibility with `websocket-driver` 0.8 (#443)
|
10
|
+
* Do not use fallback hosts as a result of a token error (#443)
|
11
|
+
|
12
|
+
**Updated dependencies:**
|
13
|
+
|
14
|
+
* Bump `faraday-typhoeus` to 1.1.0 (#442)
|
15
|
+
|
16
|
+
## [v1.2.7](https://github.com/ably/ably-ruby/tree/v1.2.7)
|
17
|
+
|
18
|
+
[Full Changelog](https://github.com/ably/ably-ruby/compare/v1.2.6...v1.2.7)
|
19
|
+
|
20
|
+
**Fixed bugs:**
|
21
|
+
|
22
|
+
- Fix crash when logging an incoming message with debug-level logging enabled [\#436](https://github.com/ably/ably-ruby/issues/436)
|
23
|
+
|
3
24
|
## [v1.2.6](https://github.com/ably/ably-ruby/tree/v1.2.6)
|
4
25
|
|
5
26
|
[Full Changelog](https://github.com/ably/ably-ruby/compare/v1.2.5...v1.2.6)
|