ksql 0.1.0.beta.1 → 0.1.1

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: 0afbab26e682135667899a8b214c02ddf8d11447b1356dba698194940b5950e8
4
- data.tar.gz: 0f5ac452b2743ae96b77c7d117d944e0c7cab05a654237f4d2f0a7dd2ea1e803
3
+ metadata.gz: b5da65772764a2a9351b9034ae4ffdac4d92b22c5081057c37c4e105c5c1921b
4
+ data.tar.gz: 855626eeb47f8c9c75c33482b63f45212b668e793b9cc0307669a1a5d0352d71
5
5
  SHA512:
6
- metadata.gz: 9308eae9d92548b0c13e5021d8dc9d1eb06d57d5c59b610aae4ea53b1e8fe7999ec29f7953a294e4fbbe489baae72f4d1b56769091fce84c6fa2ec5b30effc4a
7
- data.tar.gz: d2336d0b3fddded18b21fda1ded2fdb8786cbcfff273022722aeface5e98acf8048253646012471f9fe7632d6f2a7bff570132da4f5c20c9780d3379fe425975
6
+ metadata.gz: 475985b1ff666f5accdd9158045e9dad42bd7a912ee1f508397d6f9024b9cd8ce0809abb51367582754afbdcb0adc06eb161ecfcd103893d40b20c1d52dcf621
7
+ data.tar.gz: d29e44966fe9f9641ae67688a6a446bb646b1f32a4e2800465a938e606a206ca3aa4a5c471e5554f2a10710f85fb5ce31fb63860e9670cbbf4bdf3938a546e79
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  ## [Releases]
2
2
 
3
+ ## [0.1.1] - 2022-05-05
4
+
5
+ ### Fixed
6
+
7
+ - Typo on Stream closing error message. ( Thanks to @ook )
8
+
9
+ ## [0.1.0] - 2022-05-05
10
+
11
+ - Yanked
12
+
3
13
  ## [0.1.0.beta.1] - 2022-03-17
4
14
 
5
15
  ### Added
data/Gemfile.lock CHANGED
@@ -1,21 +1,21 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ksql (0.1.0.beta)
4
+ ksql (0.1.1)
5
5
  activesupport (>= 5)
6
6
  net-http2 (~> 0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (7.0.2.2)
11
+ activesupport (7.0.2.4)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 1.6, < 2)
14
14
  minitest (>= 5.1)
15
15
  tzinfo (~> 2.0)
16
16
  ast (2.4.2)
17
17
  byebug (11.1.3)
18
- concurrent-ruby (1.1.9)
18
+ concurrent-ruby (1.1.10)
19
19
  diff-lcs (1.5.0)
20
20
  http-2 (0.11.0)
21
21
  i18n (1.10.0)
@@ -71,4 +71,4 @@ DEPENDENCIES
71
71
  rubocop (~> 1)
72
72
 
73
73
  BUNDLED WITH
74
- 2.3.7
74
+ 2.3.9
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  ## <img src="https://user-images.githubusercontent.com/50866745/156314925-b823bfe2-a9d4-4b83-8376-29a6a659b57f.png" width="48"> ksqlDB Client <!-- omit in toc -->
2
2
  ![](https://img.shields.io/static/v1?label=Language&message=Ruby&color=red)
3
3
  ![](https://img.shields.io/static/v1?label=Latest&message=0.1.0.beta.1&color=blue)
4
+ ![StandWithUkraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)
4
5
 
5
6
  KSQL is a [ksqlDB](https://ksqldb.io/) Ruby client that focuses on ease of use. Supports all recent ksqlDB features and does not have any heavyweight dependencies.
6
7
 
@@ -64,6 +65,7 @@ The gem requires a minimum configuration to connect to ksqlDB, it is shipped wit
64
65
  ```Ruby
65
66
  Ksql.configure do |config|
66
67
  config.host = 'http://localhost:8088' # Required
68
+ # config.auth = 'user:password' # optional
67
69
  end
68
70
  ```
69
71
 
@@ -342,11 +344,6 @@ Ksql::Client.ksql('DROP STREAM IF EXISTS riderLocations;')
342
344
  | ------ | -- |
343
345
  | 0.23.1 | :heavy_check_mark: Supported |
344
346
  | 0.22.0 | :heavy_check_mark: Supported |
345
- | 0.21.0 | :heavy_check_mark: Supported |
346
- | 0.20.0 | :heavy_check_mark: Supported |
347
- | 0.19.0 | :heavy_check_mark: Supported |
348
- | 0.18.0 | :heavy_check_mark: Supported |
349
- | 0.17.0 | :x: Untested |
350
347
  | Older | :x: Untested |
351
348
 
352
349
  ## Known issues
data/lib/ksql/stream.rb CHANGED
@@ -15,7 +15,7 @@ module Ksql
15
15
  # Close the streaming connection
16
16
  #
17
17
  def close
18
- raise StreamError.new('The stream hasn\'t stared!') unless @id.present?
18
+ raise StreamError.new('The stream hasn\'t started!') unless @id.present?
19
19
 
20
20
  @client.close
21
21
  end
data/lib/ksql/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ksql
4
- VERSION = '0.1.0.beta.1'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ksql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.beta.1
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lapo Elisacci
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-17 00:00:00.000000000 Z
11
+ date: 2022-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -98,11 +98,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
98
98
  version: 2.6.0
99
99
  required_rubygems_version: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ">"
101
+ - - ">="
102
102
  - !ruby/object:Gem::Version
103
- version: 1.3.1
103
+ version: '0'
104
104
  requirements: []
105
- rubygems_version: 3.3.9
105
+ rubygems_version: 3.3.7
106
106
  signing_key:
107
107
  specification_version: 4
108
108
  summary: Kafka ksqlDB Client for Ruby