Skip to content

Commit dacfcff

Browse files
committed
Merge branch 'hotfix/1.4.1'
2 parents 0d205f7 + 8acb56f commit dacfcff

File tree

5 files changed

+23
-10
lines changed

5 files changed

+23
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased](https://github.com/chrisnharvey/magicLAMP/compare/master...develop)
44

5+
# v1.4.1
6+
7+
### Fixed
8+
9+
- Stable release of PHP 8.0 now included
10+
- Enable imagick extension in PHP 8 container
11+
- Fix broken links in documentation
12+
- Bump Stripe CLI version to v1.5.5
13+
- Bump Digital Ocean CLI version to v1.52.0
14+
515
## v1.4.0
616

717
### New

containers/php80/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0-rc-fpm
1+
FROM php:8.0-fpm
22

33
RUN apt-get update && \
44
DEBIAN_FRONTEND=noninteractive apt-get install -qq wget libgd3 libgd-dev libwebp-dev libpq-dev libmagickwand-dev libfreetype6-dev libjpeg62-turbo-dev libpng-dev libzip-dev nghttp2 libhiredis-dev libmemcached-dev pkg-config zlib1g-dev && \
@@ -24,7 +24,8 @@ RUN docker-php-source extract && \
2424
phpize && \
2525
./configure && \
2626
make install && \
27-
docker-php-source delete
27+
docker-php-source delete && \
28+
docker-php-ext-enable imagick
2829

2930
ADD ./config/php.ini /usr/local/etc/php/conf.d/php.ini
3031
ADD ./config/php-fpm.conf /usr/local/etc/php-fpm.d/zzz-magicLAMP.conf

containers/workspace/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ RUN curl --location "https://github.com/weaveworks/eksctl/releases/download/late
7878
mv /tmp/eksctl /usr/local/bin
7979

8080
# Install doctl
81-
RUN curl --location https://github.com/digitalocean/doctl/releases/download/v1.41.0/doctl-1.41.0-linux-amd64.tar.gz | tar xz -C /tmp && \
81+
RUN curl --location https://github.com/digitalocean/doctl/releases/download/v1.52.0/doctl-1.52.0-linux-amd64.tar.gz | tar xz -C /tmp && \
8282
mv /tmp/doctl /usr/local/bin
8383

8484
# Install Stripe CLI
85-
RUN curl --location "https://github.com/stripe/stripe-cli/releases/download/v1.4.0/stripe_1.4.0_linux_x86_64.tar.gz" | tar xz -C /tmp && \
85+
RUN curl --location "https://github.com/stripe/stripe-cli/releases/download/v1.5.5/stripe_1.5.5_linux_x86_64.tar.gz" | tar xz -C /tmp && \
8686
mv /tmp/stripe /usr/local/bin/stripe && \
8787
chmod +x /usr/local/bin/stripe
8888

docs/automatic-dns/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ magicLAMP has a built-in DNS resolver which will automatically resolve a number
77

88
Simply change the DNS resolver on your host machine to `127.0.0.1`.
99

10-
!!! note "Windows Users" For Windows users, go to your Network Settings and update `DNS` field with `127.0.0.1` for `IPv4 protocol` on the `vEthernet (WSL)` adapter.
10+
!!! note "Windows Users"
11+
For Windows users, go to your Network Settings and update `DNS` field with
12+
`127.0.0.1` for `IPv4 protocol` on the `vEthernet (WSL)` adapter.
1113

1214
## Automatic PHP version resolution
1315

docs/getting-started/installing-magiclamp.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ your needs.
2828
!!! note "Windows Users"
2929
For Windows users, we recommend storing your projects directory inside WSL2.
3030

31-
[See here](https://magiclamp.app/en/stable/troubleshooting/performance-on-windows) for more information.
31+
[See here](../../troubleshooting/performance-on-windows) for more information.
3232

3333
### Step 3
3434

@@ -41,16 +41,16 @@ docker-compose up -d
4141

4242
### Step 4 (optional)
4343

44-
To take full advantage of magicLAMP, you may want to use [Automatic DNS](/automatic-dns)
45-
and [Automatic SSL](https://magiclamp.app/en/stable/automatic-ssl).
44+
To take full advantage of magicLAMP, you may want to use [Automatic DNS](../../automatic-dns)
45+
and [Automatic SSL](../../automatic-ssl).
4646

4747
See their respective documentation for information on how to set them up.
4848

4949
### You're done
5050

51-
If you have [Automatic DNS](https://magiclamp.app/en/stable/automatic-dns) setup, you can now visit any of your projects
51+
If you have [Automatic DNS](../../automatic-dns) setup, you can now visit any of your projects
5252
using any PHP version by visiting `<project-name>.<php-version>.localhost` in your browser
5353
(e.g. `my-awesome-project.74.localhost`)
5454

55-
You can also access the [magicLAMP shell](https://magiclamp.app/en/stable/workspace) which by typing `./shell.sh`
55+
You can also access the [magicLAMP shell](../../workspace) which by typing `./shell.sh`
5656
(or `.\shell.cmd` on Windows).

0 commit comments

Comments
 (0)