Skip to content

Commit 5b803bd

Browse files
committed
version!: Version 1.8.0
1 parent 0ea46c2 commit 5b803bd

File tree

3 files changed

+39
-11
lines changed

3 files changed

+39
-11
lines changed

CHANGELOG.md

Lines changed: 34 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
11
# Change Log
22

3-
4-
------------------------------------
5-
6-
All tickets below use references to IDs in our old issue tracking system.
7-
To find them, search for their description or ID in the new issue tracker.
8-
9-
------------------------------------
10-
3+
## [1.8.0] - 2021-12-06
4+
* [#43] Add keys to every `BigBlueButtonException`, to better identify them.
5+
* [#42] Change `BigBlueButtonException` to inherit from `StandardError` instead of `Exception`.
6+
* [#50] [BREAKING-CHANGE] Replace `debug` flag with a optional Logger. The application using the
7+
gem can pass its own logger as argument for the `BigBlueButtonApi` initialization.
8+
If none is passed, the gem will use its own default logger on `STDOUT` with `INFO` level.
9+
* [#40] Fix issue preventing documents from being preuploaded using the create call.
10+
* Fix parse of recordings with invalid times. It would break at `getRecordings` if one
11+
of them had an empty `startTime` or `endTime`.
12+
* Add a Dockerfile and compose to help run tests.
13+
* Fix deprecated `TimeoutError` constant.
14+
* [#35] Make `get_recordings` accept multiple `state` params.
15+
* [#34] Update `rubyzip` gem to the newest version with no vulnerability, from 1.2.2 to 1.3.0
16+
* [#33] Upgrade dependencies:
17+
- `childprocess` from 0.3.2 to 1.0.1
18+
- `ffi` from 1.0.11 to 1.9.24
19+
- `json` from 1.8.3 to 1.8.6
20+
- `nokogiri` from 1.6.6.2 to 1.10.4
21+
- `rack` from 1.4.1 to 1.6.11
22+
- `rdoc` from 3.12 to 3.12.1
23+
- `rubyzip` from 0.9.8 to 1.2.2
1124

1225
## [1.7.0] - 2018-08-17
1326

@@ -153,6 +166,19 @@ were different in cases when they were not.
153166
(instead of browser URL). This call currently does not work as
154167
documented.
155168

169+
<!-- PRs -->
170+
[#50]: https://github.com/mconf/bigbluebutton-api-ruby/pull/50
171+
[#43]: https://github.com/mconf/bigbluebutton-api-ruby/pull/43
172+
[#42]: https://github.com/mconf/bigbluebutton-api-ruby/pull/42
173+
[#40]: https://github.com/mconf/bigbluebutton-api-ruby/pull/40
174+
[#35]: https://github.com/mconf/bigbluebutton-api-ruby/pull/35
175+
[#34]: https://github.com/mconf/bigbluebutton-api-ruby/pull/34
176+
[#33]: https://github.com/mconf/bigbluebutton-api-ruby/pull/33
177+
[#31]: https://github.com/mconf/bigbluebutton-api-ruby/pull/31
178+
[#29]: https://github.com/mconf/bigbluebutton-api-ruby/pull/29
179+
180+
<!-- Versions -->
181+
[1.8.0]: https://github.com/mconf/bigbluebutton-api-ruby/compare/v1.7.0...v1.8.0
156182
[1.7.0]: https://github.com/mconf/bigbluebutton-api-ruby/compare/v1.6.0...v1.7.0
157183
[1.6.0]: https://github.com/mconf/bigbluebutton-api-ruby/compare/v1.5.0...v1.6.0
158184
[1.5.0]: https://github.com/mconf/bigbluebutton-api-ruby/compare/v1.4.0...v1.5.0

Gemfile.lock

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GIT
77
PATH
88
remote: .
99
specs:
10-
bigbluebutton-api-ruby (1.7.0)
10+
bigbluebutton-api-ruby (1.8.0)
1111
childprocess (>= 1.0.1)
1212
ffi (>= 1.9.24)
1313
json (>= 1.8.6)
@@ -59,6 +59,7 @@ GEM
5959
rake (0.9.2.2)
6060
rdoc (3.12.1)
6161
json (~> 1.4)
62+
rexml (3.2.5)
6263
rspec (2.10.0)
6364
rspec-core (~> 2.10.0)
6465
rspec-expectations (~> 2.10.0)
@@ -75,7 +76,8 @@ GEM
7576
multi_json (~> 1.0)
7677
rubyzip
7778
term-ansicolor (1.0.7)
78-
xml-simple (1.1.5)
79+
xml-simple (1.1.9)
80+
rexml
7981
xpath (0.1.4)
8082
nokogiri (~> 1.3)
8183

bigbluebutton-api-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
22

33
Gem::Specification.new do |s|
44
s.name = "bigbluebutton-api-ruby"
5-
s.version = "1.7.0"
5+
s.version = "1.8.0"
66
s.licenses = ["MIT"]
77
s.extra_rdoc_files = ["README.md", "LICENSE", "LICENSE_003", "CHANGELOG.md"]
88
s.summary = "BigBlueButton integration for ruby"

0 commit comments

Comments
 (0)