You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.txt
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,8 @@
1
+
1.0.0 (February 25, 2025):
2
+
- Fixed the SDK language version to correctly reflect the package version when it's installed from hex.pm.
3
+
- BREAKING CHANGES:
4
+
- Renamed the `:socket_path` option to `:address` in `Split.Supervisor.start_link/1`.
5
+
1
6
0.2.0 (February 14, 2025):
2
7
- Added new variations of the get treatment functions to support evaluating flags in given flag set/s: `Split.get_treatments_by_flag_set/3`, `Split.get_treatments_by_flag_sets/3`, `Split.get_treatments_with_config_by_flag_set/3`, and `Split.get_treatments_with_config_by_flag_sets/3`.
3
8
- Updated the `:socket_path` option for `Split.Supervisor.start_link/1` to be optional, defaulting to `"/var/run/splitd.sock"`.
This SDK is designed to work with Split, the platform for controlled rollouts, which serves features to your users via feature flags to manage your complete customer experience.
@@ -36,7 +36,7 @@ Below is a simple example that describes the instantiation and most basic usage
`Split` takes a number of keyword arguments as options when starting. The following options are available:
34
34
35
-
- `:socket_path`: **OPTIONAL** The path to the splitd socket file. Default is `"/var/run/splitd.sock"`.
35
+
- `:address`: **OPTIONAL** The path to the splitd socket file. Default is `"/var/run/splitd.sock"`.
36
36
- `:pool_size`: **OPTIONAL** The size of the pool of connections to the splitd daemon. Default is the number of online schedulers in the Erlang VM (See: https://www.erlang.org/doc/apps/erts/erl_cmd.html).
37
37
- `:connect_timeout`: **OPTIONAL** The timeout in milliseconds to connect to the splitd daemon. Default is `1000`.
38
38
@@ -52,7 +52,7 @@ defmodule Split do
52
52
53
53
@typedoc"An option that can be provided when starting `Split`. See [options](#module-options) for more information."
0 commit comments