ably 1.2.3 → 1.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c2ec62cdc84e7558147bdab0c6bf2cbb933d75b1298aafbdd78848c6ebf62b1
4
- data.tar.gz: b7edf7e0643e1ff2ead0ec4af3aee1caf0863dab40d6b9e247dd0e1bcd56b0e6
3
+ metadata.gz: aafd721799a12227e92448a091789f8fec18f0bd7fd538fbe0aee39df0f85380
4
+ data.tar.gz: 403b90f2620d3c16f9e9795f89ae9efd3fa93a60b0c5c1ef60be2a1fe4687f15
5
5
  SHA512:
6
- metadata.gz: 77f961eaa1ecab40502a2b8a3ce193ab9448e5c3df675ee7212369a94252b314af55b54200f016317d48727d6df7a6526551a7e1090f8dfd4c56e6bc9e32a00a
7
- data.tar.gz: 50df5abcdd20c6afc63c5ac71043fad7a07547c16c752356011cb0b0713666d429e79474190c346dfadb9d89afd4f774d8e9d899dc7bcf0e7a363dcf40af3a1b
6
+ metadata.gz: 258d7bb424f74706a35402b8867a5d936080344f80e7a9e62f58b6fe225a6e25118f8735940d9383154af1cfb7087c2233b72cecd81a5d60f1c13fb75ae043a1
7
+ data.tar.gz: a6d8953155ad413b0d1da0aa89c7054ef4a163d87f0860f9c8f375bb682412d809e7ba926471665c37e00df6dec4894beb145179d833f9521bc09842399e748a
@@ -0,0 +1,112 @@
1
+ %YAML 1.2
2
+ ---
3
+ common-version: 1.2.0
4
+ compliance:
5
+ Agent Identifier:
6
+ Agents:
7
+ Runtime:
8
+ Authentication:
9
+ API Key:
10
+ Token:
11
+ Callback:
12
+ Literal:
13
+ URL:
14
+ Query Time:
15
+ Debugging:
16
+ Error Information:
17
+ Logs:
18
+ Protocol:
19
+ JSON:
20
+ Maximum Message Size:
21
+ MessagePack:
22
+ Realtime:
23
+ Channel:
24
+ Attach:
25
+
26
+ # setOptions on existing channel instance is missing (i.e. it works but is inelegant, requiring soft-deprecated mechanism)
27
+ # see:
28
+ # - https://sdk.ably.com/builds/ably/specification/main/features/#RSN3c
29
+ # - https://sdk.ably.com/builds/ably/specification/main/features/#RTS3c
30
+ Encryption:
31
+
32
+ History:
33
+ Presence:
34
+ Enter:
35
+ Client:
36
+ Get:
37
+ History:
38
+ Subscribe:
39
+ Update:
40
+ Client:
41
+ Publish:
42
+ Retry Timeout:
43
+ State Events:
44
+ Subscribe:
45
+ Rewind:
46
+ Connection:
47
+ Disconnected Retry Timeout:
48
+ Get Identifier:
49
+ Lifecycle Control:
50
+ Ping:
51
+ Recovery:
52
+ State Events:
53
+ Suspended Retry Timeout:
54
+ Message Echoes:
55
+ Message Queuing:
56
+ Transport Parameters:
57
+ REST:
58
+ Authentication:
59
+ Authorize:
60
+ Create Token Request:
61
+ Get Client Identifier:
62
+ Request Token:
63
+ Channel:
64
+ Existence Check:
65
+ Get:
66
+ History:
67
+ Iterate:
68
+ Name:
69
+ Presence:
70
+ History:
71
+ Member List:
72
+ Publish:
73
+ Idempotence:
74
+ Release:
75
+ Status:
76
+ Channel Details: # https://github.com/ably/ably-ruby/pull/365
77
+ Opaque Request:
78
+ Push Notifications Administration:
79
+ Channel Subscription:
80
+ List:
81
+ List Channels:
82
+ Remove:
83
+ Save:
84
+ Device Registration:
85
+ Get:
86
+ List:
87
+ Remove:
88
+ Save:
89
+ Publish:
90
+ Request Identifiers:
91
+ Request Timeout:
92
+ Service:
93
+ Get Time:
94
+ Statistics:
95
+ Query:
96
+ Service:
97
+ Environment:
98
+ Fallbacks:
99
+ Hosts:
100
+ Internet Up Check:
101
+ Retry Count:
102
+ Retry Duration:
103
+ Retry Timeout:
104
+ Host:
105
+ Testing:
106
+ Disable TLS:
107
+ TCP Insecure Port:
108
+ TCP Secure Port:
109
+ Transport:
110
+ Connection Open Timeout:
111
+ HTTP/2: # https://github.com/ably/ably-ruby/pull/197
112
+ Maximum Frame Size:
@@ -29,7 +29,6 @@ jobs:
29
29
  TEST_TYPE: ${{ matrix.type }}
