Skip to content

Commit 50bdef9

Browse files
authored
chore(main): release dmbdb 1.2.2 (#13) (#6)
1 parent 201e15b commit 50bdef9

13 files changed

Lines changed: 2270 additions & 12049 deletions

.devcontainer/devcontainer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "DMBDB Dev Container",
3+
"image": "node:22",
4+
"workspaceFolder": "/workspace",
5+
"features": {
6+
"ghcr.io/devcontainers-extra/features/vue-cli:2": {}
7+
},
8+
"forwardPorts": [
9+
3005
10+
],
11+
"mounts": [
12+
"source=${localWorkspaceFolder},target=/workspace,type=bind"
13+
],
14+
"runArgs": [
15+
"--name=dmbdb_dev",
16+
"--hostname=dmbdb_dev",
17+
"--dns=8.8.8.8",
18+
"--dns=8.8.4.4"
19+
],
20+
"postCreateCommand": "git config --global --add safe.directory /workspace && npm install -g pnpm@latest-10 && npm config set engine-strict=true && rm -rf node_modules && pnpm store prune && pnpm add esbuild && pnpm add @parcel/watcher && pnpm install"
21+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "1.2.3"
3+
}

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for more information:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
# https://containers.dev/guide/dependabot
6+
7+
version: 2
8+
updates:
9+
- package-ecosystem: "devcontainers"
10+
directory: "/"
11+
schedule:
12+
interval: weekly
13+
14+
- package-ecosystem: "github-actions"
15+
directory: "/"
16+
schedule:
17+
interval: weekly
18+
19+
- package-ecosystem: "npm"
20+
directory: "/"
21+
schedule:
22+
interval: weekly

.github/release-please-config.json

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"release-type": "node",
4+
"changelog-path": "CHANGELOG.md",
5+
"changelog-sections": [
6+
{
7+
"type": "breaking",
8+
"section": "💥 Breaking Changes",
9+
"hidden": false
10+
},
11+
{
12+
"type": "feat",
13+
"section": "✨ Features",
14+
"hidden": false
15+
},
16+
{
17+
"type": "fix",
18+
"section": "🐛 Bug Fixes",
19+
"hidden": false
20+
},
21+
{
22+
"type": "perf",
23+
"section": "⚡ Performance Improvements",
24+
"hidden": false
25+
},
26+
{
27+
"type": "chore",
28+
"section": "🤡 Other Changes",
29+
"hidden": false
30+
},
31+
{
32+
"type": "docs",
33+
"section": "📖 Documentation",
34+
"hidden": false
35+
},
36+
{
37+
"type": "ci",
38+
"section": "🚀 CI/CD Pipeline",
39+
"hidden": false
40+
},
41+
{
42+
"type": "tests",
43+
"section": "🔧 Testing",
44+
"hidden": false
45+
},
46+
{
47+
"type": "refactor",
48+
"section": "🛠️ Refactors",
49+
"hidden": false
50+
},
51+
{
52+
"type": "style",
53+
"section": "🎨 Styles",
54+
"hidden": false
55+
},
56+
{
57+
"type": "revert",
58+
"section": "⏪ Reverts",
59+
"hidden": false
60+
},
61+
{
62+
"type": "build",
63+
"section": "🛠️ Build System",
64+
"hidden": false
65+
}
66+
],
67+
"packages": {
68+
".": {}
69+
}
70+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Conventional Commits
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
build:
9+
name: Conventional Commits
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: webiny/action-conventional-commits@v1.3.0
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
workflow_dispatch:
6+
7+
permissions:
8+
contents: write
9+
pull-requests: write
10+
11+
name: release-please
12+
13+
jobs:
14+
release-please:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: googleapis/release-please-action@v4
18+
with:
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
config-file: .github/release-please-config.json
21+
manifest-file: .github/.release-please-manifest.json

