Skip to content

Commit f5cae1c

Browse files
authored
build: Move from Alpha to Beta (#66)
Intermediate changes require to move packages from alpha to beta.
1 parent f7f0670 commit f5cae1c

24 files changed

+109
-100
lines changed

.changeset/breezy-horses-rule.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/calm-points-mix.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/flat-coats-jump.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/fluffy-candles-switch.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/grumpy-icons-hammer.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/shy-bottles-shout.md renamed to .changeset/healthy-foxes-joke.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"@codecov/vite-plugin": patch
66
---
77

8-
Move bundler-core test deps to dev deps
8+
Move packages into beta

.changeset/new-chefs-fold.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/poor-cows-kneel.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/pre.json

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
11
{
22
"mode": "pre",
3-
"tag": "alpha",
3+
"tag": "beta",
44
"initialVersions": {
5-
"@codecov/bundler-plugin-core": "0.0.1",
6-
"@codecov/rollup-plugin": "0.0.1",
7-
"@codecov/vite-plugin": "0.0.1",
8-
"@codecov/webpack-plugin": "0.0.1"
9-
},
10-
"changesets": [
11-
"breezy-horses-rule",
12-
"calm-points-mix",
13-
"flat-coats-jump",
14-
"fluffy-candles-switch",
15-
"grumpy-icons-hammer",
16-
"new-chefs-fold",
17-
"poor-cows-kneel",
18-
"pretty-ghosts-arrive",
19-
"shy-bottles-shout",
20-
"tasty-adults-design"
21-
]
5+
"@codecov/bundler-plugin-core": "0.0.0",
6+
"@codecov/rollup-plugin": "0.0.0",
7+
"@codecov/vite-plugin": "0.0.0",
8+
"@codecov/webpack-plugin": "0.0.0"
9+
}
2210
}

.changeset/pretty-ghosts-arrive.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/tasty-adults-design.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Codecov Bundler Plugins
88

99
> [!WARNING]
10-
> These plugins are currently in alpha and are subject to change.
10+
> These plugins are currently in beta and are subject to change.
1111
1212
Codecov plugins for various JavaScript bundlers. Currently supporting Rollup, Vite, Webpack 5.
1313

packages/bundler-plugin-core/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @codecov/bundler-plugin-core
22

3+
## 0.0.1-beta.0
4+
5+
### Patch Changes
6+
7+
- becd728: Add duration to webpack bundler plugin directly
8+
- 543a526: Update dependencies before moving package out of alpha
9+
- 4f1183e: Remove references to Webpack 4, as we currently on support Node 18+.
10+
- c1fdbd6: Fix retry when fetching by throwing custom error if response is not okay
11+
- d28a2e4: Break from retry loop when the response is ok
12+
- 7c55993: Rename uploaderOverrides to uploadOverrides, remove url from uploadOverrides, and removal of repoToken/globalUploadToken in favour of just uploadToken.
13+
- 36ed299: Alpha release of Codecov bundler plugins
14+
- 562ac0c: Adjust peer dep versions to use x-range instead of caret
15+
- 48b6e90: Move bundler-core test deps to dev deps
16+
- c755a5c: Add missing outputPath to output stats file
17+
318
## 0.0.1-alpha.3
419

520
### Patch Changes

packages/bundler-plugin-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Codecov Bundler Plugin Core
88

99
> [!WARNING]
10-
> These plugins are currently in alpha and are subject to change.
10+
> These plugins are currently in beta and are subject to change.
1111
1212
Core package containing the bundler-agnostic logic for the Codecov Bundler Plugins.
1313

packages/bundler-plugin-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codecov/bundler-plugin-core",
3-
"version": "0.0.1-alpha.3",
3+
"version": "0.0.0",
44
"description": "Official Codecov Bundler Plugin Core",
55
"author": "Codecov",
66
"license": "MIT",

packages/rollup-plugin/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @codecov/rollup-plugin
22

3+
## 0.0.1-beta.0
4+
5+
### Patch Changes
6+
7+
- becd728: Add duration to webpack bundler plugin directly
8+
- 543a526: Update dependencies before moving package out of alpha
9+
- 4f1183e: Remove references to Webpack 4, as we currently on support Node 18+.
10+
- c1fdbd6: Fix retry when fetching by throwing custom error if response is not okay
11+
- d28a2e4: Break from retry loop when the response is ok
12+
- 7c55993: Rename uploaderOverrides to uploadOverrides, remove url from uploadOverrides, and removal of repoToken/globalUploadToken in favour of just uploadToken.
13+
- 36ed299: Alpha release of Codecov bundler plugins
14+
- 562ac0c: Adjust peer dep versions to use x-range instead of caret
15+
- 48b6e90: Move bundler-core test deps to dev deps
16+
- c755a5c: Add missing outputPath to output stats file
17+
- Updated dependencies [becd728]
18+
- Updated dependencies [543a526]
19+
- Updated dependencies [4f1183e]
20+
- Updated dependencies [c1fdbd6]
21+
- Updated dependencies [d28a2e4]
22+
- Updated dependencies [7c55993]
23+
- Updated dependencies [36ed299]
24+
- Updated dependencies [562ac0c]
25+
- Updated dependencies [48b6e90]
26+
- Updated dependencies [c755a5c]
27+
- @codecov/bundler-plugin-core@0.0.1
28+
329
## 0.0.1-alpha.3
430

