-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Connect request review button to kinto publish task fixes #2878 #3013
Conversation
"Ship", | ||
"Accepted", | ||
"Live", | ||
"Complete" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rejected?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The states listed on the current Figma spec are:
- Draft
- Requested Approval
- Rejected
- Live
- Complete
(I reordered slightly to match what I imagine the actual flow orders would be, but yeah.)
I'm fine if we need to modify the valid experiment statuses, but we should also file an issue to update the spec if we need to deviate from it so we can still maintain a source of truth in Figma.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The spec is correct, these are all the possible states any experiment in Experimenter can be in, and the set of states specific to a rapid experiment are here:
"Draft", | ||
"Review", | ||
"Ship", | ||
"Accepted", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How would we get into a Ship or Accepted state? I was imagining it’d be accepted then immediately live, wasn’t sure about the two intermediate states.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep you're exactly right, Review -> Live or Review -> Rejected.
"AUDIENCE 1", | ||
"AUDIENCE 2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guess I haven't thought of this... since this is a JSON file, how will we be able to grab these enum values from the nimbus-shared library? Unless we have some other .js file which generates the openapi-schema.json files and adds a bit of scripting flair.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The openapi-schema.json
is auto generated from the python code that implements the APIs, it's not something we manipulate by hand. The dummy constants appear here right now:
and these are what will be replaced by the values in nimbus-shared
. The API JSON will update itself automatically to reflect it.
@@ -66,14 +81,46 @@ def create(self, validated_data): | |||
{ | |||
"slug": slugify(validated_data["name"]), | |||
"owner": self.context["request"].user, | |||
"firefox_min_version": Experiment.VERSION_CHOICES[0][0], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldnt this currently just be hardcoding everything to Firefox "55.0"
, per app/experimenter/experiments/constants.py#L144?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exactly, it's a hard coded dummy value until we get Firefox versions hooked up, as I called out in the list of todos at the top of the PR 👍
@@ -1078,6 +1078,12 @@ def clone(self, name, user): | |||
|
|||
return cloned | |||
|
|||
def prepare_rapid_experiment_for_publish(self): | |||
self.status = Experiment.STATUS_ACCEPTED | |||
self.proposed_start_date = datetime.date.today() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, this reminds me... I wanted to make sure I confirmed that we have oodles of date fields in the Experimenter side. Mainly just for date that the submitter hit Save/Submit button, and the date the experiment was approved in RemoteSettings/Experimenter, and the date the experiment was set to "Live" (which I assume is the same date as approved date above).
Or more accurately, I want to know if somebody can run some queries against production to tell us what the average/median/mean times are for an experiment to actually be approved and what our outliers are (ie: an experiment that sat there for 2 weeks, or average time is 4 days, etc). I know the average will most likely be over 24 hours due to weekends and timezones, but just want to know if we can determine averages and stats.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh yeah the way we track those is through ChangeLogs. You just reminded me I need to add one for this publish step, thanks!
@@ -38,7 +38,8 @@ def update_recipe_ids_to_experiments(): | |||
|
|||
ready_to_ship_experiments = Experiment.objects.filter( | |||
status__in=[Experiment.STATUS_SHIP, Experiment.STATUS_ACCEPTED] | |||
) | |||
).exclude(type=Experiment.TYPE_RAPID) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should rapid experiments be excluded here too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That link doesnt' seem to work from me, which line were you referencing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gah, line 77 update_launched_experiments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh good call! I think it would do nothing since it wouldn't find anything in normandy for those slugs anyways, but it's still making unnecessary calls 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it needs a rebasin', and the Python/Django stuff is a bit out of my depth, but my other comments and concerns were all addressed.
R+ from me, I'll leave the final review to @tiftran before we merge this and I can start doing some more exhaustive testing on stage.
* Dependencies (#3036) * Bump coverage from 5.1 to 5.2 in /app/requirements (#3019) * Bump pytest-xdist from 1.32.0 to 1.33.0 in /app/requirements (#3020) * Bump @testing-library/react in /app/experimenter/static/rapid (#3023) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @testing-library/react in /app/experimenter/static/core (#3025) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3026) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.42. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3027) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.0.1 to 1.2.1. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.0.1...v1.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3028) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3029) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/eslint-plugin) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/jest from 26.0.0 to 26.0.4 in /app/experimenter/static/rapid (#3024) Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.0 to 26.0.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Revert "Bump @types/react in /app/experimenter/static/rapid (#3026)" This reverts commit da8f2ae. * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3031) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.1/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3032) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ts-jest from 26.1.1 to 26.1.2 in /app/experimenter/static/rapid (#3033) Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.1 to 26.1.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v26.1.1...v26.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3034) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3035) * Fix shared @types/react dependency Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * update readMe fixes #3039 (#3040) * update readMe fixes #3039 * tweak * added bugzilla url to serializer fixes #3016 (#3037) * added bugzilla url to serializer fixes #3016 * docs * hide bugzilla text, if no bugzilla url * formatting * tweak * tests * feedback changes * formatting * move api calls into actions fixes #2957 (#3041) * move api calls into actions fixes #2957 * remove commented out code * types * typing Co-authored-by: Jared Lockhart <[email protected]> * Connect request review button to kinto publish task fixes #2878 (#3013) * Connect request review button to kinto publish task fixes #2878 * Whoops that was just for testing * Generate changelog when publishing * Exclude rapid experiments from normandy updates * Move CSV API endpoint into V2 fixes #3045 (#3046) * Connect firefox version to V3 API fixes #3042 (#3043) * Remove hard coded dummy firefox version fixes #3051 (#3052) * Use real experiment status in rapid UI fixes #3053 (#3054) * Rename and refactor web_urls.py to urls.py fixes #2795 (#3057) * v4 public api fixes #3010 (#3048) * v4 public api fixes #3010 * docs * change to expose recipe only * docs * formatting * v4 tests * renaming * unused imports Co-authored-by: Jared Lockhart <[email protected]> * Bump lodash from 4.17.15 to 4.17.19 in /app Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]> * Use typescript-eslint parser for rapid .eslintrcjs (#3062) * clone to include pref for multi pref experiments fixes #3059 (#3061) Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]>
* Bump coverage from 5.1 to 5.2 in /app/requirements (#3019) * Bump pytest-xdist from 1.32.0 to 1.33.0 in /app/requirements (#3020) * Bump @testing-library/react in /app/experimenter/static/rapid (#3023) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @testing-library/react in /app/experimenter/static/core (#3025) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3026) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.42. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3027) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.0.1 to 1.2.1. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.0.1...v1.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3028) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3029) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/eslint-plugin) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/jest from 26.0.0 to 26.0.4 in /app/experimenter/static/rapid (#3024) Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.0 to 26.0.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Revert "Bump @types/react in /app/experimenter/static/rapid (#3026)" This reverts commit da8f2ae. * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3031) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.1/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3032) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ts-jest from 26.1.1 to 26.1.2 in /app/experimenter/static/rapid (#3033) Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.1 to 26.1.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v26.1.1...v26.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3034) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3035) * Fix shared @types/react dependency * Bump lodash from 4.17.15 to 4.17.19 in /app (#3060) * Dependencies (#3036) * Bump coverage from 5.1 to 5.2 in /app/requirements (#3019) * Bump pytest-xdist from 1.32.0 to 1.33.0 in /app/requirements (#3020) * Bump @testing-library/react in /app/experimenter/static/rapid (#3023) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @testing-library/react in /app/experimenter/static/core (#3025) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3026) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.42. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3027) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.0.1 to 1.2.1. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.0.1...v1.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3028) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3029) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/eslint-plugin) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/jest from 26.0.0 to 26.0.4 in /app/experimenter/static/rapid (#3024) Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.0 to 26.0.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Revert "Bump @types/react in /app/experimenter/static/rapid (#3026)" This reverts commit da8f2ae. * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3031) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.1/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3032) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ts-jest from 26.1.1 to 26.1.2 in /app/experimenter/static/rapid (#3033) Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.1 to 26.1.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v26.1.1...v26.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3034) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3035) * Fix shared @types/react dependency Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * update readMe fixes #3039 (#3040) * update readMe fixes #3039 * tweak * added bugzilla url to serializer fixes #3016 (#3037) * added bugzilla url to serializer fixes #3016 * docs * hide bugzilla text, if no bugzilla url * formatting * tweak * tests * feedback changes * formatting * move api calls into actions fixes #2957 (#3041) * move api calls into actions fixes #2957 * remove commented out code * types * typing Co-authored-by: Jared Lockhart <[email protected]> * Connect request review button to kinto publish task fixes #2878 (#3013) * Connect request review button to kinto publish task fixes #2878 * Whoops that was just for testing * Generate changelog when publishing * Exclude rapid experiments from normandy updates * Move CSV API endpoint into V2 fixes #3045 (#3046) * Connect firefox version to V3 API fixes #3042 (#3043) * Remove hard coded dummy firefox version fixes #3051 (#3052) * Use real experiment status in rapid UI fixes #3053 (#3054) * Rename and refactor web_urls.py to urls.py fixes #2795 (#3057) * v4 public api fixes #3010 (#3048) * v4 public api fixes #3010 * docs * change to expose recipe only * docs * formatting * v4 tests * renaming * unused imports Co-authored-by: Jared Lockhart <[email protected]> * Bump lodash from 4.17.15 to 4.17.19 in /app Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]> * Use typescript-eslint parser for rapid .eslintrcjs (#3062) * clone to include pref for multi pref experiments fixes #3059 (#3061) Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]>
…perimenter/static/rapid (#3084) * Bump coverage from 5.1 to 5.2 in /app/requirements (#3019) * Bump pytest-xdist from 1.32.0 to 1.33.0 in /app/requirements (#3020) * Bump @testing-library/react in /app/experimenter/static/rapid (#3023) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @testing-library/react in /app/experimenter/static/core (#3025) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3026) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.42. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3027) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.0.1 to 1.2.1. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.0.1...v1.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3028) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3029) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/eslint-plugin) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/jest from 26.0.0 to 26.0.4 in /app/experimenter/static/rapid (#3024) Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.0 to 26.0.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Revert "Bump @types/react in /app/experimenter/static/rapid (#3026)" This reverts commit da8f2ae. * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3031) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.1/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3032) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ts-jest from 26.1.1 to 26.1.2 in /app/experimenter/static/rapid (#3033) Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.1 to 26.1.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v26.1.1...v26.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3034) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3035) * Fix shared @types/react dependency * Bump lodash from 4.17.15 to 4.17.19 in /app (#3060) * Dependencies (#3036) * Bump coverage from 5.1 to 5.2 in /app/requirements (#3019) * Bump pytest-xdist from 1.32.0 to 1.33.0 in /app/requirements (#3020) * Bump @testing-library/react in /app/experimenter/static/rapid (#3023) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @testing-library/react in /app/experimenter/static/core (#3025) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3026) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.42. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3027) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.0.1 to 1.2.1. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.0.1...v1.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3028) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3029) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/eslint-plugin) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/jest from 26.0.0 to 26.0.4 in /app/experimenter/static/rapid (#3024) Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.0 to 26.0.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Revert "Bump @types/react in /app/experimenter/static/rapid (#3026)" This reverts commit da8f2ae. * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3031) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.1/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3032) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ts-jest from 26.1.1 to 26.1.2 in /app/experimenter/static/rapid (#3033) Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.1 to 26.1.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v26.1.1...v26.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3034) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3035) * Fix shared @types/react dependency Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * update readMe fixes #3039 (#3040) * update readMe fixes #3039 * tweak * added bugzilla url to serializer fixes #3016 (#3037) * added bugzilla url to serializer fixes #3016 * docs * hide bugzilla text, if no bugzilla url * formatting * tweak * tests * feedback changes * formatting * move api calls into actions fixes #2957 (#3041) * move api calls into actions fixes #2957 * remove commented out code * types * typing Co-authored-by: Jared Lockhart <[email protected]> * Connect request review button to kinto publish task fixes #2878 (#3013) * Connect request review button to kinto publish task fixes #2878 * Whoops that was just for testing * Generate changelog when publishing * Exclude rapid experiments from normandy updates * Move CSV API endpoint into V2 fixes #3045 (#3046) * Connect firefox version to V3 API fixes #3042 (#3043) * Remove hard coded dummy firefox version fixes #3051 (#3052) * Use real experiment status in rapid UI fixes #3053 (#3054) * Rename and refactor web_urls.py to urls.py fixes #2795 (#3057) * v4 public api fixes #3010 (#3048) * v4 public api fixes #3010 * docs * change to expose recipe only * docs * formatting * v4 tests * renaming * unused imports Co-authored-by: Jared Lockhart <[email protected]> * Bump lodash from 4.17.15 to 4.17.19 in /app Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]> * Use typescript-eslint parser for rapid .eslintrcjs (#3062) * clone to include pref for multi pref experiments fixes #3059 (#3061) Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]> * Bump @babel/plugin-transform-runtime in /app/experimenter/static/rapid Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) from 7.10.3 to 7.10.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.10.5/packages/babel-plugin-transform-runtime) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]>
* Bump jedi from 0.17.1 to 0.17.2 in /app/requirements (#3070) * Bump regex from 2020.6.8 to 2020.7.14 in /app/requirements (#3071) * Bump cryptography from 2.9.2 to 3.0 in /app/requirements (#3072) * Bump @babel/plugin-proposal-decorators in /app/experimenter/static/core (#3073) * Bump @testing-library/jest-dom in /app/experimenter/static/core (#3083) * Bump @types/jest from 26.0.0 to 26.0.5 in /app/experimenter/static/rapid (#3074) * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3077) * Bump ts-jest from 26.1.2 to 26.1.3 in /app/experimenter/static/rapid (#3080) * Bump @babel/core from 7.10.3 to 7.10.5 in /app/experimenter/static/core (#3076) * Bump @testing-library/react in /app/experimenter/static/core (#3078) * Bump eslint from 7.3.1 to 7.5.0 in /app/experimenter/static/rapid (#3082) * Bump eslint from 7.3.1 to 7.5.0 in /app/experimenter/static/core (#3081) * Bump @babel/plugin-transform-runtime from 7.10.3 to 7.10.5 in /app/experimenter/static/rapid (#3084) * Bump coverage from 5.1 to 5.2 in /app/requirements (#3019) * Bump pytest-xdist from 1.32.0 to 1.33.0 in /app/requirements (#3020) * Bump @testing-library/react in /app/experimenter/static/rapid (#3023) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @testing-library/react in /app/experimenter/static/core (#3025) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3026) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.42. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3027) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.0.1 to 1.2.1. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.0.1...v1.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3028) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3029) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/eslint-plugin) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/jest from 26.0.0 to 26.0.4 in /app/experimenter/static/rapid (#3024) Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.0 to 26.0.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Revert "Bump @types/react in /app/experimenter/static/rapid (#3026)" This reverts commit da8f2ae. * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3031) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.1/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3032) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ts-jest from 26.1.1 to 26.1.2 in /app/experimenter/static/rapid (#3033) Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.1 to 26.1.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v26.1.1...v26.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3034) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3035) * Fix shared @types/react dependency * Bump lodash from 4.17.15 to 4.17.19 in /app (#3060) * Dependencies (#3036) * Bump coverage from 5.1 to 5.2 in /app/requirements (#3019) * Bump pytest-xdist from 1.32.0 to 1.33.0 in /app/requirements (#3020) * Bump @testing-library/react in /app/experimenter/static/rapid (#3023) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @testing-library/react in /app/experimenter/static/core (#3025) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3026) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.42. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3027) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.0.1 to 1.2.1. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.0.1...v1.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3028) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3029) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/eslint-plugin) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/jest from 26.0.0 to 26.0.4 in /app/experimenter/static/rapid (#3024) Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.0 to 26.0.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Revert "Bump @types/react in /app/experimenter/static/rapid (#3026)" This reverts commit da8f2ae. * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3031) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.1/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3032) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ts-jest from 26.1.1 to 26.1.2 in /app/experimenter/static/rapid (#3033) Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.1 to 26.1.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v26.1.1...v26.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3034) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3035) * Fix shared @types/react dependency Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * update readMe fixes #3039 (#3040) * update readMe fixes #3039 * tweak * added bugzilla url to serializer fixes #3016 (#3037) * added bugzilla url to serializer fixes #3016 * docs * hide bugzilla text, if no bugzilla url * formatting * tweak * tests * feedback changes * formatting * move api calls into actions fixes #2957 (#3041) * move api calls into actions fixes #2957 * remove commented out code * types * typing Co-authored-by: Jared Lockhart <[email protected]> * Connect request review button to kinto publish task fixes #2878 (#3013) * Connect request review button to kinto publish task fixes #2878 * Whoops that was just for testing * Generate changelog when publishing * Exclude rapid experiments from normandy updates * Move CSV API endpoint into V2 fixes #3045 (#3046) * Connect firefox version to V3 API fixes #3042 (#3043) * Remove hard coded dummy firefox version fixes #3051 (#3052) * Use real experiment status in rapid UI fixes #3053 (#3054) * Rename and refactor web_urls.py to urls.py fixes #2795 (#3057) * v4 public api fixes #3010 (#3048) * v4 public api fixes #3010 * docs * change to expose recipe only * docs * formatting * v4 tests * renaming * unused imports Co-authored-by: Jared Lockhart <[email protected]> * Bump lodash from 4.17.15 to 4.17.19 in /app Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]> * Use typescript-eslint parser for rapid .eslintrcjs (#3062) * clone to include pref for multi pref experiments fixes #3059 (#3061) Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]> * Bump @babel/plugin-transform-runtime in /app/experimenter/static/rapid Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) from 7.10.3 to 7.10.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.10.5/packages/babel-plugin-transform-runtime) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]>
* Bump jedi from 0.17.1 to 0.17.2 in /app/requirements (#3070) * Bump regex from 2020.6.8 to 2020.7.14 in /app/requirements (#3071) * Bump cryptography from 2.9.2 to 3.0 in /app/requirements (#3072) * Bump @babel/plugin-proposal-decorators in /app/experimenter/static/core (#3073) * Bump @testing-library/jest-dom in /app/experimenter/static/core (#3083) * Bump @types/jest from 26.0.0 to 26.0.5 in /app/experimenter/static/rapid (#3074) * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3077) * Bump ts-jest from 26.1.2 to 26.1.3 in /app/experimenter/static/rapid (#3080) * Bump @babel/core from 7.10.3 to 7.10.5 in /app/experimenter/static/core (#3076) * Bump @testing-library/react in /app/experimenter/static/core (#3078) * Bump eslint from 7.3.1 to 7.5.0 in /app/experimenter/static/rapid (#3082) * Bump eslint from 7.3.1 to 7.5.0 in /app/experimenter/static/core (#3081) * Bump @babel/plugin-transform-runtime from 7.10.3 to 7.10.5 in /app/experimenter/static/rapid (#3084) * Bump coverage from 5.1 to 5.2 in /app/requirements (#3019) * Bump pytest-xdist from 1.32.0 to 1.33.0 in /app/requirements (#3020) * Bump @testing-library/react in /app/experimenter/static/rapid (#3023) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @testing-library/react in /app/experimenter/static/core (#3025) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3026) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.42. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3027) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.0.1 to 1.2.1. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.0.1...v1.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3028) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3029) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/eslint-plugin) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/jest from 26.0.0 to 26.0.4 in /app/experimenter/static/rapid (#3024) Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.0 to 26.0.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Revert "Bump @types/react in /app/experimenter/static/rapid (#3026)" This reverts commit da8f2ae. * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3031) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.1/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3032) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ts-jest from 26.1.1 to 26.1.2 in /app/experimenter/static/rapid (#3033) Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.1 to 26.1.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v26.1.1...v26.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3034) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3035) * Fix shared @types/react dependency * Bump lodash from 4.17.15 to 4.17.19 in /app (#3060) * Dependencies (#3036) * Bump coverage from 5.1 to 5.2 in /app/requirements (#3019) * Bump pytest-xdist from 1.32.0 to 1.33.0 in /app/requirements (#3020) * Bump @testing-library/react in /app/experimenter/static/rapid (#3023) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @testing-library/react in /app/experimenter/static/core (#3025) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 10.3.0 to 10.4.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v10.3.0...v10.4.5) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3026) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.42. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3027) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.0.1 to 1.2.1. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.0.1...v1.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3028) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3029) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.3.0 to 3.6.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.0/packages/eslint-plugin) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/jest from 26.0.0 to 26.0.4 in /app/experimenter/static/rapid (#3024) Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.0 to 26.0.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Revert "Bump @types/react in /app/experimenter/static/rapid (#3026)" This reverts commit da8f2ae. * Bump @typescript-eslint/parser in /app/experimenter/static/rapid (#3031) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.6.1/packages/parser) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump react-bootstrap in /app/experimenter/static/core (#3032) Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases) - [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md) - [Commits](react-bootstrap/react-bootstrap@v1.2.1...v1.2.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ts-jest from 26.1.1 to 26.1.2 in /app/experimenter/static/rapid (#3033) Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.1.1 to 26.1.2. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v26.1.1...v26.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @types/react in /app/experimenter/static/rapid (#3034) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.9.35 to 16.9.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump @typescript-eslint/eslint-plugin in /app/experimenter/static/rapid (#3035) * Fix shared @types/react dependency Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * update readMe fixes #3039 (#3040) * update readMe fixes #3039 * tweak * added bugzilla url to serializer fixes #3016 (#3037) * added bugzilla url to serializer fixes #3016 * docs * hide bugzilla text, if no bugzilla url * formatting * tweak * tests * feedback changes * formatting * move api calls into actions fixes #2957 (#3041) * move api calls into actions fixes #2957 * remove commented out code * types * typing Co-authored-by: Jared Lockhart <[email protected]> * Connect request review button to kinto publish task fixes #2878 (#3013) * Connect request review button to kinto publish task fixes #2878 * Whoops that was just for testing * Generate changelog when publishing * Exclude rapid experiments from normandy updates * Move CSV API endpoint into V2 fixes #3045 (#3046) * Connect firefox version to V3 API fixes #3042 (#3043) * Remove hard coded dummy firefox version fixes #3051 (#3052) * Use real experiment status in rapid UI fixes #3053 (#3054) * Rename and refactor web_urls.py to urls.py fixes #2795 (#3057) * v4 public api fixes #3010 (#3048) * v4 public api fixes #3010 * docs * change to expose recipe only * docs * formatting * v4 tests * renaming * unused imports Co-authored-by: Jared Lockhart <[email protected]> * Bump lodash from 4.17.15 to 4.17.19 in /app Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]> * Use typescript-eslint parser for rapid .eslintrcjs (#3062) * clone to include pref for multi pref experiments fixes #3059 (#3061) Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]> * Bump @babel/plugin-transform-runtime in /app/experimenter/static/rapid Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) from 7.10.3 to 7.10.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.10.5/packages/babel-plugin-transform-runtime) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: Tif Tran <[email protected]> Co-authored-by: Bhushan Borole <[email protected]> * Bump @fortawesome/fontawesome-free in /app/experimenter/static/core (#3123) * Bump fontsource-fira-sans in /app/experimenter/static/core (#3121) * Bump cffi from 1.14.0 to 1.14.1 in /app/requirements (#3109) * Bump urllib3 from 1.25.9 to 1.25.10 in /app/requirements (#3110) * Bump tblib from 1.6.0 to 1.7.0 in /app/requirements (#3111) * Bump parso from 0.7.0 to 0.7.1 in /app/requirements (#3112) * Bump coverage from 5.2 to 5.2.1 in /app/requirements (#3113) * Bump @testing-library/react in /app/experimenter/static/rapid (#3114) * Bump eslint-plugin-react in /app/experimenter/static/rapid (#3116) * Bump react-select-event in /app/experimenter/static/rapid (#3117) * Bump react-bootstrap in /app/experimenter/static/core (#3119) * Bump eslint-plugin-jest in /app/experimenter/static/core (#3120) * Bump eslint-plugin-react in /app/experimenter/static/core (#3122) * Bump @testing-library/jest-dom in /app/experimenter/static/rapid (#3118) * Bump typescript from 3.9.5 to 3.9.7 in /app/experimenter/static/rapid (#3115) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jared Lockhart <[email protected]> Co-authored-by: Bhushan Borole <[email protected]>
Okay there's a lot in here!!
There's a bunch of hard coded assumptions
Firefox Version
field for Nimbus #2948So we'll have to update a bunch of things after this lands.
But this takes care of the basics: