Skip to content

Commit

Permalink
chore(release): v1.1.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 8, 2024
1 parent 0f94315 commit f89460f
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 46 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## 1.1.0 (2024-04-08)


### Features

* Add workflow to include automatic deployments to staging ([#912](https://github.com/w3c/aria-at-app/issues/912)) ([226a472](https://github.com/w3c/aria-at-app/commit/226a4724e46fd01b4db29b4fc299f48dd2c39ead))
* Include workflow for automatic CHANGELOG and version bumps ([#913](https://github.com/w3c/aria-at-app/issues/913)) ([f981da8](https://github.com/w3c/aria-at-app/commit/f981da803a387e008a702ecd36466d4fd8783971))


### Bug Fixes

* return affected TestPlanReport instead of dataset for assign and remove tester ([f11234e](https://github.com/w3c/aria-at-app/commit/f11234e4565d8009af0ff06ea039a84384693bd7))


### Reverts

* Revert "Force certificates to renew" (#998) ([33d5f7b](https://github.com/w3c/aria-at-app/commit/33d5f7b0c9338894855c344170c122b0556e339d)), closes [#998](https://github.com/w3c/aria-at-app/issues/998)
* Revert "Handle focus leaving non-focusable header element backwards in FocusTrapper" ([7783342](https://github.com/w3c/aria-at-app/commit/7783342875e1325d61514a2dbf53509b4f81df17))
* Revert "Update React" ([d791f17](https://github.com/w3c/aria-at-app/commit/d791f17146707433b077821a7a759c7177487d81))
* Revert "Update React" ([944c873](https://github.com/w3c/aria-at-app/commit/944c873e9e5ac1a3672ef16f24ca56337a3efbcb))
* Revert "Update React" ([56c2208](https://github.com/w3c/aria-at-app/commit/56c2208d9fd18956cb63f8203bf01914ec3a3e77))
* Revert "Update React" ([944130e](https://github.com/w3c/aria-at-app/commit/944130e9013e9d7c5cc3aa1a5b4bf6a81cd3c456))
* Revert "Add Test Plan to Test Queue modal dialog accessibility modifications (#361)" ([8aa182d](https://github.com/w3c/aria-at-app/commit/8aa182da60d22ba76f694b5ac3fbeec65ab6ade5)), closes [#361](https://github.com/w3c/aria-at-app/issues/361)

92 changes: 46 additions & 46 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
{
"name": "aria-at-app",
"version": "1.0.0",
"description": "Run ARIA-AT tests and report results",
"main": "server/index.js",
"private": true,
"scripts": {
"a11y": "yarn workspace client lighthouse",
"dev": "npm-run-all --parallel dev:*",
"dev:client": "yarn workspace client run dev",
"dev:server": "yarn workspace server run dev",
"dev-debug": "npm-run-all --parallel dev:client dev-debug:server",
"dev-debug:server": "yarn workspace server run dev-debug",
"jest": "yarn workspaces run jest",
"prettier": "yarn workspaces run prettier",
"lint": "yarn workspaces run lint",
"test": "set -e; yarn prettier; yarn lint; yarn jest",
"db-init:dev": "bash db/scripts/db_init.sh config/dev.env",
"db-init:test": "bash db/scripts/db_init.sh config/test.env",
"db-import-tests:dev": "yarn workspace server db-import-tests:dev",
"storybook": "yarn workspaces run storybook",
"sequelize": "dotenv -e config/dev.env npx sequelize-cli",
"sequelize:test": "dotenv -e config/test.env npx sequelize-cli",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c/aria-at-app.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/w3c/aria-at-app/issues"
},
"homepage": "https://github.com/w3c/aria-at-app#readme",
"dependencies": {
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0"
},
"workspaces": [
"client",
"server",
"shared"
],
"devDependencies": {
"npm-run-all": "^4.1.5"
}
"name": "aria-at-app",
"version": "1.1.0",
"description": "Run ARIA-AT tests and report results",
"main": "server/index.js",
"private": true,
"scripts": {
"a11y": "yarn workspace client lighthouse",
"dev": "npm-run-all --parallel dev:*",
"dev:client": "yarn workspace client run dev",
"dev:server": "yarn workspace server run dev",
"dev-debug": "npm-run-all --parallel dev:client dev-debug:server",
"dev-debug:server": "yarn workspace server run dev-debug",
"jest": "yarn workspaces run jest",
"prettier": "yarn workspaces run prettier",
"lint": "yarn workspaces run lint",
"test": "set -e; yarn prettier; yarn lint; yarn jest",
"db-init:dev": "bash db/scripts/db_init.sh config/dev.env",
"db-init:test": "bash db/scripts/db_init.sh config/test.env",
"db-import-tests:dev": "yarn workspace server db-import-tests:dev",
"storybook": "yarn workspaces run storybook",
"sequelize": "dotenv -e config/dev.env npx sequelize-cli",
"sequelize:test": "dotenv -e config/test.env npx sequelize-cli",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c/aria-at-app.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/w3c/aria-at-app/issues"
},
"homepage": "https://github.com/w3c/aria-at-app#readme",
"dependencies": {
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0"
},
"workspaces": [
"client",
"server",
"shared"
],
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}

0 comments on commit f89460f

Please sign in to comment.