Sixpack

Latest version: v2.7.0

Safety actively analyzes 638316 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 6

2.0.1

------------------
- Bump version. [Zachary Sherman]
- Error handline, url encoding, and new failing test section. [Zachary
Sherman]
- Merge pull request 134 from seatgeek/alt-choices. [Eric Waller]

Deterministic alternative choice
- Make this version 2.0-dev. [Eric Waller]
- Change record_participation arg to prefetch. [Eric Waller]
- Merge pull request 135 from caxap/fix-pipe-attr. [Zack Kitzmiller]

StrictRedis has no attribute 'pipe'.
- StrictRedis has no attribute 'pipe'. [Maxim Kamenkov]
- Merge pull request 126 from kadoppe/fix-experiments-json. [Zack
Kitzmiller]

Fix 500 error on experiments.json API
- Fix 500 error on experiments.json API. [kadoppe]
- Merge pull request 131 from ricksaenz/rs-display-traffic-fraction.
[Zack Kitzmiller]

display traffic fraction in UI
- Display traffic fraction in UI. [Rick Saenz]
- Merge pull request 133 from davidyell/patch-1. [Jose Diaz-Gonzalez]

Update README.rst
- Update README.rst. [David Yell]

Fixed a minor typo in the readme

2.0.0

------------------
- [DOCS] update. [zackkitzmiller]
- Remove all multi-armed bandit code. [zackkitzmiller]

This was completely unnecessary, and overshadowed by the newer determinstic choice algorithm
- [TESTS] fix broken test, add test for failing traffic fraction.
[zackkitzmiller]
- Do no allow traffic fractions to be changed after an experiment has
started. [zackkitzmiller]
- Minor: save description on reset, closes 124. [zackkitzmiller]
- More tests for uniform choice. [zackkitzmiller]
- Add some comments on decisions made. [zackkitzmiller]
- Allow a no-record participation. [zackkitzmiller]
- Experiments endpoint. [zackkitzmiller]
- Kill unused code. [zackkitzmiller]
- Only use first 7 chars of UUID for deterministic algo.
[zackkitzmiller]
- Slim objectified methods. [zackkitzmiller]
- Kill client_chosen_alternative concept. [zackkitzmiller]
- Predictive alt selection, refs 132. [zackkitzmiller]
- [WEB] fix broken test from previous commit. [zackkitzmiller]
- [WEB] correctly format legacy dates, closes 130. [zackkitzmiller]
- [DELETEING] KPIs do not use a color as a separator, closes 110.
[zackkitzmiller]
- [UI] always show created at date. [zackkitzmiller]

closes 121
- [WEB] kill asset compression, closes 115. [zackkitzmiller]
- Merge pull request 122 from vslavik/master. [Zack Kitzmiller]

Fix insecure content warnings with HTTPS.
- Fix insecure content warnings with HTTPS. [Václav Slavík]

Change the fonts.googleapis.com link in layout.html to be protocol-relative.

This fixes insecure content warnings from modern browsers when running sixpack-web over HTTPS.
- Merge branch 'master' of github.com:seatgeek/sixpack. [zackkitzmiller]
- Merge pull request 120 from ainoya/fix-test-seed-method-args. [Zack
Kitzmiller]

sixpack/test/seed: fix find_or_create arguments
- Sixpack/test/seed: fix find_or_create arguments. [Naoki AINOYA]
- Closes 119. [Eric Waller]

The tests around sixpack-web aren't quite as good..
- Update README.rst. [Jack Groetzinger]
- Bump version. [zackkitzmiller]
- [INSTALLATION] don't put things in __init__.py. [zackkitzmiller]

This causes pip install to fail, as it imports sixpack before requirements are installed.
- Bump version. [zackkitzmiller]
- Fix parameter ordering. [zackkitzmiller]
- Closes 118. [Eric Waller]
- Start pulling out analysis code. [Eric Waller]
- Be consistent about using properties. [Eric Waller]
- Merge pull request 117 from seatgeek/python-api. [Eric Waller]

