Skip to content

Commit 4fdfa7e

Browse files
authored
Add OpenEdge 12.8.11 test target (#484)
1 parent 68e7951 commit 4fdfa7e

7 files changed

Lines changed: 20 additions & 16 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
oe-version: [ 12.2.12, 12.8.1, 12.8.9 ]
48+
oe-version: [ 12.2.12, 12.8.1, 12.8.11 ]
4949
runs-on: ubuntu-latest
5050
container:
5151
image: kherring/ablunit-test-runner:${{ matrix.oe-version }}

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
# [1.4.5](https://github.com/kenherring/ablunit-test-runner/releases/tag/1.4.5) - 2026-02-21 (pre-release)
1+
# [1.4.7](https://github.com/kenherring/ablunit-test-runner/releases/tag/1.4.7) - 2026-03-14 (pre-release)
22

3-
* Fix intermittent test failures (#477)
3+
* Add OpenEdge 12.8.11 test target (#484)
4+
* Bump typescript-eslint from 8.56.0 to 8.56.1 (#482)
5+
* Improve intermittent test failures (#477)
46
* npm audit fix (#474)
57
* Bump qs from 6.14.0 to 6.14.1 in the npm_and_yarn group across 1 directory (#468)
68
* Bump lodash from 4.17.21 to 4.17.23 in /dummy-ext in the npm_and_yarn group across 1 directory (#470)
@@ -9,7 +11,7 @@
911
* Bump esbuild from 0.27.0 to 0.27.1 (#457)
1012
* Bump jws from 3.2.2 to 3.2.3 in the npm_and_yarn group across 1 directory (#455)
1113

12-
**Full Changelog**: [1.4.4...1.4.5](https://github.com/kenherring/ablunit-test-runner/compare/1.4.4...1.4.5)
14+
**Full Changelog**: [1.4.4...1.4.7](https://github.com/kenherring/ablunit-test-runner/compare/1.4.5...1.4.7)
1315

1416
# [1.4.4](https://github.com/kenherring/ablunit-test-runner/releases/tag/1.4.4) - 2025-11-26 (pre-release)
1517

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The [ABLUnit Test Runner](https://github.com/kenherring/ablunit-test-runner/) ex
2424

2525
## 📝 Supported OpenEdge Versions
2626

27-
This project was developed using the [Progress OpenEdge Developers Kit: Classroom Edition](https://www.progress.com/openedge/classroom-edition). It was primarily tested with 12.8.1, but the unit tests are run for 12.2 and 12.8.9 during the CI builds too.
27+
This project was developed using the [Progress OpenEdge Developers Kit: Classroom Edition](https://www.progress.com/openedge/classroom-edition). It was primarily tested with 12.8.1, but the unit tests are run for 12.2 and 12.8.11 during the CI builds too.
2828

2929
## ⛺ Configuration
3030

docker/docker_build.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -eou pipefail
44
usage () {
55
echo "
66
usage: $0 [-p] [-n] [-h]
7-
[-o < 12.2.12 | 12.8.1 | 12.8.9 | ... >]
7+
[-o < 12.2.12 | 12.8.1 | 12.8.11 | ... >]
88
[-N < 20 | 22 | 24 | ... >]
99
options:
1010
-p push docker images to dockerhub after build
@@ -50,7 +50,8 @@ initialize () {
5050
# DOCKER_TAGS+=('12.8.6')
5151
# DOCKER_TAGS+=('12.8.7')
5252
# DOCKER_TAGS+=('12.8.8')
53-
DOCKER_TAGS+=('12.8.9')
53+
# DOCKER_TAGS+=('12.8.9')
54+
DOCKER_TAGS+=('12.8.11')
5455
fi
5556

5657
mkdir -p docker/.rssw
@@ -70,11 +71,11 @@ set_node_version_for_tag () {
7071
elif [ "$DOCKER_TAG" = 12.8.1 ]; then
7172
## Most Recent LTS
7273
NODE_VERSION_FOR_TAG=22
73-
elif [ "$DOCKER_TAG" = 12.8.9 ]; then
74-
## Latest
74+
elif [ "$DOCKER_TAG" = 12.8.11 ]; then
75+
## Most Recent LTS
7576
NODE_VERSION_FOR_TAG=24
7677
else
77-
NODE _VERSION_FOR_TAG="$(node --version)"
78+
NODE_VERSION_FOR_TAG="$(node --version)"
7879
NODE_VERSION_FOR_TAG=${NODE_VERSION_FOR_TAG:1}
7980
fi
8081

docker/run_tests.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -eou pipefail
33

44
usage () {
55
echo "
6-
usage: $0 [ -o (12.2.12 | 12.7.0 | 12.8.1 | 12.8.9 ... | all) ]
6+
usage: $0 [ -o (12.2.12 | 12.7.0 | 12.8.1 | 12.8.9 | 12.8.11 | ... | all) ]
77
[ -V (stable | proposedapi | insiders | X.Y.Z] )] [ -p <project_name> ] [-bBimPv]
88
[ -s (small | medium | large) ]
99
@@ -159,7 +159,7 @@ initialize () {
159159
fi
160160

161161
if [ "${ABLUNIT_TEST_RUNNER_OE_VERSION,,}" = "all" ]; then
162-
OE_VERSIONS=(12.2.12 12.7.0 12.8.1 12.8.3 12.8.4 12.8.5 12.8.6 12.8.7 12.8.8 12.8.9)
162+
OE_VERSIONS=(12.2.12 12.7.0 12.8.1 12.8.3 12.8.4 12.8.5 12.8.6 12.8.7 12.8.8 12.8.9 12.8.11)
163163
elif [ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.2.12' ] &&
164164
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.7.0' ] &&
165165
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.1' ] &&
@@ -169,7 +169,8 @@ initialize () {
169169
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.6' ] &&
170170
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.7' ] &&
171171
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.8' ] &&
172-
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.9' ]; then
172+
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.9' ] &&
173+
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.11' ]; then
173174
echo "Invalid OE version: $ABLUNIT_TEST_RUNNER_OE_VERSION" >&2
174175
usage && exit 1
175176
else

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ablunit-test-runner",
33
"displayName": "ABLUnit Test Runner",
44
"description": "OpenEdge ABLUnit test runner for VSCode",
5-
"version": "1.4.5",
5+
"version": "1.4.7",
66
"engineStrict": true,
77
"galleryBanner": {
88
"color": "#007ACC",

0 commit comments

Comments
 (0)