Skip to content

Commit 3f0c92e

Browse files
authored
Add OpenEdge 12.8.7 test target (#287)
1 parent fef3ba5 commit 3f0c92e

7 files changed

Lines changed: 16 additions & 13 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ parameters:
1616
default: 12.8.1
1717
latest-oe-version:
1818
type: string
19-
default: 12.8.6
19+
default: 12.8.7
2020
prerelease-from-branch:
2121
type: string
2222
default: main

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# [1.2.7](https://github.com/kenherring/ablunit-test-runner/releases/tag/1.2.7) - 2025-05-11 (pre-release)
1+
# [1.2.9](https://github.com/kenherring/ablunit-test-runner/releases/tag/1.2.9) - 2025-05-13 (pre-release)
22

3+
* Add OpenEdge 12.8.7 test target (#287)
34
* Warn when rcode CRC does not match profiler CRC (#272)
45
* Create codeql.yml (#278)
56
* Create dependabot.yml (#275)
@@ -8,7 +9,7 @@
89
* Unit test cleanup and performance (#274)
910
* Increase debug profile wait time to 30s (part 2) (#273)
1011

11-
**Full Changelog**: [1.2.0...1.2.7](https://github.com/kenherring/ablunit-test-runner/compare/1.2.0...1.2.7)
12+
**Full Changelog**: [1.2.0...1.2.9](https://github.com/kenherring/ablunit-test-runner/compare/1.2.0...1.2.9)
1213

1314
# [1.2.0](https://github.com/kenherring/ablunit-test-runner/releases/tag/1.2.0) - 2025-04-26
1415

README.md

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

2020
## 📝 Supported OpenEdge Versions
2121

22-
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.6 during the CI builds too.
22+
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.7 during the CI builds too.
2323

2424
## ⛺ Configuration
2525

docker/docker_build.sh

Lines changed: 4 additions & 3 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.6 | ... >]
7+
[-o < 12.2.12 | 12.8.1 | 12.8.7 | ... >]
88
[-N < 18 | 20 | 22 | ... >]
99
options:
1010
-p push docker images to dockerhub after build
@@ -47,7 +47,8 @@ initialize () {
4747
# DOCKER_TAGS+=('12.8.3')
4848
# DOCKER_TAGS+=('12.8.4')
4949
# DOCKER_TAGS+=('12.8.5')
50-
DOCKER_TAGS+=('12.8.6')
50+
# DOCKER_TAGS+=('12.8.6')
51+
DOCKER_TAGS+=('12.8.7')
5152
fi
5253

5354
mkdir -p docker/.rssw
@@ -67,7 +68,7 @@ set_node_version_for_tag () {
6768
elif [ "$DOCKER_TAG" = 12.8.1 ]; then
6869
## Most Recent LTS
6970
NODE_VERSION_FOR_TAG=22
70-
elif [ "$DOCKER_TAG" = 12.8.6 ]; then
71+
elif [ "$DOCKER_TAG" = 12.8.7 ]; then
7172
## Latest
7273
NODE_VERSION_FOR_TAG=23
7374
else

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.3 | 12.8.4 | 12.8.5 | 12.8.6 | all) ]
6+
usage: $0 [ -o (12.2.12 | 12.7.0 | 12.8.1 | 12.8.3 | 12.8.4 | 12.8.5 | 12.8.6 | 12.8.7 | all) ]
77
[ -V (stable | proposedapi | insiders | X.Y.Z] )] [ -p <project_name> ] [-bBimPv]
88
[ -s (small | medium | large) ]
99
@@ -158,14 +158,15 @@ initialize () {
158158
fi
159159

160160
if [ "${ABLUNIT_TEST_RUNNER_OE_VERSION,,}" = "all" ]; then
161-
OE_VERSIONS=(12.2.12 12.7.0 12.8.1 12.8.3 12.8.4 12.8.5 12.8.6)
161+
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 )
162162
elif [ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.2.12' ] &&
163163
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.7.0' ] &&
164164
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.1' ] &&
165165
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.3' ] &&
166166
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.4' ] &&
167167
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.5' ] &&
168-
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.6' ]; then
168+
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.6' ] &&
169+
[ "$ABLUNIT_TEST_RUNNER_OE_VERSION" != '12.8.7' ]; then
169170
echo "Invalid OE version: $ABLUNIT_TEST_RUNNER_OE_VERSION" >&2
170171
usage && exit 1
171172
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.2.7",
5+
"version": "1.2.9",
66
"engineStrict": true,
77
"galleryBanner": {
88
"color": "#007ACC",

0 commit comments

Comments
 (0)