Skip to content

Commit 532772d

Browse files
chore: release main (#263)
Co-authored-by: app-o11y-kwl-ci[bot] <181520879+app-o11y-kwl-ci[bot]@users.noreply.github.com>
1 parent 30d167c commit 532772d

File tree

9 files changed

+55
-11
lines changed

9 files changed

+55
-11
lines changed

packages/faro-bundlers-shared/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.5.0](https://github.com/grafana/faro-javascript-bundler-plugins/compare/faro-bundlers-shared-v0.4.1...faro-bundlers-shared-v0.5.0) (2025-08-12)
4+
5+
6+
### Features
7+
8+
* add a recursive option to webpack/CLI to enable recursive searcing for maps ([#262](https://github.com/grafana/faro-javascript-bundler-plugins/issues/262)) ([6dc6dc7](https://github.com/grafana/faro-javascript-bundler-plugins/commit/6dc6dc70e6fb0f08a23047b05ccbb16fb966cb08))
9+
310
## [0.4.1](https://github.com/grafana/faro-javascript-bundler-plugins/compare/faro-bundlers-shared-v0.4.0...faro-bundlers-shared-v0.4.1) (2025-04-09)
411

512

packages/faro-bundlers-shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/faro-bundlers-shared",
3-
"version": "0.4.1",
3+
"version": "0.5.0",
44
"main": "dist/cjs/index.js",
55
"types": "dist/cjs/index.d.ts",
66
"module": "dist/esm/index.mjs",

packages/faro-cli/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.5.0](https://github.com/grafana/faro-javascript-bundler-plugins/compare/faro-cli-v0.4.1...faro-cli-v0.5.0) (2025-08-12)
4+
5+
6+
### Features
7+
8+
* add a recursive option to webpack/CLI to enable recursive searcing for maps ([#262](https://github.com/grafana/faro-javascript-bundler-plugins/issues/262)) ([6dc6dc7](https://github.com/grafana/faro-javascript-bundler-plugins/commit/6dc6dc70e6fb0f08a23047b05ccbb16fb966cb08))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @grafana/faro-bundlers-shared bumped from ^0.4.1 to ^0.5.0
16+
317
## [0.4.1](https://github.com/grafana/faro-javascript-bundler-plugins/compare/faro-cli-v0.4.0...faro-cli-v0.4.1) (2025-04-09)
418

519

packages/faro-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/faro-cli",
3-
"version": "0.4.1",
3+
"version": "0.5.0",
44
"description": "CLI for uploading sourcemaps to the Faro source map API",
55
"main": "dist/cjs/index.js",
66
"types": "dist/cjs/index.d.ts",
@@ -21,7 +21,7 @@
2121
"test:watch": "jest --watch"
2222
},
2323
"dependencies": {
24-
"@grafana/faro-bundlers-shared": "^0.4.1",
24+
"@grafana/faro-bundlers-shared": "^0.5.0",
2525
"commander": "^13.1.0",
2626
"dotenv": "^17.0.1",
2727
"glob": "^10.3.10",

packages/faro-rollup/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.5.2](https://github.com/grafana/faro-javascript-bundler-plugins/compare/faro-rollup-plugin-v0.5.1...faro-rollup-plugin-v0.5.2) (2025-08-12)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @grafana/faro-bundlers-shared bumped from ^0.4.1 to ^0.5.0
11+
312
## [0.5.1](https://github.com/grafana/faro-javascript-bundler-plugins/compare/faro-rollup-plugin-v0.5.0...faro-rollup-plugin-v0.5.1) (2025-04-09)
413

514

packages/faro-rollup/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/faro-rollup-plugin",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "Upload a source map to the Faro source map API from a Rollup build pipeline",
55
"main": "dist/cjs/index.js",
66
"types": "dist/cjs/index.d.ts",
@@ -18,7 +18,7 @@
1818
},
1919
"devDependencies": {},
2020
"dependencies": {
21-
"@grafana/faro-bundlers-shared": "^0.4.1",
21+
"@grafana/faro-bundlers-shared": "^0.5.0",
2222
"cross-fetch": "^4.0.0",
2323
"magic-string": "^0.30.5",
2424
"rollup": "^4.22.4"

packages/faro-webpack/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.6.0](https://github.com/grafana/faro-javascript-bundler-plugins/compare/faro-webpack-plugin-v0.5.1...faro-webpack-plugin-v0.6.0) (2025-08-12)
4+
5+
6+
### Features
7+
8+
* add a recursive option to webpack/CLI to enable recursive searcing for maps ([#262](https://github.com/grafana/faro-javascript-bundler-plugins/issues/262)) ([6dc6dc7](https://github.com/grafana/faro-javascript-bundler-plugins/commit/6dc6dc70e6fb0f08a23047b05ccbb16fb966cb08))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @grafana/faro-bundlers-shared bumped from ^0.4.1 to ^0.5.0
16+
317
## [0.5.1](https://github.com/grafana/faro-javascript-bundler-plugins/compare/faro-webpack-plugin-v0.5.0...faro-webpack-plugin-v0.5.1) (2025-04-09)
418

519

packages/faro-webpack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/faro-webpack-plugin",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"description": "Upload a source map to the Faro source map API from a Webpack build pipeline ",
55
"main": "dist/cjs/index.js",
66
"types": "dist/cjs/index.d.ts",
@@ -17,7 +17,7 @@
1717
"test": "jest"
1818
},
1919
"dependencies": {
20-
"@grafana/faro-bundlers-shared": "^0.4.1",
20+
"@grafana/faro-bundlers-shared": "^0.5.0",
2121
"cross-fetch": "^4.0.0",
2222
"webpack": "^5.89.0"
2323
},

release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"packages/faro-bundlers-shared": "0.4.1",
3-
"packages/faro-cli": "0.4.1",
4-
"packages/faro-rollup": "0.5.1",
5-
"packages/faro-webpack": "0.5.1"
2+
"packages/faro-bundlers-shared": "0.5.0",
3+
"packages/faro-cli": "0.5.0",
4+
"packages/faro-rollup": "0.5.2",
5+
"packages/faro-webpack": "0.6.0"
66
}

0 commit comments

Comments
 (0)