Skip to content

Releases: kyleboe/zoom_rb

1.1.2

06 Jul 20:48
4514f2e
Compare
Choose a tag to compare

What's Changed

  • Check response is a Hash by @Tekkon in #421
  • KMP-3232: ServerToServerOAuth client by @Tekkon in #423
  • Let webinars update API accepts language interpretation in settings by @beinghaziq in #424

New Contributors

Full Changelog: v1.1.1...v1.1.2

1.1.1

24 Feb 21:48
43e1c2c
Compare
Choose a tag to compare

Fixes

  • Use correct "question_and_answer" API spec
  • Raise a Zoom::Error exception when HTTP status is at or above 400
  • Avoid SimpleCov error by making the gemspec permissive to newer versions

1.1.0

11 Feb 22:04
bd96fea
Compare
Choose a tag to compare

New features

1.0.2

20 Jan 17:35
adff372
Compare
Choose a tag to compare

Fixes:

  • Fix meeting_recording_get endpoint.

1.0.1

15 Jan 00:23
ce82b81
Compare
Choose a tag to compare

Fixes:

  • Fix OAuth requests in Zoom::Actions::Token.

1.0.0

18 Dec 00:40
6eb9d6a
Compare
Choose a tag to compare

The 1.0 release and a major refactor of all endpoint definitions.

Breaking Change

  • The user_create endpoint now requires its arguments to match the actual Zoom API.
    This is done to simplify the code and encourage consistency.
    This means that instead of passing:
    {
      action: 'create',
      email: '[email protected]',
      type: 1,
      first_name: 'Zoomie',
      last_name: 'Userton',
      password: 'testerino'
    }
    
    You will instead have to pass:
    {
      action: 'create',
      user_info: {
        email: '[email protected]',
        type: 1,
        first_name: 'Zoomie',
        last_name: 'Userton',
        password: 'testerino'
      }
    }
    
    Zoom API reference for user creation: https://marketplace.zoom.us/docs/api-reference/zoom-api/users/usercreate

New features

  • Greatly simplified new syntax when adding endpoints. This reduces repetition and makes it easier.
  • On user_settings_get, permit option and custom_query_fields.
  • Add group_create and group_update.

Merge pull request #387 from hintmedia/v0.11.0

22 Jul 21:37
49ed270
Compare
Choose a tag to compare

0.11.0

This is the first CHANGELOG entry.

New features:

  • A lot of new endpoints

Fixes:

  • Update README to say require 'zoom'
  • Fix a typo in the README

Misc:

  • Update gems
  • Update bundler to 2.2
  • Update Ruby to 2.7