-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1276 from dpc-sdp/release/v2.13.0
Release/v2.13.0
- Loading branch information
Showing
66 changed files
with
948 additions
and
241 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,5 +1,45 @@ | ||
# Changelog | ||
|
||
## v2.13.0 | ||
|
||
[compare changes](https://github.com/dpc-sdp/ripple-framework/compare/v2.12.0...v2.13.0) | ||
|
||
|
||
### 🚀 Enhancements | ||
|
||
- **@dpc-sdp/nuxt-ripple:** Add custom content rating text ([bdce60ca3](https://github.com/dpc-sdp/ripple-framework/commit/bdce60ca3)) | ||
- **@dpc-sdp/ripple-ui-core:** Make sure all table content is rtl ([7cc2831e4](https://github.com/dpc-sdp/ripple-framework/commit/7cc2831e4)) | ||
- **@dpc-sdp/nuxt-ripple:** Add fallback for legacy tide versions ([28d0cdce5](https://github.com/dpc-sdp/ripple-framework/commit/28d0cdce5)) | ||
- **@dpc-sdp/ripple-ui-core:** Support cell alignment ([63766f5cd](https://github.com/dpc-sdp/ripple-framework/commit/63766f5cd)) | ||
- ✨ create sdp-core content type pkg ([bb0a519a9](https://github.com/dpc-sdp/ripple-framework/commit/bb0a519a9)) | ||
- **@dpc-sdp/ripple-tide-search:** Add siteSearchContentTypes featureFlag ([1d2ab6f79](https://github.com/dpc-sdp/ripple-framework/commit/1d2ab6f79)) | ||
- **@dpc-sdp/ripple-tide-search:** Allow individual content types to be toggled on or off ([4cb50a565](https://github.com/dpc-sdp/ripple-framework/commit/4cb50a565)) | ||
- **@dpc-sdp/ripple-tide-search:** Allow address search function to be customised via JSON ([695b18cd1](https://github.com/dpc-sdp/ripple-framework/commit/695b18cd1)) | ||
|
||
### 🩹 Fixes | ||
|
||
- **@dpc-sdp/ripple-tide-search:** Add field_redirect_website check ([e6418d1c2](https://github.com/dpc-sdp/ripple-framework/commit/e6418d1c2)) | ||
- **@dpc-sdp/nuxt-ripple-analytics:** Add fallback origin in dataLayer for relative URLs ([76ee3d1de](https://github.com/dpc-sdp/ripple-framework/commit/76ee3d1de)) | ||
- **@dpc-sdp/ripple-tide-search:** Clear geolocation button errors on search or reset ([15e916abf](https://github.com/dpc-sdp/ripple-framework/commit/15e916abf)) | ||
|
||
### 🏡 Chore | ||
|
||
- **@dpc-sdp/ripple-ui-core:** Cleanup some console/linting warnings ([eb9311e4c](https://github.com/dpc-sdp/ripple-framework/commit/eb9311e4c)) | ||
- Update canary action to publish on release branches ([5aa2fec52](https://github.com/dpc-sdp/ripple-framework/commit/5aa2fec52)) | ||
- Remove develop branch from canary publish ([5542fe498](https://github.com/dpc-sdp/ripple-framework/commit/5542fe498)) | ||
|
||
### ✅ Tests | ||
|
||
- **nuxt-app:** Adding tests for analytics events ([33a499424](https://github.com/dpc-sdp/ripple-framework/commit/33a499424)) | ||
- **nuxt-app:** Adding test for field_redirect_website support ([badd972b2](https://github.com/dpc-sdp/ripple-framework/commit/badd972b2)) | ||
|
||
### ❤️ Contributors | ||
|
||
- Jeffrey Dowdle <[email protected]> | ||
- Dylankelly <[email protected]> | ||
- David Featherston <[email protected]> | ||
- Jason Smith <[email protected]> | ||
|
||
## v2.12.0 | ||
|
||
[compare changes](https://github.com/dpc-sdp/ripple-framework/compare/v2.11.1...v2.12.0) | ||
|
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Feature: Custom collection map component | ||
|
||
I want to display a map of features from an indexed data pipeline | ||
|
||
Background: | ||
Given the site endpoint returns fixture "/site/vic" with status 200 | ||
And the search autocomplete request is stubbed with "/search-listing/suggestions/none" fixture | ||
Given I am using a "macbook-16" device | ||
Given the "/api/tide/elasticsearch/elasticsearch_index_develop_node/_search" aggregation request is stubbed with fixture "/map-table/vsba/aggregations" and status 200 as alias "aggReq" | ||
Given the "/test-map-shape-layer" network request is stubbed with fixture "/maps/sample-shapes" | ||
| method | status | | ||
| GET | 200 | | ||
Given the "https://base.maps.vic.gov.au/service*" network request is stubbed with fixture "/maps/service.png" | ||
| method | status | | ||
| GET | 200 | | ||
|
||
@mockserver | ||
Scenario: The geolocate button is hidden when not enabled | ||
Given I load the page fixture with "/maps/basic-page" | ||
Given the geolocation button is not enabled | ||
And the page endpoint for path "/map" returns the loaded fixture | ||
And the "/api/tide/elasticsearch/elasticsearch_index_develop_node/_search" network request is delayed by 1000 milliseconds and stubbed with fixture "/site/search-response", status 200 and alias "searchReq" | ||
Given I visit the page "/map" | ||
|
||
Then the geolocate button is hidden | ||
|
||
@mockserver | ||
Scenario: The geolocate button is shown when enabled | ||
Given I load the page fixture with "/maps/basic-page" | ||
Given the geolocation button is enabled | ||
And the page endpoint for path "/map" returns the loaded fixture | ||
And the "/api/tide/elasticsearch/elasticsearch_index_develop_node/_search" network request is delayed by 1000 milliseconds and stubbed with fixture "/site/search-response", status 200 and alias "searchReq" | ||
Given I visit the page "/map" | ||
Then the geolocate button is displayed |
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,14 @@ | ||
Feature: Analytics | ||
|
||
Background: | ||
Given the site endpoint returns fixture "/site/reference" with status 200 | ||
|
||
@mockserver | ||
Scenario: DataLayer events | ||
Given the site endpoint returns fixture "/site/reference" with status 200 | ||
And the page endpoint for path "/" returns fixture "/landingpage/home" with status 200 | ||
Given I visit the page "/" | ||
|
||
Then the dataLayer should include the following events | ||
| event | page_title | page_url | content_type | | ||
| routeChange | Demo Landing Page | / | landing_page | |
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.