531
### Patch Changes

packages/rollup-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Codecov Rollup Plugin
88

99
> [!WARNING]
10-
> These plugins are currently in alpha and are subject to change.
10+
> These plugins are currently in beta and are subject to change.
1111
1212
> A Rollup plugin that provides bundle analysis support for Codecov.
1313

packages/rollup-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codecov/rollup-plugin",
3-
"version": "0.0.1-alpha.3",
3+
"version": "0.0.0",
44
"description": "Official Codecov Rollup plugin",
55
"author": "Codecov",
66
"license": "MIT",

packages/vite-plugin/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @codecov/vite-plugin
22

3+
## 0.0.1-beta.0
4+
5+
### Patch Changes
6+
7+
- becd728: Add duration to webpack bundler plugin directly
8+
- 543a526: Update dependencies before moving package out of alpha
9+
- 4f1183e: Remove references to Webpack 4, as we currently on support Node 18+.
10+
- c1fdbd6: Fix retry when fetching by throwing custom error if response is not okay
11+
- d28a2e4: Break from retry loop when the response is ok
12+
- 7c55993: Rename uploaderOverrides to uploadOverrides, remove url from uploadOverrides, and removal of repoToken/globalUploadToken in favour of just uploadToken.
13+
- 36ed299: Alpha release of Codecov bundler plugins
14+
- 562ac0c: Adjust peer dep versions to use x-range instead of caret
15+
- 48b6e90: Move bundler-core test deps to dev deps
16+
- c755a5c: Add missing outputPath to output stats file
17+
- Updated dependencies [becd728]
18+
- Updated dependencies [543a526]
19+
- Updated dependencies [4f1183e]
20+
- Updated dependencies [c1fdbd6]
21+
- Updated dependencies [d28a2e4]
22+
- Updated dependencies [7c55993]
23+
- Updated dependencies [36ed299]
24+
- Updated dependencies [562ac0c]
25+
- Updated dependencies [48b6e90]
26+
- Updated dependencies [c755a5c]
27+
- @codecov/bundler-plugin-core@0.0.1
28+
329
## 0.0.1-alpha.3
430

531
### Patch Changes

packages/vite-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Codecov Vite Plugin
88

99
> [!WARNING]
10-
> These plugins are currently in alpha and are subject to change.
10+
> These plugins are currently in beta and are subject to change.
1111
1212
> A Vite plugin that provides bundle analysis support for Codecov.
1313

packages/vite-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codecov/vite-plugin",
3-
"version": "0.0.1-alpha.3",
3+
"version": "0.0.0",
44
"description": "Official Codecov Vite plugin",
55
"author": "Codecov",
66
"license": "MIT",

packages/webpack-plugin/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @codecov/webpack-plugin
22

3+
## 0.0.1-beta.0
4+
5+
### Patch Changes
6+
7+
- becd728: Add duration to webpack bundler plugin directly
8+
- 543a526: Update dependencies before moving package out of alpha
9+
- 4f1183e: Remove references to Webpack 4, as we currently on support Node 18+.
10+
- c1fdbd6: Fix retry when fetching by throwing custom error if response is not okay
11+
- d28a2e4: Break from retry loop when the response is ok
12+
- 7c55993: Rename uploaderOverrides to uploadOverrides, remove url from uploadOverrides, and removal of repoToken/globalUploadToken in favour of just uploadToken.
13+
- 36ed299: Alpha release of Codecov bundler plugins
14+
- 562ac0c: Adjust peer dep versions to use x-range instead of caret
15+
- 48b6e90: Move bundler-core test deps to dev deps
16+
- c755a5c: Add missing outputPath to output stats file
17+
- Updated dependencies [becd728]
18+
- Updated dependencies [543a526]
19+
- Updated dependencies [4f1183e]
20+
- Updated dependencies [c1fdbd6]
21+
- Updated dependencies [d28a2e4]
22+
- Updated dependencies [7c55993]
23+
- Updated dependencies [36ed299]
24+
- Updated dependencies [562ac0c]
25+
- Updated dependencies [48b6e90]
26+
- Updated dependencies [c755a5c]
27+
- @codecov/bundler-plugin-core@0.0.1
28+
329
## 0.0.1-alpha.3
430

531
### Patch Changes

packages/webpack-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Codecov Webpack Plugin
88

99
> [!WARNING]
10-
> These plugins are currently in alpha and are subject to change.
10+
> These plugins are currently in beta and are subject to change.
1111
1212
> A Webpack plugin that provides bundle analysis support for Codecov.
1313

packages/webpack-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codecov/webpack-plugin",
3-
"version": "0.0.1-alpha.3",
3+
"version": "0.0.0",
44
"description": "Official Codecov Webpack plugin",
55
"author": "Codecov",
66
"license": "MIT",

0 commit comments

Comments
 (0)