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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5e951e6d3d76d3abcf7d95bf3ffb24b0ef5a351f6862d8fe6e777971185a2ac
4
- data.tar.gz: a548e729e3f25562630cb28ba0f57e6aba2d58525235553831b83411c08c2f12
3
+ metadata.gz: 16e7e84ef48f6781cea03494b8b603b6e59cf98583ad1200f0421dab0bc0252d
4
+ data.tar.gz: 39dc6cd4bba9d31f8bd7f94f31c75b97adce21bf1fe07bbf0b3701a0f7075a59
5
5
  SHA512:
6
- metadata.gz: 78d23f620fe230ef257fa7ab9042c88479494e91f4d0ad10a07f154d79432e0b3487cc0719f5262867649bce3d874a1a2ab8a8193b7448f9700d08b28770c0a0
7
- data.tar.gz: aaa979842c38dbfd4b65b177bee657c6278de4fa8091799259c1adad61ebf410516dc20458b2b561d4b0c7b6b20d3ba4b9b31b93c2a9c32548a000243099bd68
6
+ metadata.gz: 919eaa8f22a8178997e3505b449e03d93824196803aae58ceee9a55220e2199b4a911edad93a1563e225a167c79ec336c18983a4d0bbbd6d9626657b3acf98a9
7
+ data.tar.gz: 44ff62c2c39e022133039f7e04a52d839fb3d50abf344cd3da3ba1ec8890f51c4e532813a2ea138e78556027a133477d60d01bf839e37ca9183b126a007cff82
@@ -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@v3
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@1.1.3
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@1.1.3
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)