Refactor core logic into api.py
- Refactor core logic into api.py. [Eric Waller]

This has a few benefits:

* You can use sixpack within a python app with `sixpack.participate(...)`
* It's a bit easier to test
* It paves the way to add programmatically accessible analysis APIs which I'm thinking maybe a good way to address stuff like https://github.com/seatgeek/sixpack/pull/112
- Stop hiding the interesting data on mobile. [Eric Waller]
- Kill CSS file that was supposed to be removed in
eb1233267cf93eff848f32cfaa517050ff0133e2. [Eric Waller]

1.1.2

------------------
- Bump version. [zackkitzmiller]
- Merge pull request 116 from seatgeek/client-chosen-alternative. [Zack
Kitzmiller]

Allow clients to choose an alternative
- Allow clients to choose an alternative. [Eric Waller]

Useful for situations where you may not know if a test will be encountered until it's too late to rely on asynchronously choosing an alternative.

For example, when testing the behavior of a button, if `participate` is called when the button is setup, users that never click the button will dilute the results, thus requiring more participations to reach significance.
- Merge pull request 106 from omenar/description-utf8. [Zack
Kitzmiller]

Add support to non-ascii characters on experiment description
- Handle None values returned by HGET. [Osvaldo Mena]
- Add support to non-ascii characters on experiment description.
[Osvaldo Mena]
- Throw error on casting float. [zackkitzmiller]

1.1.1

------------------
- Bump version. [zackkitzmiller]
- Update changes. [zackkitzmiller]
- Add newline at the end of config.py. [Osvaldo Mena]
- Add Support for Redis Sentinel. [Osvaldo Mena]

Support for Redis Sentinel using redis.sentinel.SentinelConnectionPool. Can be configured either by specifiying the env vars SIXPACK_CONFIG_REDIS_SENTINEL_SERVICE_NAME and SIXPACK_CONFIG_REDIS_SENTINELS, or by specifying redis_sentinel_service_name and redis_sentinels on config.yml
- Bump version. [zackkitzmiller]

1.1.0

------------------
- [DOCS] add CHANGES.rst. [zackkitzmiller]
- Merge branch 'develop' [zackkitzmiller]
- [WEB] export should respect kpi. [zackkitzmiller]
- Document multi-armed bandit. [zackkitzmiller]

Closes 89
- Merge pull request 100 from seatgeek/traffic-dist-refactor. [Zack
Kitzmiller]

revisit traffic distribution/fraction
- Revisit traffic distribution/fraction. [zackkitzmiller]

closes 99
- Merge branch 'master' of https://github.com/hsinhoyeh/sixpack into
develop. [zackkitzmiller]
- Add ZeroDivisionError exception to avoid fatal error on calculating
g_stat. [hsinhoyeh]
- Support settings via env variables. [zackkitzmiller]

closes 98
- Merge branch 'no-yaml' of https://github.com/CypherSystems/sixpack
into CypherSystems-no-yaml. [zackkitzmiller]
- Type convertions from enviroment strings. [Otoniel Plahcinski]
- Fix testing to have no default config file. [Otoniel Plahcinski]
- Concept Code. [Otoniel Plahcinski]
- Document multi-armed bandit. [zackkitzmiller]

Closes 89
- Link iOS client. [Jose Diaz-Gonzalez]
- Added sixpack client library for iOS. [Jose Diaz-Gonzalez]
- Merge pull request 97 from b10m/master. [Zack Kitzmiller]

Added a Perl client package
- Added a Perl client package. [B10m]

1.0.5

------------------
- Merge remote-tracking branch 'origin/master' [zackkitzmiller]
- Merge pull request 94 from bnadlerjr/patch-1. [Zack Kitzmiller]

Fix typo in README.
- Fix typo in README. [Bob Nadler]
- Bump version. [zackkitzmiller]
- Allow KPI conversion after non-KPI conversion. [zackkitzmiller]

closes seatgeek/sixpack95

Page 3 of 6

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.