Skip to content
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

release v0.83.0 #1860

Merged
merged 24 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
cf580ee
Merge pull request #1846 from isomerpages/release_v0.82.0
dcshzj Mar 14, 2024
4cf837c
chore(deps-dev): bump @storybook/addon-actions from 7.1.1 to 8.0.0 (#…
dependabot[bot] Mar 14, 2024
65404c7
chore(deps): bump the npm_and_yarn group group with 2 updates (#1842)
dependabot[bot] Mar 14, 2024
20621a6
build(package-lock): bump pm to 2.0.8 to avoid legal (#1833)
seaerchin Mar 14, 2024
97d343a
chore(deps): bump react-select from 5.7.4 to 5.8.0 (#1847)
dependabot[bot] Mar 15, 2024
8bb7772
chore(deps): bump follow-redirects from 1.15.4 to 1.15.6 (#1849)
dependabot[bot] Mar 15, 2024
ea960b3
chore(deps-dev): bump @adobe/css-tools from 4.2.0 to 4.3.3 (#1837)
dependabot[bot] Mar 15, 2024
5e0fc13
chore(deps-dev): bump browserify-sign from 4.2.1 to 4.2.3 (#1836)
dependabot[bot] Mar 15, 2024
98e04d6
feat(playwright): migrate dashboard spec (#1789)
seaerchin Mar 15, 2024
21cb239
feat(e2e): migrate unlinked page tests to playwright (#1790)
seaerchin Mar 15, 2024
b1bc0da
feat(editpage): add collection page tests (#1795)
seaerchin Mar 15, 2024
ea83fa8
feat(editpage): add resource spec, remove cypress spec (#1796)
seaerchin Mar 15, 2024
e9c7381
feat(playwright): migrate (#1805)
seaerchin Mar 15, 2024
334c847
fet(admin): add release prep script (#1853)
timotheeg Mar 18, 2024
e0a8e6d
fix(accordion): styles (#1834)
kishore03109 Mar 19, 2024
f586bbd
fix(app): change service to `isomer` (#1857)
seaerchin Mar 19, 2024
c09da76
feat(tiptap): add supersub (#1855)
seaerchin Mar 19, 2024
157c906
fix(permalinks): default permalink for create (#1843)
kishore03109 Mar 19, 2024
76bc4ac
chore(validation): add validation for all routes (#1854)
seaerchin Mar 20, 2024
f3dc16c
fix(routeselector/resourceroom): remove accidental comments + fix typ…
seaerchin Mar 21, 2024
fb24a20
fix(resourceModal): sane default permalink (#1858)
kishore03109 Mar 21, 2024
3b12a98
Test/repo privatisation (#1342)
alexanderleegs Mar 21, 2024
3b84d34
fix(media): update routes (#1862)
seaerchin Mar 21, 2024
8edeeee
chore: bump version to v0.83.0
seaerchin Mar 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,8 @@ build-storybook.log
storybook-static/

# cypress
cypress.env.json
cypress.env.json
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,42 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v0.83.0](https://github.com/isomerpages/isomercms-frontend/compare/v0.83.0...v0.83.0)

- fix(media): update routes [`#1862`](https://github.com/isomerpages/isomercms-frontend/pull/1862)

#### [v0.83.0](https://github.com/isomerpages/isomercms-frontend/compare/v0.82.0...v0.83.0)

> 21 March 2024
- Test/repo privatisation [`#1342`](https://github.com/isomerpages/isomercms-frontend/pull/1342)
- fix(resourceModal): sane default permalink [`#1858`](https://github.com/isomerpages/isomercms-frontend/pull/1858)
- fix(routeselector/resourceroom): remove accidental comments + fix typo [`#1859`](https://github.com/isomerpages/isomercms-frontend/pull/1859)
- chore(validation): add validation for all routes [`#1854`](https://github.com/isomerpages/isomercms-frontend/pull/1854)
- fix(permalinks): default permalink for create [`#1843`](https://github.com/isomerpages/isomercms-frontend/pull/1843)
- feat(tiptap): add supersub [`#1855`](https://github.com/isomerpages/isomercms-frontend/pull/1855)
- fix(app): change service to `isomer` [`#1857`](https://github.com/isomerpages/isomercms-frontend/pull/1857)
- fix(accordion): styles [`#1834`](https://github.com/isomerpages/isomercms-frontend/pull/1834)
- fet(admin): add release prep script [`#1853`](https://github.com/isomerpages/isomercms-frontend/pull/1853)
- feat(playwright): migrate [`#1805`](https://github.com/isomerpages/isomercms-frontend/pull/1805)
- feat(editpage): add resource spec, remove cypress spec [`#1796`](https://github.com/isomerpages/isomercms-frontend/pull/1796)
- feat(editpage): add collection page tests [`#1795`](https://github.com/isomerpages/isomercms-frontend/pull/1795)
- feat(e2e): migrate unlinked page tests to playwright [`#1790`](https://github.com/isomerpages/isomercms-frontend/pull/1790)
- feat(playwright): migrate dashboard spec [`#1789`](https://github.com/isomerpages/isomercms-frontend/pull/1789)
- chore(deps-dev): bump browserify-sign from 4.2.1 to 4.2.3 [`#1836`](https://github.com/isomerpages/isomercms-frontend/pull/1836)
- chore(deps-dev): bump @adobe/css-tools from 4.2.0 to 4.3.3 [`#1837`](https://github.com/isomerpages/isomercms-frontend/pull/1837)
- chore(deps): bump follow-redirects from 1.15.4 to 1.15.6 [`#1849`](https://github.com/isomerpages/isomercms-frontend/pull/1849)
- chore(deps): bump react-select from 5.7.4 to 5.8.0 [`#1847`](https://github.com/isomerpages/isomercms-frontend/pull/1847)
- build(package-lock): bump pm to 2.0.8 to avoid legal [`#1833`](https://github.com/isomerpages/isomercms-frontend/pull/1833)
- chore(deps): bump the npm_and_yarn group group with 2 updates [`#1842`](https://github.com/isomerpages/isomercms-frontend/pull/1842)
- chore(deps-dev): bump @storybook/addon-actions from 7.1.1 to 8.0.0 [`#1841`](https://github.com/isomerpages/isomercms-frontend/pull/1841)
- backport v0.82.0 [`#1846`](https://github.com/isomerpages/isomercms-frontend/pull/1846)
- chore: bump version to v0.83.0 [`f981939`](https://github.com/isomerpages/isomercms-frontend/commit/f9819395c2078f3c21e639c7fc68d40abae4c9dc)

#### [v0.82.0](https://github.com/isomerpages/isomercms-frontend/compare/v0.81.0...v0.82.0)

> 14 March 2024
- chore(deps-dev): bump @babel/traverse from 7.22.8 to 7.23.2 [`#1599`](https://github.com/isomerpages/isomercms-frontend/pull/1599)
- deps: fix package-lock.json [`#1840`](https://github.com/isomerpages/isomercms-frontend/pull/1840)
- fix: package.json to reduce vulnerabilities [`#1816`](https://github.com/isomerpages/isomercms-frontend/pull/1816)
Expand All @@ -21,6 +55,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- feat(app): add link between traces + rum [`#1832`](https://github.com/isomerpages/isomercms-frontend/pull/1832)
- fix(no broken link): not reporting duplicate permalink [`#1831`](https://github.com/isomerpages/isomercms-frontend/pull/1831)
- 0.81.0 [`#1830`](https://github.com/isomerpages/isomercms-frontend/pull/1830)
- chore: bump version to v0.82.0 [`566e5c8`](https://github.com/isomerpages/isomercms-frontend/commit/566e5c8190d4cbef3ed0d9e73ddbccd4006a6c74)

#### [v0.81.0](https://github.com/isomerpages/isomercms-frontend/compare/v0.80.0...v0.81.0)

Expand Down
110 changes: 0 additions & 110 deletions cypress/e2e/dashboard.spec.ts

This file was deleted.

Loading
Loading