Skip to content

Commit 5c2fcc6

Browse files
mnapolibref-bot
andauthored
Release 1.0.0 with Bref v2 support (#413)
Co-authored-by: Bref Bot <[email protected]>
1 parent 3a82859 commit 5c2fcc6

File tree

4 files changed

+1970
-1934
lines changed

4 files changed

+1970
-1934
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
11
# Change log
22

3-
## 2.0.0
3+
## 1.0.0
44

55
## Breaking changes
66

77
- Just like Bref v2, support for PHP 7.3 and 7.4 was dropped. PHP 8.0 or greater is required.
8+
- [Bref v2](https://bref.sh/docs/news/02-bref-2.0.html) is required. If you use Bref v1, use the `0.12` version of the Bref extra extensions.
89

910
## Internal changes
1011

1112
These internal changes will not impact most users, however we list them in case you have an advanced use case:
1213

1314
- The "bref-extra" PHP extensions are now installed in the official Bref directory for PHP extensions: `/opt/bref/extensions`. They were previously installed in `/opt/bref-extra`.
1415

16+
If you were copying the layers in your Docker images, make sure to copy the entire `/opt` folder instead of the `/opt/bref-extra` folder:
17+
18+
```dockerfile
19+
FROM bref/php-82-fpm:2
20+
21+
# Don't do this:
22+
COPY --from=bref/extra-imagick-php-82:1 /opt/bref-extra /opt/bref-extra
23+
# Do this instead:
24+
COPY --from=bref/extra-imagick-php-82:1 /opt /opt
25+
```
26+
1527
## 0.12.5
1628

1729
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
},
2121
"conflict": {
22-
"bref/bref": "<1.2.13"
22+
"bref/bref": "<2.0.0"
2323
},
2424
"license": "MIT",
2525
"authors": [

0 commit comments

Comments
 (0)