sitespeed.io 28.0.0 → 28.2.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
2
2
 
3
+ ## 28.2.0 - 2023-07-07
4
+ ### Added
5
+ * Updated the Docker container to use Firefox 115.
6
+
7
+ ## 28.1.0 - 2023-06-27
8
+ ### Added
9
+ * Use `--graphite.proxyPath` to add extra proxy path to an annotation event in Graphite. Thank you [Jonathan Goodman](https://github.com/Shalankwa) for PR [#3893](https://github.com/sitespeedio/sitespeed.io/pull/3893).
10
+
3
11
  ## 28.0.0 - 2023-06-26
4
12
 
5
13
  ### Breaking change
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM sitespeedio/webbrowsers:chrome-114.0-firefox-114.0-edge-114.0
1
+ FROM sitespeedio/webbrowsers:chrome-114.0-firefox-115.0-edge-114.0
2
2
 
3
3
  ARG TARGETPLATFORM=linux/amd64
4
4
 
package/lib/cli/cli.js CHANGED
@@ -1226,6 +1226,12 @@ export async function parseCommandLine() {
1226
1226
  'The graphite-web host. If not specified graphite.host will be used.',
1227
1227
  group: 'Graphite'
1228
1228
  })
1229
+ .option('graphite.proxyPath', {
1230
+ describe:
1231
+ 'Extra path to graphite-web when behind a proxy, used when sending annotations.',
1232
+ default: '',
1233
+ group: 'Graphite'
1234
+ })
1229
1235
  .option('graphite.namespace', {
1230
1236
  default: 'sitespeed_io.default',
1231
1237
  describe: 'The namespace key added to all captured metrics.',
@@ -1301,6 +1307,8 @@ export async function parseCommandLine() {
1301
1307
  .option('graphite.messages', {
1302
1308
  default: ['pageSummary', 'summary'],
1303
1309
  options: ['pageSummary', 'summary', 'run'],
1310
+ describe:
1311
+ 'Define which messages to send to Graphite. By default we do not send data per run, but you can change that by adding run as one of the options',
1304
1312
  group: 'Graphite'
1305
1313
  })
1306
1314
 
@@ -95,7 +95,7 @@ export function send(
95
95
  const postOptions = {
96
96
  hostname: options.graphite.webHost || options.graphite.host,
97
97
  port: options.graphite.httpPort || 8080,
98
- path: '/events/',
98
+ path: options.graphite.proxyPath || '' + '/events/',
99
99
  method: 'POST',
100
100
  headers: {
101
101
  'Content-Type': 'application/x-www-form-urlencoded',
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "sitespeed.io",
3
- "version": "28.0.0",
3
+ "version": "28.2.0",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "sitespeed.io",
9
- "version": "28.0.0",
9
+ "version": "28.2.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@google-cloud/storage": "6.9.5",
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": "28.0.0",
8
+ "version": "28.2.0",
9
9
  "description": "Analyze the web performance of your site",
10
10
  "keywords": [
11
11
  "performance",