30
30
  RUBY_VERSION: ${{ matrix.ruby }}
31
31
  run: |
32
- cp .github/workflows/.rspec_parallel .rspec_parallel
33
32
  mkdir junit
34
33
  bundle exec parallel_rspec --prefix-output-with-test-env-number --first-is-1 -- spec/${{ matrix.type }}
35
34
  - uses: actions/upload-artifact@v3
@@ -40,7 +39,7 @@ jobs:
40
39
  retention-days: 7
41
40
  - name: Upload test results
42
41
  if: always()
43
- uses: ably-labs/test-observability-action@main
42
+ uses: ably/test-observability-action@v1
44
43
  with:
45
44
  server-url: 'https://test-observability.herokuapp.com'
46
45
  server-auth: ${{ secrets.TEST_OBSERVABILITY_SERVER_AUTH_KEY }}
@@ -0,0 +1,14 @@
1
+ name: Features
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+
9
+ jobs:
10
+ build:
11
+ uses: ably/features/.github/workflows/sdk-features.yml@main
12
+ with:
13
+ repository-name: ably-ruby
14
+ secrets: inherit
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## [v1.2.4](https://github.com/ably/ably-ruby/tree/v1.2.4)
4
+
5
+ [Full Changelog](https://github.com/ably/ably-ruby/compare/v1.2.3...v1.2.4)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - fix: unpin msgpack dependency minor/patch version [\#382](https://github.com/ably/ably-ruby-rest/pull/29)
10
+
3
11
  ## [v1.2.3](https://github.com/ably/ably-ruby/tree/v1.2.3)
4
12
 
5
13
  [Full Changelog](https://github.com/ably/ably-ruby/compare/v1.2.2...v1.2.3)
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # [Ably](https://ably.com)
2
2
 
3
+ [![Features](https://github.com/ably/ably-ruby/actions/workflows/features.yml/badge.svg)](https://github.com/ably/ably-ruby/actions/workflows/features.yml)
4
+
3
5
  [![Gem Version](https://img.shields.io/gem/v/ably?style=flat)](https://img.shields.io/gem/v/ably?style=flat)
4
6
  [![Coverage Status](https://coveralls.io/repos/ably/ably-ruby/badge.svg)](https://coveralls.io/r/ably/ably-ruby)
5
7
 
data/lib/ably/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Ably
2
- VERSION = '1.2.3'
2
+ VERSION = '1.2.4'
3
3
  PROTOCOL_VERSION = '1.2'
4
4
 
5
5
  # @api private
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ably
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lewis Marshall
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-10-04 00:00:00.000000000 Z
12
+ date: 2023-06-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: eventmachine
@@ -347,20 +347,6 @@ dependencies:
347
347
  - - "~>"
348
348
  - !ruby/object:Gem::Version
349
349
  version: 3.8.0
350
- - !ruby/object:Gem::Dependency
351
- name: webrick
352
- requirement: !ruby/object:Gem::Requirement
353
- requirements:
354
- - - "~>"
355
- - !ruby/object:Gem::Version
356
- version: 1.7.0
357
- type: :development
358
- prerelease: false
359
- version_requirements: !ruby/object:Gem::Requirement
360
- requirements:
361
- - - "~>"
362
- - !ruby/object:Gem::Version
363
- version: 1.7.0
364
350
  description: A Ruby client library for ably.io realtime messaging
365
351
  email:
366
352
  - lewis@lmars.net
@@ -369,13 +355,15 @@ executables: []
369
355
  extensions: []
370
356
  extra_rdoc_files: []
371
357
  files:
358
+ - ".ably/capabilities.yaml"
372
359
  - ".editorconfig"
373
- - ".github/workflows/.rspec_parallel"
374
360
  - ".github/workflows/check.yml"
375
361
  - ".github/workflows/docs.yml"
362
+ - ".github/workflows/features.yml"
376
363
  - ".gitignore"
377
364
  - ".gitmodules"
378
365
  - ".rspec"
366
+ - ".rspec_parallel"
379
367
  - CHANGELOG.md
380
368
  - COPYRIGHT
381
369
  - Gemfile
@@ -604,7 +592,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
604
592
  - !ruby/object:Gem::Version
605
593
  version: '0'
606
594
  requirements: []
607
- rubygems_version: 3.2.32
595
+ rubygems_version: 3.1.6
608
596
  signing_key:
609
597
  specification_version: 4
610
598
  summary: A Ruby client library for ably.io realtime messaging implemented using EventMachine