-
Notifications
You must be signed in to change notification settings - Fork 101
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 #90 from dequelabs/release-202008018
feat: release v4.0.0
- Loading branch information
Showing
56 changed files
with
5,457 additions
and
742 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/bash | ||
|
||
# This script will create a "global" settings file for Maven | ||
# to use for auth, then publish the project. | ||
|
||
# Fail on first error. | ||
set -e | ||
|
||
# Ensure directory exists. | ||
mkdir -p ~/.m2 | ||
|
||
echo "<settings xmlns=\"http://maven.apache.org/SETTINGS/1.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd\">" > ~/.m2/settings.xml | ||
echo " <localRepository/>" >> ~/.m2/settings.xml | ||
echo " <interactiveMode/>" >> ~/.m2/settings.xml | ||
echo " <usePluginRegistry/>" >> ~/.m2/settings.xml | ||
echo " <offline/>" >> ~/.m2/settings.xml | ||
echo " <pluginGroups/>" >> ~/.m2/settings.xml | ||
echo " <servers>" >> ~/.m2/settings.xml | ||
echo " <server>" >> ~/.m2/settings.xml | ||
echo " <id>ossrh</id>" >> ~/.m2/settings.xml | ||
echo " <username>$OSSRH_USERNAME</username>" >> ~/.m2/settings.xml | ||
echo " <password><![CDATA[$OSSRH_PASSWORD]]></password>" >> ~/.m2/settings.xml | ||
echo " </server>" >> ~/.m2/settings.xml | ||
echo " </servers>" >> ~/.m2/settings.xml | ||
echo " <profiles>" >> ~/.m2/settings.xml | ||
echo " <profile>" >> ~/.m2/settings.xml | ||
echo " <id>ossrh</id>" >> ~/.m2/settings.xml | ||
echo " <activation>" >> ~/.m2/settings.xml | ||
echo " <activeByDefault>true</activeByDefault>" >> ~/.m2/settings.xml | ||
echo " </activation>" >> ~/.m2/settings.xml | ||
echo " <properties>" >> ~/.m2/settings.xml | ||
echo " <gpg.executable>gpg2</gpg.executable>" >> ~/.m2/settings.xml | ||
echo " <gpg.passphrase>$GPG_PASSPHRASE</gpg.passphrase>" >> ~/.m2/settings.xml | ||
echo " </properties>" >> ~/.m2/settings.xml | ||
echo " </profile>" >> ~/.m2/settings.xml | ||
echo " </profiles>" >> ~/.m2/settings.xml | ||
echo " <mirrors/>" >> ~/.m2/settings.xml | ||
echo " <proxies/>" >> ~/.m2/settings.xml | ||
echo " <activeProfiles/>" >> ~/.m2/settings.xml | ||
echo "</settings>" >> ~/.m2/settings.xml | ||
|
||
chmod 0600 ~/.m2/settings.xml | ||
|
||
mvn clean deploy -DskipTests |
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,24 @@ | ||
import xml.etree.ElementTree as ET | ||
import sys | ||
|
||
ns = 'http://maven.apache.org/POM/4.0.0' | ||
ss = '-SNAPSHOT' | ||
|
||
# hack: register the namespace to avoid `.write` | ||
# from writing the `ns0` all over the place | ||
ET.register_namespace('', ns) | ||
tree = ET.parse('pom.xml') | ||
|
||
root = tree.getroot() | ||
version_node = root.find('{%s}version' % ns) | ||
|
||
assert version_node is not None, 'No <version> key' | ||
|
||
if version_node.text.endswith(ss): | ||
sys.exit() | ||
|
||
version_node.text = version_node.text + ss | ||
|
||
tree.write('pom.xml', xml_declaration = True, encoding = 'utf-8', method = 'xml') | ||
print 'Added %s to version' % ss | ||
|
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,11 +1,4 @@ | ||
<< Describe the changes >> | ||
|
||
Closes issue: | ||
|
||
## Reviewer checks | ||
|
||
**Required fields, to be filled out by PR reviewer(s)** | ||
- [ ] Follows the commit message policy, appropriate for next version | ||
- [ ] Has documentation updated, a DU ticket, or requires no documentation change | ||
- [ ] Includes new tests, or was unnecessary | ||
- [ ] Code is reviewed for security by: << Name here >> | ||
- [ ] Code is reviewed for security |
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,16 @@ | ||
name: Sync master/develop branches | ||
on: | ||
pull_request: | ||
types: [closed] | ||
branches: master | ||
jobs: | ||
create_sync_pull_request: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dequelabs/[email protected] | ||
with: | ||
github-token: \${{ secrets.GITHUB_TOKEN }} | ||
pr-title: "chore: merge master into develop" | ||
pr-reviewers: AdnoC,stephenmathieson | ||
pr-labels: chore | ||
pr-template: .github/PULL_REQUEST_TEMPLATE.md |
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,21 +1,41 @@ | ||
# [3.1.0](http://dequelabs/axe-selenium-java/compare/v3.0.0...v3.1.0) (2020-03-17) | ||
# [4.0.0](http://dequelabs/axe-core-maven-html/compare/v3.1.0...v4.0.0) (2020-08-24) | ||
|
||
|
||
### Features | ||
|
||
* ability to remove sandbox from iframes ([#86](http://dequelabs/axe-core-maven-html/issues/86)) ([9357957](http://dequelabs/axe-core-maven-html/commits/9357957a3f1e9bbf338b921e8db35c8041cf43e7)) | ||
* add ability to use list of WebElements ([#58](http://dequelabs/axe-core-maven-html/issues/58)) ([7e518f4](http://dequelabs/axe-core-maven-html/commits/7e518f47f28a7af53fb48543eba18a5b8bbaa2c8)) | ||
* add axe-core v4 ([#85](http://dequelabs/axe-core-maven-html/issues/85)) ([52b4534](http://dequelabs/axe-core-maven-html/commits/52b453465c1e2e6ac6974c84c8d83e64be2d575f)) | ||
* add a more complete API ([#75](https://github.com/dequelabs/axe-core-maven-html/pull/75)) ([2285cb9](https://github.com/dequelabs/axe-core-maven-html/commit/2285cb980f6357a2b69dbec0dfabc62740d45f4d)) | ||
|
||
### Breaking Changes | ||
|
||
* Changed package group ID to "com.deque.html.axe-core" | ||
* Renamed the Java package name to "com.deque.html.axecore.selenium" | ||
|
||
|
||
# [3.1.0](http://dequelabs/axe-core-maven-html/compare/v3.0.0...v3.1.0) (2020-03-17) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* pass axe correct context when using include+exclude ([#43](http://dequelabs/axe-selenium-java/issues/43)) ([73a5009](http://dequelabs/axe-selenium-java/commits/73a5009b22afad5243d60db5f0d751de7165519a)) | ||
* set minimum compiler source/target to java 7 ([8d19fed](http://dequelabs/axe-selenium-java/commits/8d19fedb271975b2457a8e27856a44f601b5a110)) | ||
* pass axe correct context when using include+exclude ([#43](http://dequelabs/axe-core-maven-html/issues/43)) ([73a5009](http://dequelabs/axe-core-maven-html/commits/73a5009b22afad5243d60db5f0d751de7165519a)) | ||
* set minimum compiler source/target to java 7 ([8d19fed](http://dequelabs/axe-core-maven-html/commits/8d19fedb271975b2457a8e27856a44f601b5a110)) | ||
|
||
|
||
|
||
# [3.0.0](http://dequelabs/axe-core-maven-html/compare/v2.1.0...v3.0.0) (2019-02-08) | ||
|
||
# [3.0.0](https://github.com/dequelabs/axe-selenium-java/compare/v2.1.0...v3.0.0) (2019-02-08) | ||
|
||
### Features | ||
|
||
- **aXe 3.0+:** remove references to axe.a11yCheck, bump versions of Selenium webdriver, update axe to 2.6.1 in test/resources ([43145e7](https://github.com/dequelabs/axe-selenium-java/commit/43145e7)) | ||
- add configurable script timeout ([#28](https://github.com/dequelabs/axe-selenium-java/issues/28)) ([0a7d0b9](https://github.com/dequelabs/axe-selenium-java/commit/0a7d0b9)), closes [#17](https://github.com/dequelabs/axe-selenium-java/issues/17) | ||
- update axe-core to v3.1.2 ([#23](https://github.com/dequelabs/axe-selenium-java/issues/23)) ([914a506](https://github.com/dequelabs/axe-selenium-java/commit/914a506)) | ||
* **aXe 3.0+:** remove references to axe.a11yCheck, bump versions of Selenium webdriver, update axe to 2.6.1 in test/resources ([43145e7](http://dequelabs/axe-core-maven-html/commits/43145e7e431272807017ea5bd0e29e032a55b456)) | ||
* add configurable script timeout ([#28](http://dequelabs/axe-core-maven-html/issues/28)) ([0a7d0b9](http://dequelabs/axe-core-maven-html/commits/0a7d0b9ef7520f587536caa543323b5a8e65042c)), closes [#17](http://dequelabs/axe-core-maven-html/issues/17) | ||
* update axe-core to v3.1.2 ([#23](http://dequelabs/axe-core-maven-html/issues/23)) ([914a506](http://dequelabs/axe-core-maven-html/commits/914a50693058c152891202d4fb9a764c8cbcf09b)) | ||
|
||
|
||
|
||
# 2.1.0 (2017-10-12) | ||
|
||
### BREAKING CHANGES | ||
|
||
- throw errors returned by axe-core's `run` method ([3617578](https://github.com/dequelabs/axe-selenium-java/commit/36175781a396fcbd87c146d763b67e70e208820f)) ([#27](https://github.com/dequelabs/axe-selenium-java/pull/27)) | ||
|
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.