@fishawack/lab-env 5.5.0-beta.1 → 5.5.0
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 +27 -0
- package/_Ai/mcp-@.md +3 -1
- package/commands/create/services/aws/cloudfront.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 5.5.0 (2026-04-29)
|
|
4
|
+
|
|
5
|
+
#### Features
|
|
6
|
+
|
|
7
|
+
* content logic from now moved to lab-env in backwards compatible way ([2d836ce](https://bitbucket.org/fishawackdigital/lab-env/commits/2d836cec5bc9d429b7fdc544c5fc1e8c3b749124))
|
|
8
|
+
* extract snyk scan into standalone fw scan command ([abba628](https://bitbucket.org/fishawackdigital/lab-env/commits/abba628183fa94da5a21a14eb014c13a23036f84))
|
|
9
|
+
* **python:** added healthcheck ([ca6e323](https://bitbucket.org/fishawackdigital/lab-env/commits/ca6e323487aaae201eabe34e5208845585d182d4))
|
|
10
|
+
* **workspace:** support adding and removing projects from existing workspaces ([d70bf41](https://bitbucket.org/fishawackdigital/lab-env/commits/d70bf4130dffe412a15e8d8c6c3e6777daac65d3))
|
|
11
|
+
|
|
12
|
+
#### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* allow blob as default-src on csp ([3cea3d4](https://bitbucket.org/fishawackdigital/lab-env/commits/3cea3d4bbd8bcd0ffdb6293967e4248ed542e8cf))
|
|
15
|
+
* csps now include worker-src with blob and self support ([bbe35b8](https://bitbucket.org/fishawackdigital/lab-env/commits/bbe35b807153d1af53bad0872cc6461b8c39e92f))
|
|
16
|
+
* prov now has shorter comment block to adhere to aws new 128 char rule ([4b7399c](https://bitbucket.org/fishawackdigital/lab-env/commits/4b7399c4fd72e3a40385234def1a928afd414401))
|
|
17
|
+
* scans now all run before errors thrown and always tackle lock files ([f212df0](https://bitbucket.org/fishawackdigital/lab-env/commits/f212df0cc1e6d5373c6bffcbde7e4e1ac2784db6))
|
|
18
|
+
* split snyk scans per platform with project-name flag ([7d89539](https://bitbucket.org/fishawackdigital/lab-env/commits/7d895395359e6f9d594e264f9b0bcf2e5a59c3bd))
|
|
19
|
+
|
|
20
|
+
#### Build Updates
|
|
21
|
+
|
|
22
|
+
* added python as boilerplate option ([8695c48](https://bitbucket.org/fishawackdigital/lab-env/commits/8695c48a763f623fe852b029663d8f2d958ba383))
|
|
23
|
+
|
|
24
|
+
### 5.5.0-beta.2 (2026-04-28)
|
|
25
|
+
|
|
26
|
+
#### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* prov now has shorter comment block to adhere to aws new 128 char rule ([4b7399c](https://bitbucket.org/fishawackdigital/lab-env/commits/4b7399c4fd72e3a40385234def1a928afd414401))
|
|
29
|
+
|
|
3
30
|
### 5.5.0-beta.1 (2026-04-13)
|
|
4
31
|
|
|
5
32
|
#### Features
|
package/_Ai/mcp-@.md
CHANGED
|
@@ -8,7 +8,9 @@ Playwright is available for live browser testing and interactions.
|
|
|
8
8
|
|
|
9
9
|
Use this to automate browser tasks, run tests, and capture screenshots or videos of your application in action.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
IMPORTANT - ALWAYS verify changes to API & Frontend functionality visually via playwright.
|
|
12
|
+
|
|
13
|
+
If you run tests, always re-run `fw artisan migrate:fresh --seed` afterwards if you intend to verify in the browser
|
|
12
14
|
|
|
13
15
|
The api is typically already running at http://localhost:3000
|
|
14
16
|
|
|
@@ -195,7 +195,7 @@ module.exports.createCloudFrontFunction = async (name, fn, config) => {
|
|
|
195
195
|
const client = new CloudFrontClient({});
|
|
196
196
|
|
|
197
197
|
let FunctionConfig = {
|
|
198
|
-
Comment:
|
|
198
|
+
Comment: `${name} - ${fn}.js`,
|
|
199
199
|
Runtime: `cloudfront-js-1.0`,
|
|
200
200
|
};
|
|
201
201
|
|