Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ updates:
schedule:
interval: "daily"

# Docker - docker/openemr/8.0.0
# Docker - docker/openemr/8.1.0
- package-ecosystem: "docker"
directory: "/docker/openemr/8.0.0"
directory: "/docker/openemr/8.1.0"
schedule:
interval: "daily"
Comment on lines +15 to 19

Expand Down
2 changes: 1 addition & 1 deletion docker/openemr/8.0.0/Dockerfile

@kojiromike kojiromike Jun 10, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We shouldn't change 8.0.0 to release 8.1.0, and 8.1.0 already exists.

Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ RUN ln -sf /usr/bin/php${PHP_VERSION_ABBR} /usr/bin/php
# Install composer for openemr package building
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer

ARG OPENEMR_VERSION=rel-800
ARG OPENEMR_VERSION=rel-810
RUN apk add --no-cache build-base \
&& git clone https://github.com/openemr/openemr.git --branch "${OPENEMR_VERSION}" --depth 1 \
&& rm -rf openemr/.git \
Expand Down
2 changes: 1 addition & 1 deletion docker/openemr/current
8 changes: 4 additions & 4 deletions tools/release/versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ version: 1

slots:
current:
minor: "8.0"
minor: "8.1"
# "8.0.0.3" is legacy quaternary (4-part) versioning. 8.1.x onward uses
# plain semver. When current rotates off the 8.0.0.x line, this becomes a
# plain 3-part version. See #746.
full: "8.0.0.3"
branch: "rel-800"
docker_dir: "8.0.0"
full: "8.1.0"
branch: "rel-810"
docker_dir: "8.1.0"
next:
minor: "8.1"
full: "8.1.0"
Expand Down