Skip to content

Commit 6c23d24

Browse files
Upcoming Release Changes (#249)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 5d4a4f5 commit 6c23d24

10 files changed

+62
-63
lines changed

.changeset/angry-cooks-sneeze.md

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

.changeset/bob-the-bundler-201-dependencies.md

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

.changeset/bob-the-bundler-229-dependencies.md

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

.changeset/bob-the-bundler-244-dependencies.md

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

.changeset/bob-the-bundler-247-dependencies.md

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

.changeset/early-apricots-dance.md

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

.changeset/mean-kings-jump.md

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

.changeset/ninety-plants-pump.md

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

CHANGELOG.md

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

3+
## 7.0.0
4+
5+
### Major Changes
6+
7+
- [#247](https://github.com/kamilkisiela/bob/pull/247)
8+
[`0a5ff75`](https://github.com/kamilkisiela/bob/commit/0a5ff7507dfc6a569fc3721bc99db45330f46517)
9+
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - Remove the `bob runify` command.
10+
11+
- [`87da001`](https://github.com/kamilkisiela/bob/commit/87da00194ad616a31f4788c63a7ebca226a2b85f)
12+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Require Node 16
13+
14+
- [#248](https://github.com/kamilkisiela/bob/pull/248)
15+
[`20117cd`](https://github.com/kamilkisiela/bob/commit/20117cd209400f1ab61c6df94c937c77bf8db7ef)
16+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Require `engines.node` entry with `bob check`
17+
command.
18+
19+
- [#253](https://github.com/kamilkisiela/bob/pull/253)
20+
[`f74688c`](https://github.com/kamilkisiela/bob/commit/f74688c024ab8bc6329a745a6c5c25114fdab454)
21+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Drop support for typescript 4.
22+
23+
### Patch Changes
24+
25+
- [#201](https://github.com/kamilkisiela/bob/pull/201)
26+
[`edf3301`](https://github.com/kamilkisiela/bob/commit/edf33014afa82c065ef4900ccbbc414cc864b1b4)
27+
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
28+
29+
- Updated dependency [`[email protected]` ↗︎](https://www.npmjs.com/package/execa/v/7.1.1) (from
30+
`6.1.0`, in `dependencies`)
31+
32+
- [#229](https://github.com/kamilkisiela/bob/pull/229)
33+
[`2519f67`](https://github.com/kamilkisiela/bob/commit/2519f6784486d5451873f51940084773ff1dd768)
34+
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
35+
36+
- Updated dependency [`typescript@^5.0.0` ↗︎](https://www.npmjs.com/package/typescript/v/4.7.4)
37+
(from `^4.7.4`, in `peerDependencies`)
38+
39+
- [#244](https://github.com/kamilkisiela/bob/pull/244)
40+
[`f7b5824`](https://github.com/kamilkisiela/bob/commit/f7b58246e0aeb00f12b8238d30c986e00aa92891)
41+
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
42+
43+
- Updated dependency [`consola@^3.0.0` ↗︎](https://www.npmjs.com/package/consola/v/3.0.0) (from
44+
`^2.15.3`, in `dependencies`)
45+
46+
- [#247](https://github.com/kamilkisiela/bob/pull/247)
47+
[`0a5ff75`](https://github.com/kamilkisiela/bob/commit/0a5ff7507dfc6a569fc3721bc99db45330f46517)
48+
Thanks [@kamilkisiela](https://github.com/kamilkisiela)! - dependencies updates:
49+
50+
- Removed dependency
51+
[`@vercel/ncc@^0.36.0` ↗︎](https://www.npmjs.com/package/@vercel/ncc/v/0.36.0) (from
52+
`dependencies`)
53+
- Removed dependency
54+
[`dependency-graph@^0.11.0` ↗︎](https://www.npmjs.com/package/dependency-graph/v/0.11.0) (from
55+
`dependencies`)
56+
- Removed dependency [`tsup@^6.5.0` ↗︎](https://www.npmjs.com/package/tsup/v/6.5.0) (from
57+
`dependencies`)
58+
359
## 6.0.0
460

561
### Major Changes
@@ -260,16 +316,16 @@
260316
| false
261317
| {
262318
/** Files to copy from the package root to dist */
263-
copy?: Array<string>
264-
}
319+
copy?: Array<string>;
320+
};
265321
/** Whether the package should be checked. */
266322
check?:
267323
| false
268324
| {
269325
/** Exports within the package that should not be checked. */
270-
skip?: Array<string>
271-
}
272-
}
326+
skip?: Array<string>;
327+
};
328+
};
273329
```
274330

275331
## 2.0.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bob-the-bundler",
3-
"version": "6.0.0",
3+
"version": "7.0.0",
44
"type": "module",
55
"description": "Bob The Bundler!",
66
"repository": {

0 commit comments

Comments
 (0)