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

chore(release): v4.7.4 #841

Closed
wants to merge 44 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
2e621f7
Merge pull request #749 from dequelabs/master
michael-siek Jun 13, 2023
0b15629
fix: skip unloaded iframes for all apis (#752)
straker Jun 15, 2023
5bd31fa
chore: cleanup webdriverjs tests and deps (#753)
straker Jun 15, 2023
8a9a92d
ci: auto patch-release every 2 weeks (#751)
AdnoC Jun 16, 2023
bfa2328
fix(cli): respect --exit regardless of other flags (#750)
AdnoC Jun 16, 2023
6559234
chore: add `ISSUE_TEMPLATES` (#755)
michael-siek Jun 21, 2023
ca07660
ci: auto-patch-release from public repo (#756)
AdnoC Jun 28, 2023
502b6c2
chore: Make existing ESLint warnings fail the build (#761)
stephenmathieson Jul 10, 2023
eb99c15
build: Lint and format all files (#760)
stephenmathieson Jul 10, 2023
6be181b
ci: Replace CircleCI with GitHub Actions (#759)
stephenmathieson Jul 14, 2023
6824caf
test: Make axe-core version test more robust (#767)
stephenmathieson Aug 7, 2023
d40ec13
test: fix node v20 tests (#789)
AdnoC Aug 22, 2023
377d5eb
ci: ensure tests use newly installed chromedriver and not chromedrive…
Zidious Aug 22, 2023
e78a8df
ci: add default timeouts to test suite (#795)
Zidious Aug 22, 2023
8b5d296
chore: use `latest` chromedriver where necessary (#796)
Zidious Aug 22, 2023
1433ff4
ci: update tests to run on pull requests (#787)
straker Aug 22, 2023
ada5d28
feat(cli): add --chrome-path option (#700) (#704)
sinedied Aug 22, 2023
b407c6c
fix(cli): improve error message on script timeout (#681)
not-my-profile Aug 22, 2023
60abf5e
ci: fix canary deploy sha (#797)
straker Aug 22, 2023
10cf350
fix(cli): better error message for ChromeDriver version mismatch (#680)
not-my-profile Aug 22, 2023
acf6b0f
refactor: put non-package specific tests in own dir (#799)
straker Aug 23, 2023
764ad64
ci: enable manual running of release (#772)
AdnoC Sep 5, 2023
480fb12
feat(react): export `logToConsole` fn (#812)
michael-siek Sep 12, 2023
971431a
docs(README): fix error in example script (#823)
straker Sep 14, 2023
fb86462
Update auto-patch-release.yml
dequejenn Sep 14, 2023
a3c59b7
Merge pull request #824 from dequelabs/dequejenn-patch-1
dequejenn Sep 14, 2023
4fa75a8
refactor: switch to NPM workspaces (#687)
not-my-profile Sep 18, 2023
cf2533f
docs: update development instructions for npm workspace (#832)
straker Sep 25, 2023
aa0ae64
ci: remove `bootstrap` step from deploy workflow (#834)
Zidious Sep 25, 2023
2ac1eaf
feat: Update axe-core to v4.8.2 (#835)
attest-team-ci Sep 26, 2023
2456ed6
fix: pin axe-core version to accept patch updates only (#838)
michael-siek Sep 26, 2023
06e2cdc
ci: replace lerna with standard-version for relases
michael-siek Sep 27, 2023
129660c
test
michael-siek Sep 27, 2023
34ec0d6
fix ci
michael-siek Sep 27, 2023
a8245b9
release pleasee
michael-siek Sep 27, 2023
8698ff2
release pleasee
michael-siek Sep 27, 2023
35adfa2
add config
michael-siek Sep 27, 2023
3e1b4af
fix release
michael-siek Sep 27, 2023
f92e82e
install
michael-siek Sep 27, 2023
b6013ad
test
michael-siek Sep 28, 2023
50624cc
release
michael-siek Sep 28, 2023
b9a5068
fix
michael-siek Sep 28, 2023
5c0f6c2
Merge b9a5068c6076dec53d5aeb8aa1d07f584282338f into 2456ed641781c2262…
michael-siek Sep 28, 2023
fa32788
chore(release): 4.7.4
attest-team-ci Sep 28, 2023
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
Prev Previous commit
Next Next commit
fix release
  • Loading branch information
michael-siek committed Sep 27, 2023
commit 3e1b4af018b211f1d0f436b65f845b2914e965ac
8 changes: 0 additions & 8 deletions .github/scripts/prepare_release.sh

This file was deleted.

42 changes: 34 additions & 8 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,41 @@ jobs:
name: Create release
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v3
id: release
- name: Checkout repo
uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
command: manifest
monorepo-tags: true
release-type: node
- uses: actions/checkout@v2
fetch-depth: 0
- name: Create release commit
run: |
Branch="release-$(date +%Y-%m-%d)"
git config user.name "${{ secrets.ADT_API_RELEASE_NAME }}"
git config user.email "${{ secrets.ADT_API_RELEASE_EMAIL }}"

npm run release -- --release-as ${{ github.event.inputs.releaseLevel }}
Version=$(jq -r .version ./package.json)
git commit -am "chore: release v$Version"
- name: Get version for later steps
id: get-new-version
run: echo ::set-output name=version::$(node -pe 'require("./package.json").version')
# create-pull-request has no way of setting the target branch that won't also
# get rid of all commits (aside from the release commit).
# So, we have to be on master and manually grab all the changes.
# We do that by just telling git "master is now develop (+ the release commit)".
- name: Update local master from develop
run: |
commitHash="$(git log -1 --format='%H')"
git checkout master
git reset --hard "$commitHash"
- name: Create pull request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
if: ${{ steps.release.outputs.releases_created }}
branch: release
branch-suffix: timestamp
base: master
title: 'chore: release v${{ steps.get-new-version.outputs.version }}'
# If there are any changes not already committed, they will be added to
# a commit with this as the message.
# If there are no changes no commit will be created.
commit-message: 'chore: applying release changes'
Loading
Loading