sitespeed.io 34.0.2 → 34.0.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.
- package/CHANGELOG.md +5 -0
- package/lib/plugins/s3/index.js +2 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 34.0.3 - 2024-06-05
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
* Make sure extra options are passed on to S3 [#4176](https://github.com/sitespeedio/sitespeed.io/pull/4176).
|
|
7
|
+
|
|
3
8
|
## 34.0.2 - 2024-06-04
|
|
4
9
|
|
|
5
10
|
### Fixed
|
package/lib/plugins/s3/index.js
CHANGED
|
@@ -59,6 +59,8 @@ export default class S3Plugin extends SitespeedioPlugin {
|
|
|
59
59
|
const s3CLientOptions = {
|
|
60
60
|
region: this.s3Options.region
|
|
61
61
|
};
|
|
62
|
+
Object.assign(s3CLientOptions, this.s3Options.options);
|
|
63
|
+
|
|
62
64
|
if (this.s3Options.endpoint) {
|
|
63
65
|
s3CLientOptions.endpoint = this.s3Options.endpoint;
|
|
64
66
|
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "34.0.
|
|
3
|
+
"version": "34.0.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "34.0.
|
|
9
|
+
"version": "34.0.3",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@aws-sdk/client-s3": "3.564.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": "34.0.
|
|
8
|
+
"version": "34.0.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",
|