Skip to content

Commit

Permalink
javascript: update dependencies, security updates
Browse files Browse the repository at this point in the history
- javascript: update to axe-core 4.9.1
- javascript: update to jsdom 24.1.0
  • Loading branch information
dkl3in committed Jul 2, 2024
1 parent 18a4d80 commit ab7afc4
Show file tree
Hide file tree
Showing 6 changed files with 110 additions and 61 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

## Unreleased

### Changed
- javascript: update dependencies, security updates
- javascript: update to axe-core 4.9.1
- javascript: update to jsdom 24.1.0

## 0.2.11 - 2024-04-26

### Changed
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pluginGroup = com.github.bucherfa.accessibilitylinter
pluginName = accessibility-linter
# SemVer format -> https://semver.org
pluginVersion = 0.2.11
pluginVersion = 0.2.12

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down
128 changes: 70 additions & 58 deletions src/main/javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/main/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"author": "",
"license": "ISC",
"dependencies": {
"axe-core": "^4.9.0",
"jsdom": "^24.0.0"
"axe-core": "^4.9.1",
"jsdom": "^24.1.0"
},
"devDependencies": {
"jest": "^29.7.0"
Expand Down
12 changes: 12 additions & 0 deletions src/test/testData/html/error.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>title for main content area</h1>
</body>
</html>
20 changes: 20 additions & 0 deletions src/test/testData/html/solved.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<main>
<h1>title for main content area</h1>
<section aria-labelledby="region1">
<h2 id="region1">title for region area 1</h2>
</section>
<section aria-labelledby="region2">
<h2 id="region2">title for region area 2</h2>
</section>
</main>
</body>
</html>

0 comments on commit ab7afc4

Please sign in to comment.