-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Version 1.14.0 ### Features - Added an `environment` field to support consumer auth in Sandbox (#1597) - Added support for search duration metrics on desktop and mobile (#1677, #1678, #1684, #1729) - Added support for passing Answers Agents in the HTTP header (#1686) - Added support for adding custom autocomplete prompts (#1655, #1699) - Added support for number range facets (#1707) - Added additional params to `formatRichText` for RTF truncation support (#1713, #1714) ### Changes - Updated the `directAnswers` component data to include the searcher (#1596) - Updated the README to reflect all required fields for `FilterSearch` (#1598) - Changed `FilterSearchResponse` to match the updated Core model (#1599) - Updated map controls to match the Theme (#1648) - Removed unused `verticalKey` config from `Facets` and `FilterBox` (#1724) ### Bug Fixes - Updated pin label to ensure correct ordering with card ordinal (#1643) - Fixed loading indicator in Safari and IE11 (#1650) - Only display voice search icon on mobile when supported (#1662) - Updated `redirectUrl` URL construction to prioritize user-specified params (#1667) - Updated to allow both Google and MabBox maps on the same page (#1687) - Updated to set the SEARCH_COMPLETE state if an API error occurs (#1702) - Moved the `aria-expanded` attribute to autocomplete text inputs (#1704) - Updated `constructRedirectUrl` to handle relative links and ensure IE support (#1733) - Modified tab url based on parent url to support correct iframe tab navigation (#1731)
- Loading branch information
Showing
340 changed files
with
32,886 additions
and
144,745 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
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,5 +1,6 @@ | ||
{ | ||
"src": ["tests/acceptance/acceptancesuites/*.js", "!tests/acceptance/acceptancesuites/searchbaronlysuite.js"], | ||
"appCommand": "npx serve -l tcp://0.0.0.0:9999", | ||
"appInitDelay": 4000 | ||
"appInitDelay": 4000, | ||
"skipJsErrors": true | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ on: | |
branches-ignore: | ||
- develop | ||
- master | ||
- support/** | ||
- hotfix/** | ||
- feature/**-i18n | ||
- release/** | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ on: | |
push: | ||
branches: | ||
- develop | ||
- support/** | ||
- hotfix/** | ||
- feature/**-i18n | ||
- release/** | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,11 @@ | ||
name: create PR from main to develop | ||
name: Create PR from main to develop | ||
|
||
on: | ||
push: | ||
branches: [main, master] | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
jobs: | ||
createPullRequest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: extract package version | ||
id: vars | ||
run: | | ||
PACKAGE_VERSION="v$(cat ./package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g' | tr -d '[[:space:]]')" | ||
echo ::set-output name=tag::${PACKAGE_VERSION} | ||
- uses: repo-sync/pull-request@v2 | ||
with: | ||
source_branch: "${{ github.event.repository.default_branch }}" | ||
destination_branch: "develop" | ||
pr_title: "Merge ${{ github.event.repository.default_branch }} (${{ steps.vars.outputs.tag }}) into develop" | ||
pr_body: "Merge ${{ github.event.repository.default_branch }} (${{ steps.vars.outputs.tag }}) into develop" | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
call_sync_develop_and_main: | ||
uses: yext/slapshot-reusable-workflows/.github/workflows/sync_develop_and_main.yml@v1 | ||
secrets: | ||
caller_github_token: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Update package version for release & hotfix branches | ||
|
||
on: | ||
push: | ||
branches: [release/*, hotfix/*] | ||
|
||
jobs: | ||
call_version_update: | ||
uses: yext/slapshot-reusable-workflows/.github/workflows/version_update.yml@v1 | ||
secrets: | ||
caller_github_token: ${{ secrets.GITHUB_TOKEN }} |
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.