Skip to content

Commit

Permalink
chore(CHANGELOG.md): add entry
Browse files Browse the repository at this point in the history
  • Loading branch information
softvar committed Jan 23, 2022
1 parent 8d3c9d1 commit f4fecab
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.28.1] - 2022-01-23

### Changed

- Fix issue when `nil` is passed as `options` for the `track` API. Fixes #5.

## [1.28.0] - 2021-12-23

### Changed

- In case you want to opt out of tracking by VWO, simply call the `set_opt_out` API. This will exclude all the users from any kind of tracking by VWO. This is useful when you just want to make the VWO SDK ineffective without actually removing the associated code.

`set_opt_out` API will also remove unwanted memory footprint by destructing all the instance variables. Calling any other API after this will not be effective i.e. no decision-making or impression would be made to VWO.

```ruby
vwo_client_instance.set_opt_out()
```

If you want to opt-in again for tracking by VWO SDK, reinitialize the SDK with the latest settings.

## [1.25.0] - 2021-12-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion lib/vwo/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module CONSTANTS
HTTP_PROTOCOL = 'http://'
HTTPS_PROTOCOL = 'https://'
URL_NAMESPACE = '6ba7b811-9dad-11d1-80b4-00c04fd430c8'
SDK_VERSION = '1.28.0'
SDK_VERSION = '1.28.1'
SDK_NAME = 'ruby'
VWO_DELIMITER = '_vwo_'
MAX_EVENTS_PER_REQUEST = 5000
Expand Down

0 comments on commit f4fecab

Please sign in to comment.