-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Support toggling experimental features by environment. Defaults to false. * Add experimental feature to toggle search mode for testing the new search. * Add an experimental search type to improve query efficiency - Adds a new experimental search option to allow reviewers to toggle between "classic" and "experimental" search mode. This is not a permanent or customer-facing UX component. - Implements a new search mode that can be selected; only has an effect when searching by name. This new mode reduces request times by about 60% and provides more accurate results. * Add an experimental search type to improve query efficiency - Adds a new experimental search option to allow reviewers to toggle between "classic" and "experimental" search mode. This is not a permanent or customer-facing UX component. - Implements a new search mode that can be selected; only has an effect when searching by name. This new mode reduces request times by about 60% and provides more accurate results. * [Bot] Update version to 2.0.12 Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
2ba6a29
commit 3780d16
Showing
23 changed files
with
708 additions
and
246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
ARG BASE_VERSION=latest | ||
FROM ghcr.io/uwit-iam/uw-saml-poetry:${BASE_VERSION} as poetry-base | ||
RUN apt-get update && apt-get -y install gcc | ||
ARG FINGERPRINT="" | ||
WORKDIR /app | ||
COPY poetry.lock pyproject.toml ./ | ||
ENV PATH="$POETRY_HOME/bin:$PATH" \ | ||
UW_HUSKY_DIRECTORY_BASE_FINGERPRINT=${FINGERPRINT} | ||
RUN poetry install | ||
RUN poetry install --no-root --no-interaction && apt-get -y remove gcc && apt-get -y autoremove |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.