Skip to content

Commit

Permalink
Merge pull request #231 from silinternational/develop
Browse files Browse the repository at this point in the history
Release 5.5.2
  • Loading branch information
forevermatt authored Jun 9, 2021
2 parents 9529fb5 + f90fb67 commit 9f2f185
Show file tree
Hide file tree
Showing 9 changed files with 914 additions and 289 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [5.5.2]
### Fixed
- Upgrade PHP to 7.4 again (but stay with Ubuntu base O/S)
- Upgrade Ubuntu to 20.04
- Upgrade Composer to 2
- Switch from fxp's composer-asset-plugin to asset-packagist
- Stop including syslog and Logentries-related files
- Stop installing/using runny (since we don't log to syslog anymore)

## [5.5.1]
### Changed
- Reverse the order of searching for a Google user, now use ID first
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM silintl/php7:7.2
FROM silintl/php7:7.4
MAINTAINER Phillip Shipley <[email protected]>

ENV REFRESHED_AT 2020-04-07
ENV REFRESHED_AT 2020-06-09

RUN apt-get update -y && \
apt-get install -y php-memcache && \
apt-get clean
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN mkdir -p /data

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ composer:
docker-compose run --rm cli composer install

composerupdate:
docker-compose run --rm cli bash -c "composer update && composer show -D > versions.json"
docker-compose run --rm cli bash -c "composer update && composer show -D --format=json > versions.json"

email:
docker-compose up -d email
Expand Down
6 changes: 6 additions & 0 deletions application/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"name": "silinternational/idp-pw-api",
"description": "Backend API for Identity Provider Password Management",
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
Expand Down
Loading

0 comments on commit 9f2f185

Please sign in to comment.