🌐 AI搜索 & 代理 主页
Skip to content

Commit a7b17e1

Browse files
authored
chore: release v2.12.0
2 parents 2e7a4ec + e995f28 commit a7b17e1

File tree

150 files changed

+5209
-1842
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+5209
-1842
lines changed

.bundlewatch.config.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"files": [
3+
{
4+
"path": "./dist/bootstrap-vue-icons.js",
5+
"maxSize": "60 kB"
6+
},
7+
{
8+
"path": "./dist/bootstrap-vue-icons.min.js",
9+
"maxSize": "55 kB"
10+
},
11+
{
12+
"path": "./dist/bootstrap-vue-icons.common.js",
13+
"maxSize": "65 kB"
14+
},
15+
{
16+
"path": "./dist/bootstrap-vue-icons.common.min.js",
17+
"maxSize": "60 kB"
18+
},
19+
{
20+
"path": "./dist/bootstrap-vue-icons.esm.js",
21+
"maxSize": "65 kB"
22+
},
23+
{
24+
"path": "./dist/bootstrap-vue-icons.esm.min.js",
25+
"maxSize": "60 kB"
26+
},
27+
{
28+
"path": "./dist/bootstrap-vue-icons.css",
29+
"maxSize": "1.5 kB"
30+
},
31+
{
32+
"path": "./dist/bootstrap-vue-icons.min.css",
33+
"maxSize": "1 kB"
34+
},
35+
{
36+
"path": "./dist/bootstrap-vue.js",
37+
"maxSize": "230 kB"
38+
},
39+
{
40+
"path": "./dist/bootstrap-vue.min.js",
41+
"maxSize": "100 kB"
42+
},
43+
{
44+
"path": "./dist/bootstrap-vue.common.js",
45+
"maxSize": "260 kB"
46+
},
47+
{
48+
"path": "./dist/bootstrap-vue.common.min.js",
49+
"maxSize": "145 kB"
50+
},
51+
{
52+
"path": "./dist/bootstrap-vue.esm.js",
53+
"maxSize": "260 kB"
54+
},
55+
{
56+
"path": "./dist/bootstrap-vue.esm.min.js",
57+
"maxSize": "145 kB"
58+
},
59+
{
60+
"path": "./dist/bootstrap-vue.css",
61+
"maxSize": "15 kB"
62+
},
63+
{
64+
"path": "./dist/bootstrap-vue.min.css",
65+
"maxSize": "10 kB"
66+
}
67+
],
68+
"ci": {
69+
"trackBranches": ["master", "dev"]
70+
}
71+
}

.circleci/config.yml

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

.github/ISSUE_TEMPLATE/BUG_REPORT_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ A clear and concise description of what you expected to happen.
3737

3838
If applicable, add a minimal demo link to help explain your problem. Some options for that are [CodePen](https://codepen.io/), [CodeSandbox](https://codesandbox.io/), [JS Bin](https://jsbin.com/) or [JSFiddle](https://jsfiddle.net/).
3939

40-
You can also export markup from the [Online Playground](https://bootstrap-vue.js.org/play) to _CodePen_, _CodeSandbox_ or _JSFiddle_.
40+
You can also export markup from the [Online Playground](https://bootstrap-vue.org/play) to _CodePen_, _CodeSandbox_ or _JSFiddle_.
4141

4242
### Additional context
4343

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,33 @@ A clear and concise description of what the pull request does.
88

99
**What kind of change does this PR introduce?** (check at least one)
1010

11-
- [ ] Bugfix
12-
- [ ] Feature
13-
- [ ] Enhancement
14-
- [ ] ARIA accessibility
15-
- [ ] Documentation update
11+
- [ ] Bugfix (fixes a boo-boo in the code) - `fix(...)`, requires a patch version update
12+
- [ ] Feature (adds a new feature to BootstrapVue) - `feat(...)`, requires a minor version update
13+
- [ ] Enhancement (augments an existing feature) - `feat(...)`, requires a minor version update
14+
- [ ] ARIA accessibility (fixes or improves ARIA accessibility) - `fix(...)`, requires a patch or minor version update
15+
- [ ] Documentation update (improves documentation or typo fixes) - `chore(docs)`, requires a patch version update
1616
- [ ] Other (please describe)
1717

1818
**Does this PR introduce a breaking change?** (check one)
1919

2020
- [ ] No
21-
- [ ] Yes (please describe)
21+
- [ ] Yes (please describe since breaking changes require a minor version update)
2222

2323
**The PR fulfills these requirements:**
2424

2525
- [ ] It's submitted to the `dev` branch, **not** the `master` branch
2626
- [ ] When resolving a specific issue, it's referenced in the PR's title (i.e. `[...] (fixes #xxx[,#xxx])`, where "xxx" is the issue number)
2727
- [ ] It should address only one issue or feature. If adding multiple features or fixing a bug and adding a new feature, break them into separate PRs if at all possible.
28-
- [ ] The title should follow the [**Conventional Commits**](https://www.conventionalcommits.org/) naming convention (i.e. `fix(alert): not alerting during SSR render`, `docs(badge): update pill examples`, `chore(docs): fix typo in README`, etc). **This is very important, as the `CHANGELOG` is generated from these messages.**
28+
- [ ] The title should follow the [**Conventional Commits**](https://www.conventionalcommits.org/) naming convention (i.e. `fix(alert): not alerting during SSR render`, `docs(badge): update pill examples`, `chore(docs): fix typo in README`, etc). **This is very important, as the `CHANGELOG` is generated from these messages, and determines the next version type (patch or minor).**
2929

3030
**If new features/enhancement/fixes are added or changed:**
3131

32-
- [ ] Includes documentation updates (including updating the component's `package.json` for slot and event changes)
32+
- [ ] Includes documentation updates
33+
- [ ] Includes component package.json meta section updates (prop, slot and event changes/updates)
3334
- [ ] Includes any needed TypeScript declaration file updates
34-
- [ ] New/updated tests are included and passing (if required)
35+
- [ ] New/updated tests are included and passing (required for new features and enhancements)
3536
- [ ] Existing test suites are passing
36-
- [ ] CodeCov for patch has met target
37+
- [ ] CodeCov for patch has met target (all changes/updates have been tested)
3738
- [ ] The changes have not impacted the functionality of other components or directives
3839
- [ ] ARIA Accessibility has been taken into consideration (Does it affect screen reader users or keyboard only users? Clickable items should be in the tab index, etc.)
3940

0 commit comments

Comments
 (0)