sitespeed.io 35.1.3 → 35.1.4

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.
@@ -40,9 +40,15 @@ jobs:
40
40
  MAJOR_VERSION=${VERSION%%.*}
41
41
  echo "Major version: $MAJOR_VERSION"
42
42
 
43
- # Set outputs for use in later steps
44
- echo "::set-output name=VERSION::$VERSION"
45
- echo "::set-output name=MAJOR_VERSION::$MAJOR_VERSION"
43
+ echo "SITESPEED_VERSION=$VERSION" >> $GITHUB_OUTPUT
44
+ echo "SITESPEED_MAJOR_VERSION=$MAJOR_VERSION" >> $GITHUB_OUTPUT
45
+ - name: Test versions
46
+ run: |
47
+ echo "Using SITESPEED_VERSION: ${SITESPEED_VERSION}"
48
+ echo "Using SITESPEED_MAJOR_VERSION: ${SITESPEED_MAJOR_VERSION}"
49
+ env:
50
+ SITESPEED_VERSION: ${{ steps.extract_version.outputs.SITESPEED_VERSION }}
51
+ SITESPEED_MAJOR_VERSION: ${{ steps.extract_version.outputs.SITESPEED_MAJOR_VERSION }}
46
52
  -
47
53
  name: Build and push sitespeed.io
48
54
  uses: docker/build-push-action@v5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+ ## 35.1.4 - 2024-10-13
4
+ ### Fixed
5
+ * Changed `--help` message for `--firefox.includeResponseBodies`. Include response bodies for Firefox stopped to work when we updated how we get the HAR (changed to bidi HAR). See [#4295](https://github.com/sitespeedio/sitespeed.io/issues/4295).
6
+
3
7
  ## 35.1.3 - 2024-10-11
4
8
  ### Fixed
5
9
  * Updated to Browsertim 23.1.2 [#4294](https://github.com/sitespeedio/sitespeed.io/pull/4294) that includes an update Chrome-HAR that swallows if an timing is broken from the Chrome trace.
package/lib/cli/cli.js CHANGED
@@ -644,7 +644,8 @@ export async function parseCommandLine() {
644
644
  })
645
645
  .option('browsertime.firefox.includeResponseBodies', {
646
646
  alias: 'firefox.includeResponseBodies',
647
- describe: 'Include response bodies in HAR',
647
+ describe:
648
+ 'Warning: This do not work at the moment, see https://github.com/sitespeedio/sitespeed.io/issues/4295',
648
649
  default: 'none',
649
650
  choices: ['none', 'all', 'html'],
650
651
  group: 'Firefox'
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "35.1.3",
3
+ "version": "35.1.4",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "35.1.3",
9
+ "version": "35.1.4",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-s3": "3.609.0",
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "sitespeed.io": "./bin/sitespeed.js",
6
6
  "sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
7
7
  },
8
- "version": "35.1.3",
8
+ "version": "35.1.4",
9
9
  "description": "sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.",
10
10
  "keywords": [
11
11
  "performance",