Skip to content

Commit c0da0b0

Browse files
committed
chore(release): v10.7.5
1 parent 0604c5f commit c0da0b0

File tree

10 files changed

+32
-8
lines changed

10 files changed

+32
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [10.7.5](https://github.com/microlinkhq/browserless/compare/v10.7.4...v10.7.5) (2025-03-09)
7+
8+
### Bug Fixes
9+
10+
* **screenshot:** trim content-type ([0604c5f](https://github.com/microlinkhq/browserless/commit/0604c5f0af8ee7d3493aeaa4760e8fde28e526d6))
11+
612
## [10.7.4](https://github.com/microlinkhq/browserless/compare/v10.7.3...v10.7.4) (2025-03-08)
713

814
### Bug Fixes

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "10.7.4",
5+
"version": "10.7.5",
66
"command": {
77
"bootstrap": {
88
"npmClientArgs": [

packages/browserless/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [10.7.5](https://github.com/microlinkhq/browserless/compare/v10.7.4...v10.7.5) (2025-03-09)
7+
8+
**Note:** Version bump only for package browserless
9+
610
## [10.7.4](https://github.com/microlinkhq/browserless/compare/v10.7.3...v10.7.4) (2025-03-08)
711

812
**Note:** Version bump only for package browserless

packages/browserless/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "browserless",
33
"description": "The headless Chrome/Chromium performance driver for Node.js",
44
"homepage": "https://browserless.js.org",
5-
"version": "10.7.4",
5+
"version": "10.7.5",
66
"main": "src/index.js",
77
"author": {
88
"email": "[email protected]",
@@ -34,7 +34,7 @@
3434
"@browserless/errors": "^10.7.1",
3535
"@browserless/goto": "^10.7.3",
3636
"@browserless/pdf": "^10.7.3",
37-
"@browserless/screenshot": "^10.7.4",
37+
"@browserless/screenshot": "^10.7.5",
3838
"debug-logfmt": "~1.2.3",
3939
"kill-process-group": "~1.0.11",
4040
"p-reflect": "~2.1.0",

packages/cli/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [10.7.5](https://github.com/microlinkhq/browserless/compare/v10.7.4...v10.7.5) (2025-03-09)
7+
8+
**Note:** Version bump only for package @browserless/cli
9+
610
## [10.7.4](https://github.com/microlinkhq/browserless/compare/v10.7.3...v10.7.4) (2025-03-08)
711

812
**Note:** Version bump only for package @browserless/cli

packages/cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@browserless/cli",
33
"description": "CLI to interact with Browserless capabilities",
44
"homepage": "https://browserless.js.org",
5-
"version": "10.7.4",
5+
"version": "10.7.5",
66
"bin": {
77
"browserless": "src/index.js"
88
},
@@ -32,7 +32,7 @@
3232
],
3333
"dependencies": {
3434
"beauty-error": "~1.2.20",
35-
"browserless": "^10.7.4",
35+
"browserless": "^10.7.5",
3636
"dark-mode": "~3.0.0",
3737
"dset": "~3.1.4",
3838
"mri": "~1.2.0",

packages/function/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [10.7.5](https://github.com/microlinkhq/browserless/compare/v10.7.4...v10.7.5) (2025-03-09)
7+
8+
**Note:** Version bump only for package @browserless/function
9+
610
## [10.7.4](https://github.com/microlinkhq/browserless/compare/v10.7.3...v10.7.4) (2025-03-08)
711

812
**Note:** Version bump only for package @browserless/function

packages/function/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@browserless/function",
33
"description": "Run abritrary JavaScript inside a browser sandbox",
44
"homepage": "https://browserless.js.org",
5-
"version": "10.7.4",
5+
"version": "10.7.5",
66
"main": "src/index.js",
77
"author": {
88
"email": "[email protected]",
@@ -38,7 +38,7 @@
3838
"acorn": "~8.14.0",
3939
"acorn-walk": "~8.3.4",
4040
"ava": "5",
41-
"browserless": "^10.7.4",
41+
"browserless": "^10.7.5",
4242
"lodash": "latest"
4343
},
4444
"engines": {

packages/screenshot/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [10.7.5](https://github.com/microlinkhq/browserless/compare/v10.7.4...v10.7.5) (2025-03-09)
7+
8+
### Bug Fixes
9+
10+
* **screenshot:** trim content-type ([0604c5f](https://github.com/microlinkhq/browserless/commit/0604c5f0af8ee7d3493aeaa4760e8fde28e526d6))
11+
612
## [10.7.4](https://github.com/microlinkhq/browserless/compare/v10.7.3...v10.7.4) (2025-03-08)
713

814
### Bug Fixes

packages/screenshot/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@browserless/screenshot",
33
"description": "Take a clean screenshot of any website",
44
"homepage": "https://browserless.js.org/#/?id=screenshoturl-options",
5-
"version": "10.7.4",
5+
"version": "10.7.5",
66
"main": "src/index.js",
77
"author": {
88
"email": "[email protected]",

0 commit comments

Comments
 (0)