Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
noherczeg committed Nov 16, 2023
2 parents ea55eae + 49bb0a7 commit 2a1cabe
Show file tree
Hide file tree
Showing 44 changed files with 330 additions and 176 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- develop
- release/**
paths-ignore:
- '**.md'
pull_request:
Expand Down
41 changes: 34 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,45 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: setup git config
run: |
git config user.name "blackbelt-oss"
git config user.email "[email protected]"
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
registry-url: https://registry.npmjs.org/
- run: npm i -g npm
- run: npm ci
- run: npm run build --if-present
- run: npm test
- run: npm run new-publish:ci
registry-url: 'https://registry.npmjs.org'

- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm run build

- name: Test
run: pnpm run test

- name: Publish
run: npx changeset publish
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pandino-root",
"version": "0.8.30",
"version": "0.8.31",
"license": "EPL-2.0",
"author": "Norbert Herczeg <[email protected]>",
"workspaces": [
Expand Down
14 changes: 10 additions & 4 deletions packages/@pandino/bundle-installer-dom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.8.31

### Patch Changes

- Move to new project architecture. Use pnpm, vite, vitest and changesets

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

Expand All @@ -19,25 +25,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

* **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))
- **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))

## 0.8.26 (2023-03-01)

### Bug Fixes

* **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))
- **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))

## 0.8.25 (2023-02-28)

### Bug Fixes

* **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))
- **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))

## 0.8.24 (2023-02-27)

### Bug Fixes

* **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))
- **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))

## 0.8.23 (2023-02-24)

Expand Down
6 changes: 3 additions & 3 deletions packages/@pandino/bundle-installer-dom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandino/bundle-installer-dom",
"version": "0.8.30",
"version": "0.8.31",
"description": "Install Bundles defined in a browser's DOM",
"module": "./dist/@pandino/bundle-installer-dom.mjs",
"types": "dist/@pandino/bundle-installer-dom.d.ts",
Expand Down Expand Up @@ -42,8 +42,8 @@
"dist"
],
"devDependencies": {
"@pandino/pandino-api": "workspace:^0.8.29",
"@pandino/rollup-plugin-generate-manifest": "workspace:^0.8.29",
"@pandino/pandino-api": "workspace:^0.8.31",
"@pandino/rollup-plugin-generate-manifest": "workspace:^0.8.31",
"dts-bundle-generator": "^8.1.2",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
Expand Down
14 changes: 10 additions & 4 deletions packages/@pandino/bundle-installer-nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.8.31

### Patch Changes

- Move to new project architecture. Use pnpm, vite, vitest and changesets

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

Expand All @@ -19,25 +25,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

* **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))
- **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))

## 0.8.26 (2023-03-01)

### Bug Fixes

* **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))
- **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))

## 0.8.25 (2023-02-28)

### Bug Fixes

* **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))
- **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))

## 0.8.24 (2023-02-27)

### Bug Fixes

* **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))
- **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))

## 0.8.23 (2023-02-24)

Expand Down
6 changes: 3 additions & 3 deletions packages/@pandino/bundle-installer-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandino/bundle-installer-nodejs",
"version": "0.8.30",
"version": "0.8.31",
"description": "Install Bundles defined in the filesystem",
"main": "dist/@pandino/bundle-installer-nodejs.cjs",
"module": "dist/@pandino/bundle-installer-nodejs.mjs",
Expand Down Expand Up @@ -43,8 +43,8 @@
"dist"
],
"devDependencies": {
"@pandino/pandino-api": "workspace:^0.8.29",
"@pandino/rollup-plugin-generate-manifest": "workspace:^0.8.29",
"@pandino/pandino-api": "workspace:^0.8.31",
"@pandino/rollup-plugin-generate-manifest": "workspace:^0.8.31",
"dts-bundle-generator": "^8.1.2",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
Expand Down
14 changes: 10 additions & 4 deletions packages/@pandino/configuration-management-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.8.31

### Patch Changes

- Move to new project architecture. Use pnpm, vite, vitest and changesets

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

Expand All @@ -19,25 +25,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

* **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))
- **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))

## 0.8.26 (2023-03-01)

### Bug Fixes

* **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))
- **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))

## 0.8.25 (2023-02-28)

### Bug Fixes

* **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))
- **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))

## 0.8.24 (2023-02-27)

### Bug Fixes

* **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))
- **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))

## 0.8.23 (2023-02-24)

Expand Down
6 changes: 3 additions & 3 deletions packages/@pandino/configuration-management-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandino/configuration-management-api",
"version": "0.8.30",
"version": "0.8.31",
"description": "Pandino Configuration Management API",
"main": "dist/@pandino/configuration-management-api.cjs",
"module": "dist/@pandino/configuration-management-api.mjs",
Expand Down Expand Up @@ -43,8 +43,8 @@
"dist"
],
"devDependencies": {
"@pandino/pandino-api": "workspace:^0.8.29",
"@pandino/persistence-manager-api": "workspace:^0.8.29",
"@pandino/pandino-api": "workspace:^0.8.31",
"@pandino/persistence-manager-api": "workspace:^0.8.31",
"dts-bundle-generator": "^8.1.2",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
Expand Down
14 changes: 10 additions & 4 deletions packages/@pandino/configuration-management/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.8.31

### Patch Changes

- Move to new project architecture. Use pnpm, vite, vitest and changesets

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

Expand All @@ -19,25 +25,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

* **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))
- **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))

## 0.8.26 (2023-03-01)

### Bug Fixes

* **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))
- **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))

## 0.8.25 (2023-02-28)

### Bug Fixes

* **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))
- **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))

## 0.8.24 (2023-02-27)

### Bug Fixes

* **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))
- **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))

## 0.8.23 (2023-02-24)

Expand Down
14 changes: 7 additions & 7 deletions packages/@pandino/configuration-management/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandino/configuration-management",
"version": "0.8.30",
"version": "0.8.31",
"description": "",
"main": "./dist/@pandino/configuration-management.cjs",
"module": "./dist/@pandino/configuration-management.mjs",
Expand Down Expand Up @@ -45,12 +45,12 @@
"dist"
],
"devDependencies": {
"@pandino/configuration-management-api": "workspace:^0.8.29",
"@pandino/filters": "workspace:^0.8.29",
"@pandino/pandino": "workspace:^0.8.29",
"@pandino/pandino-api": "workspace:^0.8.29",
"@pandino/persistence-manager-api": "workspace:^0.8.29",
"@pandino/rollup-plugin-generate-manifest": "workspace:^0.8.29",
"@pandino/configuration-management-api": "workspace:^0.8.31",
"@pandino/filters": "workspace:^0.8.31",
"@pandino/pandino": "workspace:^0.8.31",
"@pandino/pandino-api": "workspace:^0.8.31",
"@pandino/persistence-manager-api": "workspace:^0.8.31",
"@pandino/rollup-plugin-generate-manifest": "workspace:^0.8.31",
"dts-bundle-generator": "^8.1.2",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
Expand Down
14 changes: 10 additions & 4 deletions packages/@pandino/event-admin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.8.31

### Patch Changes

- Move to new project architecture. Use pnpm, vite, vitest and changesets

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

Expand All @@ -19,25 +25,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

* **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))
- **react-hooks:** add missing service listener cleanup ([4783a4c](https://github.com/BlackBeltTechnology/pandino/commit/4783a4c4e10211ab06f606744b3bd8b075b6a0ed))

## 0.8.26 (2023-03-01)

### Bug Fixes

* **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))
- **react-hooks:** improve service and bundle lifecycle handling ([a722ed9](https://github.com/BlackBeltTechnology/pandino/commit/a722ed9c24394e8f7369ea785c4e40b4f9a7b5fd))

## 0.8.25 (2023-02-28)

### Bug Fixes

* **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))
- **pandino:** fix root cause of initial service tracking issues ([7e2248d](https://github.com/BlackBeltTechnology/pandino/commit/7e2248d4eb3f1f1b77af0ced1a53db5e6dfcc465))

## 0.8.24 (2023-02-27)

### Bug Fixes

* **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))
- **react-hooks:** fix service tracker initial service detection ([154f0d6](https://github.com/BlackBeltTechnology/pandino/commit/154f0d6584f6fd3c25a66ec8b4389f034b431f9e))

## 0.8.23 (2023-02-24)

Expand Down
12 changes: 6 additions & 6 deletions packages/@pandino/event-admin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandino/event-admin",
"version": "0.8.30",
"version": "0.8.31",
"description": "Reference implementation of the Pandino Event Admin API",
"main": "./dist/@pandino/event-admin.cjs",
"module": "./dist/@pandino/event-admin.mjs",
Expand Down Expand Up @@ -46,11 +46,11 @@
"dist"
],
"devDependencies": {
"@pandino/event-api": "workspace:^0.8.29",
"@pandino/filters": "workspace:^0.8.29",
"@pandino/log-api": "workspace:^0.8.29",
"@pandino/pandino-api": "workspace:^0.8.29",
"@pandino/rollup-plugin-generate-manifest": "workspace:^0.8.29",
"@pandino/event-api": "workspace:^0.8.31",
"@pandino/filters": "workspace:^0.8.31",
"@pandino/log-api": "workspace:^0.8.31",
"@pandino/pandino-api": "workspace:^0.8.31",
"@pandino/rollup-plugin-generate-manifest": "workspace:^0.8.31",
"dts-bundle-generator": "^8.1.2",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
Expand Down
Loading

0 comments on commit 2a1cabe

Please sign in to comment.