Skip to content

Commit 9f7ca79

Browse files
committed
chore(release): v10.6.0
1 parent de8dad0 commit 9f7ca79

File tree

22 files changed

+83
-25
lines changed

22 files changed

+83
-25
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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.6.0](https://github.com/microlinkhq/browserless/compare/v10.5.4...v10.6.0) (2024-09-12)
7+
8+
### Features
9+
10+
* **functions:** use isolated-function ([#591](https://github.com/microlinkhq/browserless/issues/591)) ([de8dad0](https://github.com/microlinkhq/browserless/commit/de8dad08a3a1f85fc0d9b8fd9ebf0c9982022a4b))
11+
12+
### Performance Improvements
13+
14+
* **errors:** avoid parse error twice ([#592](https://github.com/microlinkhq/browserless/issues/592)) ([6e3fb40](https://github.com/microlinkhq/browserless/commit/6e3fb40d0b8e558e5a7bc14cd960370a7b6c1c7d))
15+
616
## [10.5.4](https://github.com/microlinkhq/browserless/compare/v10.5.3...v10.5.4) (2024-09-03)
717

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

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "10.5.4",
5+
"version": "10.6.0",
66
"command": {
77
"bootstrap": {
88
"npmClientArgs": [

packages/browserless/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.6.0](https://github.com/microlinkhq/browserless/compare/v10.5.4...v10.6.0) (2024-09-12)
7+
8+
**Note:** Version bump only for package browserless
9+
610
## [10.5.4](https://github.com/microlinkhq/browserless/compare/v10.5.3...v10.5.4) (2024-09-03)
711

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

packages/browserless/package.json

Lines changed: 6 additions & 6 deletions
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.5.4",
5+
"version": "10.6.0",
66
"main": "src/index.js",
77
"author": {
88
"email": "[email protected]",
@@ -31,10 +31,10 @@
3131
"text"
3232
],
3333
"dependencies": {
34-
"@browserless/errors": "^10.5.2",
35-
"@browserless/goto": "^10.5.2",
36-
"@browserless/pdf": "^10.5.2",
37-
"@browserless/screenshot": "^10.5.4",
34+
"@browserless/errors": "^10.6.0",
35+
"@browserless/goto": "^10.6.0",
36+
"@browserless/pdf": "^10.6.0",
37+
"@browserless/screenshot": "^10.6.0",
3838
"debug-logfmt": "~1.2.1",
3939
"kill-process-group": "~1.0.7",
4040
"p-reflect": "~2.1.0",
@@ -44,7 +44,7 @@
4444
"superlock": "~1.1.0"
4545
},
4646
"devDependencies": {
47-
"@browserless/test": "^10.5.2",
47+
"@browserless/test": "^10.6.0",
4848
"ava": "5",
4949
"ps-list": "7",
5050
"tinyspawn": "latest"

packages/cli/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.6.0](https://github.com/microlinkhq/browserless/compare/v10.5.4...v10.6.0) (2024-09-12)
7+
8+
**Note:** Version bump only for package @browserless/cli
9+
610
## [10.5.4](https://github.com/microlinkhq/browserless/compare/v10.5.3...v10.5.4) (2024-09-03)
711

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

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
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.5.4",
5+
"version": "10.6.0",
66
"bin": {
77
"browserless": "src/index.js"
88
},
@@ -32,7 +32,7 @@
3232
],
3333
"dependencies": {
3434
"beauty-error": "~1.2.18",
35-
"browserless": "^10.5.4",
35+
"browserless": "^10.6.0",
3636
"dark-mode": "~3.0.0",
3737
"dset": "~3.1.3",
3838
"mri": "~1.2.0",

packages/errors/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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.6.0](https://github.com/microlinkhq/browserless/compare/v10.5.4...v10.6.0) (2024-09-12)
7+
8+
### Features
9+
10+
* **functions:** use isolated-function ([#591](https://github.com/microlinkhq/browserless/issues/591)) ([de8dad0](https://github.com/microlinkhq/browserless/commit/de8dad08a3a1f85fc0d9b8fd9ebf0c9982022a4b))
11+
12+
### Performance Improvements
13+
14+
* **errors:** avoid parse error twice ([#592](https://github.com/microlinkhq/browserless/issues/592)) ([6e3fb40](https://github.com/microlinkhq/browserless/commit/6e3fb40d0b8e558e5a7bc14cd960370a7b6c1c7d))
15+
616
## [10.5.2](https://github.com/microlinkhq/browserless/compare/v10.5.1...v10.5.2) (2024-08-13)
717

818
**Note:** Version bump only for package @browserless/errors

packages/errors/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@browserless/errors",
33
"description": "A collection of qualified errors for Puppeteer",
44
"homepage": "https://browserless.js.org",
5-
"version": "10.5.2",
5+
"version": "10.6.0",
66
"main": "index.js",
77
"author": {
88
"email": "[email protected]",

packages/function/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.6.0](https://github.com/microlinkhq/browserless/compare/v10.5.4...v10.6.0) (2024-09-12)
7+
8+
### Features
9+
10+
* **functions:** use isolated-function ([#591](https://github.com/microlinkhq/browserless/issues/591)) ([de8dad0](https://github.com/microlinkhq/browserless/commit/de8dad08a3a1f85fc0d9b8fd9ebf0c9982022a4b))
11+
612
## [10.5.4](https://github.com/microlinkhq/browserless/compare/v10.5.3...v10.5.4) (2024-09-03)
713

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

packages/function/package.json

Lines changed: 3 additions & 3 deletions
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.5.4",
5+
"version": "10.6.0",
66
"main": "src/index.js",
77
"author": {
88
"email": "[email protected]",
@@ -34,9 +34,9 @@
3434
"require-one-of": "~1.0.19"
3535
},
3636
"devDependencies": {
37-
"@browserless/test": "^10.5.2",
37+
"@browserless/test": "^10.6.0",
3838
"ava": "5",
39-
"browserless": "^10.5.4",
39+
"browserless": "^10.6.0",
4040
"lodash": "latest"
4141
},
4242
"engines": {

0 commit comments

Comments
 (0)