sitespeed.io 35.1.1 → 35.1.3

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.
@@ -28,6 +28,21 @@ jobs:
28
28
  uses: dawidd6/action-get-tag@v1
29
29
  with:
30
30
  strip_v: true
31
+ - name: Extract version (alternative version)
32
+ id: extract_version
33
+ run: |
34
+ VERSION_TAG=${GITHUB_REF#refs/tags/}
35
+ echo "Git tag: $VERSION_TAG"
36
+
37
+ VERSION=${VERSION_TAG#v}
38
+ echo "Full version without 'v': $VERSION"
39
+
40
+ MAJOR_VERSION=${VERSION%%.*}
41
+ echo "Major version: $MAJOR_VERSION"
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"
31
46
  -
32
47
  name: Build and push sitespeed.io
33
48
  uses: docker/build-push-action@v5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+ ## 35.1.3 - 2024-10-11
4
+ ### Fixed
5
+ * 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.
6
+
7
+ ## 35.1.2 - 2024-10-09
8
+ ### Fixed
9
+ * Make sure crux setup messages are skipt for analysisstorer [4291](https://github.com/sitespeedio/sitespeed.io/pull/4291).
3
10
 
4
11
  ## 35.1.1 - 2024-10-08
5
12
  ### Fixed
@@ -34,7 +34,8 @@ function shouldIgnoreMessage(message) {
34
34
  'graphite.setup',
35
35
  'influxdb.setup',
36
36
  'grafana.setup',
37
- 'sustainable.setup'
37
+ 'sustainable.setup',
38
+ 'crux.setup'
38
39
  ].includes(message.type);
39
40
  }
40
41
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "35.1.1",
3
+ "version": "35.1.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "35.1.1",
9
+ "version": "35.1.3",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-s3": "3.609.0",
@@ -15,7 +15,7 @@
15
15
  "@sitespeed.io/plugin": "0.0.6",
16
16
  "@tgwf/co2": "0.16.0",
17
17
  "axe-core": "4.10.0",
18
- "browsertime": "23.1.1",
18
+ "browsertime": "23.1.2",
19
19
  "cli-color": "2.0.4",
20
20
  "coach-core": "8.0.2",
21
21
  "concurrent-queue": "7.0.2",
@@ -3630,9 +3630,9 @@
3630
3630
  }
3631
3631
  },
3632
3632
  "node_modules/browsertime": {
3633
- "version": "23.1.1",
3634
- "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-23.1.1.tgz",
3635
- "integrity": "sha512-qSlfTvo+y+b03t5QiMoknKSda9rzm9qOI4GcPWJqA7jpWrcp7ZHWEgNB9QSB7aZaWdCEah+6G51H43XlUjCsQg==",
3633
+ "version": "23.1.2",
3634
+ "resolved": "https://registry.npmjs.org/browsertime/-/browsertime-23.1.2.tgz",
3635
+ "integrity": "sha512-P2Jl+25FoUWtxNL99vyHamW0CyGXern41G38YygVeV0y84HLuUsniVXVEYOyftrj4z79t2femqRvVx5D0rCYNw==",
3636
3636
  "dependencies": {
3637
3637
  "@cypress/xvfb": "1.2.4",
3638
3638
  "@devicefarmer/adbkit": "3.2.6",
@@ -3642,7 +3642,7 @@
3642
3642
  "@sitespeed.io/throttle": "5.0.1",
3643
3643
  "@sitespeed.io/tracium": "0.3.3",
3644
3644
  "btoa": "1.2.1",
3645
- "chrome-har": "1.0.0",
3645
+ "chrome-har": "1.0.1",
3646
3646
  "chrome-remote-interface": "0.33.2",
3647
3647
  "dayjs": "1.11.13",
3648
3648
  "execa": "9.3.1",
@@ -3893,9 +3893,9 @@
3893
3893
  }
3894
3894
  },
3895
3895
  "node_modules/chrome-har": {
3896
- "version": "1.0.0",
3897
- "resolved": "https://registry.npmjs.org/chrome-har/-/chrome-har-1.0.0.tgz",
3898
- "integrity": "sha512-HUXMrfVwQNjNDxIt69PFuDAaWwHCF2np5cDQEBxwoxR76VZNbRh6krVVlHa+Vp/aqqY/YyVSWpdY0ZsCrXTpIw==",
3896
+ "version": "1.0.1",
3897
+ "resolved": "https://registry.npmjs.org/chrome-har/-/chrome-har-1.0.1.tgz",
3898
+ "integrity": "sha512-FFZCxUrXnXTbNfDyfS+OZxgOTsCm4KSCr73H4g/eOfmJn34u4ZEgInKf8M58fATPZRcrP3un75xR7rRPKdXsGg==",
3899
3899
  "dependencies": {
3900
3900
  "debug": "4.3.7",
3901
3901
  "tough-cookie": "5.0.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.1",
8
+ "version": "35.1.3",
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",
@@ -85,7 +85,7 @@
85
85
  "@tgwf/co2": "0.16.0",
86
86
  "@aws-sdk/client-s3": "3.609.0",
87
87
  "axe-core": "4.10.0",
88
- "browsertime": "23.1.1",
88
+ "browsertime": "23.1.2",
89
89
  "coach-core": "8.0.2",
90
90
  "cli-color": "2.0.4",
91
91
  "concurrent-queue": "7.0.2",