.github/workflows/release.yml

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

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Changelog
2+
3+
## [1.2.3](https://github.com/I-am-PUID-0/dmbdb/compare/dmbdb-v1.2.2...dmbdb-v1.2.3) (2025-02-28)
4+
5+
6+
### 🛠️ Refactors
7+
8+
* **pnpm:** update lockfile, pin pnpm version, add postCreateCommand ([d569954](https://github.com/I-am-PUID-0/dmbdb/commit/d56995405cf8f126e2937ecdd065fbc6e87be531))
9+
10+
## [1.2.2](https://github.com/I-am-PUID-0/dmbdb/compare/dmbdb-v1.2.1...dmbdb-v1.2.2) (2025-02-28)
11+
12+
13+
### 🚀 CI/CD Pipeline
14+
15+
* **workflow:** add GitHub Actions workflow for conventional commits ([1986fab](https://github.com/I-am-PUID-0/dmbdb/commit/1986fabe6e2e9f6df6bfaeff47014af3abff8d4d))
16+
17+
## [1.2.1](https://github.com/I-am-PUID-0/dmbdb/compare/dmbdb-v1.2.0...dmbdb-v1.2.1) (2025-02-28)
18+
19+
20+
### 🐛 Bug Fixes
21+
22+
* **proxy:** resolve WebSocket proxy crash due to undefined 'on' property ([b6f41c6](https://github.com/I-am-PUID-0/dmbdb/commit/b6f41c63824fc818426d270fe340bc61b83555b9))
23+
24+
## [1.2.0](https://github.com/I-am-PUID-0/dmbdb/compare/dmbdb-v1.1.0...dmbdb-v1.2.0) (2025-02-28)
25+
26+
27+
### ✨ Features
28+
29+
* **rtl:** update log name ([8b6a14f](https://github.com/I-am-PUID-0/dmbdb/commit/8b6a14fdabaa7be9f34aa0bc42e31a1a02866e87))
30+
31+
32+
### 🐛 Bug Fixes
33+
34+
* **proxy:** MaxListenersExceededWarning, adds uiServiceProxy ([ea89d00](https://github.com/I-am-PUID-0/dmbdb/commit/ea89d00510ee57783863f9535eda0edbb223a5a1))
35+
36+
37+
### 🤡 Other Changes
38+
39+
* **deps:** consolidate dependency updates ([d8f6287](https://github.com/I-am-PUID-0/dmbdb/commit/d8f62871ec261d3580196d28cd04b35977d4ff6c))
40+
41+
42+
### 🚀 CI/CD Pipeline
43+
44+
* **devcontainer:** add devcontainer & dependabot ([803e636](https://github.com/I-am-PUID-0/dmbdb/commit/803e636f7dc0667473b90370a76e0f6366c0fca0))
45+
* **release-please:** add release-please workflow ([f81af57](https://github.com/I-am-PUID-0/dmbdb/commit/f81af57c54c0174c03114c84ab4ffbe56a89da83))
46+
* **release-please:** add workflow_dispatch ([bda2030](https://github.com/I-am-PUID-0/dmbdb/commit/bda2030d4e6849296c20bb87b785bb8a3e21fb76))
47+
48+
49+
### 🛠️ Refactors
50+
51+
* **dependabot:** add github-actions & npm checks ([#1](https://github.com/I-am-PUID-0/dmbdb/issues/1)) ([3aff0e4](https://github.com/I-am-PUID-0/dmbdb/commit/3aff0e4e3234e3e71ad16a71a705b71da17da636))
52+
* **release-please:** add config and manifest ([63f978b](https://github.com/I-am-PUID-0/dmbdb/commit/63f978b76c7d17fdb448e0174f862ce127040f34))
53+
* **release-please:** re-add manifest, change to release-type: simple ([da1e0e0](https://github.com/I-am-PUID-0/dmbdb/commit/da1e0e0dcf40eb159a4215ced7879df33a88c9fd))
54+
* **release-please:** remove manifest ([6e0bc27](https://github.com/I-am-PUID-0/dmbdb/commit/6e0bc27cd27eb49a9ff14867ba3e0d68832e887d))
55+
* **release-please:** remove release-type ([980dc78](https://github.com/I-am-PUID-0/dmbdb/commit/980dc7861488bc1fcff30a34ce094d289f4cfaa4))

0 commit comments

Comments
 (0)