@fishawack/lab-env 5.0.5 → 5.0.6-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  ## Changelog
2
2
 
3
+ ### 5.0.6-beta.1 (2025-11-07)
4
+
5
+ #### Bug Fixes
6
+
7
+ * installed mariadb for dumps and schema imports ([5a65c9f](https://bitbucket.org/fishawackdigital/lab-env/commits/5a65c9fcb8ad2054b041792e8e7215eacff458c0))
8
+ * installed mariadb for dumps and schema imports ([43c5dcb](https://bitbucket.org/fishawackdigital/lab-env/commits/43c5dcbda5beb010cd3cc4a2032c4597d43c6d4b))
9
+
10
+ #### Build Updates
11
+
12
+ * bumped fishawack/lab-env-laravel-10-php to 1.0.1 ([a365f47](https://bitbucket.org/fishawackdigital/lab-env/commits/a365f476059b7c9a16dd10b213df7ad2403f43c8))
13
+ * bumped fishawack/lab-env-laravel-9-php to 1.0.3 ([1e9a33b](https://bitbucket.org/fishawackdigital/lab-env/commits/1e9a33bb4a3ce92033fd1cecffc85e9ba57b5619))
14
+ * fixed commit message on version ([0af32d6](https://bitbucket.org/fishawackdigital/lab-env/commits/0af32d6f507c9768c52a838ea8dad3fd951416a8))
15
+ * fixed commit message on version ([d1527dc](https://bitbucket.org/fishawackdigital/lab-env/commits/d1527dc289d6c5df9672d88a09b833f40467172c))
16
+
3
17
  ### 5.0.5 (2025-10-31)
4
18
 
5
19
  #### Bug Fixes
@@ -1,4 +1,7 @@
1
1
  ## Changelog
2
2
 
3
+ ### 1.0.1 (2025-11-07)
4
+ * [Bug] installed mariadb for db dumps and schema imports
5
+
3
6
  ### 1.0.0 (2025-07-21)
4
7
  * [Misc] initial commit
@@ -12,6 +12,10 @@ COPY ./custom.ini /usr/local/etc/php/conf.d/custom.ini
12
12
  # Copy ImageMagick policy
13
13
  COPY ./policy.xml /etc/ImageMagick-6/policy.xml
14
14
 
15
+ # Install mysql client for dumps & schema imports in laravel (need to address a mismatch of versions here at some later)
16
+ RUN apt-get update && \
17
+ apt-get install -y mariadb-client
18
+
15
19
  # Add php user
16
20
  RUN useradd -m -G www-data -s /bin/bash php
17
21
 
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "php",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "lab-env docker config for the php module",
5
5
  "scripts": {
6
6
  "preversion": "docker login",
7
- "postversion": "docker buildx build --target development --platform linux/amd64,linux/arm64 -t fishawack/lab-env-laravel-10-php:$npm_package_version -t fishawack/lab-env-laravel-10-php:latest --push . && git add . && git commit -m \"build: Bumped fishawack/lab-env-laravel-10-php to $npm_package_version\""
7
+ "postversion": "docker buildx build --target development --platform linux/amd64,linux/arm64 -t fishawack/lab-env-laravel-10-php:$npm_package_version -t fishawack/lab-env-laravel-10-php:latest --push . && git add . && git commit -m \"build: bumped fishawack/lab-env-laravel-10-php to $npm_package_version\""
8
8
  },
9
9
  "author": "Mike Mellor",
10
10
  "license": "ISC"
@@ -1,5 +1,8 @@
1
1
  ## Changelog
2
2
 
3
+ ### 1.0.3 (2025-11-07)
4
+ * [Bug] installed mariadb for db dumps and schema imports
5
+
3
6
  ### 1.0.2 (2023-08-14)
4
7
  * [Bug] move composer home directory so cache folder is writeable
5
8
 
@@ -12,6 +12,10 @@ COPY ./custom.ini /usr/local/etc/php/conf.d/custom.ini
12
12
  # Copy ImageMagick policy
13
13
  COPY ./policy.xml /etc/ImageMagick-6/policy.xml
14
14
 
15
+ # Install mysql client for dumps & schema imports in laravel (need to address a mismatch of versions here at some later)
16
+ RUN apt-get update && \
17
+ apt-get install -y mariadb-client
18
+
15
19
  # Add php user
16
20
  RUN useradd -m -G www-data -s /bin/bash php
17
21
 
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "php",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "lab-env docker config for the php module",
5
5
  "scripts": {
6
6
  "preversion": "docker login",
7
- "postversion": "docker buildx build --target development --platform linux/amd64,linux/arm64 -t fishawack/lab-env-laravel-9-php:$npm_package_version -t fishawack/lab-env-laravel-9-php:latest --push . && git add . && git commit -m \"build: Bumped fishawack/lab-env-laravel-9-php to $npm_package_version\""
7
+ "postversion": "docker buildx build --target development --platform linux/amd64,linux/arm64 -t fishawack/lab-env-laravel-9-php:$npm_package_version -t fishawack/lab-env-laravel-9-php:latest --push . && git add . && git commit -m \"build: bumped fishawack/lab-env-laravel-9-php to $npm_package_version\""
8
8
  },
9
9
  "author": "Mike Mellor",
10
10
  "license": "ISC"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "5.0.5",
3
+ "version": "5.0.6-beta.1",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {