Skip to content

Commit

Permalink
chore: tweak ci changeset (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdjastrzebski authored Nov 26, 2024
1 parent 0a6627a commit 316299b
Show file tree
Hide file tree
Showing 22 changed files with 113 additions and 599 deletions.
5 changes: 0 additions & 5 deletions .changeset/chilly-rabbits-look.md

This file was deleted.

2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [["@callstack/byorg-*"]],
"fixed": [["@callstack/*"]],
"linked": [],
"access": "public",
"baseBranch": "main",
Expand Down
6 changes: 0 additions & 6 deletions .changeset/khaki-seas-refuse.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-sheep-learn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-moles-rescue.md

This file was deleted.

18 changes: 16 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup
uses: ./.github/actions/setup
Expand All @@ -37,3 +35,19 @@ jobs:

- name: Lint
run: pnpm run lint

check-changeset:
name: Check changeset
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup
uses: ./.github/actions/setup

- name: Check changeset
if: github.ref != 'refs/heads/main'
run: pnpm changeset status --since=origin/${{ github.base_ref }}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"test": "turbo test",
"typecheck": "turbo run typecheck",
"validate": "turbo build --force && turbo run typecheck test --force && pnpm lint",
"publish-packages": "pnpm validate && pnpm build && changeset version && changeset publish"
"release:version": "./scripts/release-version.sh",
"release:publish": "./scripts/release-publish.sh"
},
"devDependencies": {
"@callstack/eslint-config": "^15.0.0",
Expand Down
13 changes: 13 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @callstack/byorg-core

## 0.4.0

### Minor Changes

- e4c7a51: move 'ai' as peer dep, remove redundant Open AI and Anthropic deps.
- dd789a6: do not add sender id prefix for assistant group messages

### Patch Changes

- 17863b6: Pass context object to error handler.
- d8c092c: add missing exports (Middleware, etc), rename `addReference` to `addReferences`.
- @callstack/byorg-utils@0.4.0

## 0.3.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@callstack/byorg-core",
"version": "0.3.1",
"version": "0.4.0",
"type": "module",
"license": "MIT",
"author": "Szymon Chmal <[email protected]> (https://github.com/V3R0N), Maciej Jastrzebski <[email protected]> (https://github.com/mdjastrzebski), Kewin Wereszczynski <[email protected]> (https://github.com/Q1w1N)",
Expand Down Expand Up @@ -29,7 +29,7 @@
"test:watch": "vitest"
},
"dependencies": {
"@callstack/byorg-utils": "0.3.1",
"@callstack/byorg-utils": "workspace:^*",
"ts-regex-builder": "^1.8.2",
"zod": "^3.23.8"
},
Expand Down
10 changes: 10 additions & 0 deletions packages/discord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @callstack/byorg-discord

## 0.4.0

### Patch Changes

- Updated dependencies [e4c7a51]
- Updated dependencies [dd789a6]
- Updated dependencies [17863b6]
- Updated dependencies [d8c092c]
- @callstack/byorg-core@0.4.0

## 0.3.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/discord/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@callstack/byorg-discord",
"version": "0.3.1",
"version": "0.4.0",
"type": "module",
"license": "MIT",
"author": "Szymon Chmal <[email protected]> (https://github.com/V3R0N), Maciej Jastrzebski <[email protected]> (https://github.com/mdjastrzebski), Kewin Wereszczynski <[email protected]> (https://github.com/Q1w1N)",
Expand All @@ -27,7 +27,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@callstack/byorg-core": "0.3.1",
"@callstack/byorg-core": "workspace:^*",
"discord-interactions": "^4.1.0",
"discord.js": "^14.15.3"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/document-loaders/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @callstack/document-loaders

## 0.4.0

### Patch Changes

- @callstack/byorg-utils@0.4.0

## 0.3.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/document-loaders/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@callstack/document-loaders",
"version": "0.3.1",
"version": "0.4.0",
"type": "module",
"license": "MIT",
"author": "Szymon Chmal <[email protected]> (https://github.com/V3R0N), Maciej Jastrzebski <[email protected]> (https://github.com/mdjastrzebski), Kewin Wereszczynski <[email protected]> (https://github.com/Q1w1N)",
Expand All @@ -27,7 +27,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@callstack/byorg-utils": "0.3.1",
"@callstack/byorg-utils": "workspace:^*",
"@google-cloud/local-auth": "^3.0.1",
"@notionhq/client": "^2.2.15",
"google-auth-library": "^9.14.1",
Expand Down
2 changes: 2 additions & 0 deletions packages/slack-rich-text/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @callstack/slack-rich-text

## 0.4.0

## 0.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/slack-rich-text/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@callstack/slack-rich-text",
"version": "0.3.1",
"version": "0.4.0",
"type": "module",
"license": "MIT",
"author": "Kewin Wereszczynski <[email protected]> (https://github.com/Q1w1N)",
Expand Down
16 changes: 16 additions & 0 deletions packages/slack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @callstack/byorg-slack

## 0.4.0

### Minor Changes

- dd789a6: do not add sender id prefix for assistant group messages

### Patch Changes

- Updated dependencies [e4c7a51]
- Updated dependencies [dd789a6]
- Updated dependencies [17863b6]
- Updated dependencies [d8c092c]
- @callstack/byorg-core@0.4.0
- @callstack/slack-rich-text@0.4.0
- @callstack/byorg-utils@0.4.0

## 0.3.1

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/slack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@callstack/byorg-slack",
"version": "0.3.1",
"version": "0.4.0",
"type": "module",
"license": "MIT",
"author": "Szymon Chmal <[email protected]> (https://github.com/V3R0N), Maciej Jastrzebski <[email protected]> (https://github.com/mdjastrzebski), Kewin Wereszczynski <[email protected]> (https://github.com/Q1w1N)",
Expand Down Expand Up @@ -29,9 +29,9 @@
"test:watch": "vitest"
},
"dependencies": {
"@callstack/byorg-core": "0.3.1",
"@callstack/byorg-utils": "0.3.1",
"@callstack/slack-rich-text": "0.3.1",
"@callstack/byorg-core": "workspace:^*",
"@callstack/byorg-utils": "workspace:^*",
"@callstack/slack-rich-text": "workspace:^*",
"@slack/bolt": "^3.21.1",
"@slack/web-api": "^6.12.1",
"p-debounce": "^4.0.0",
Expand Down
2 changes: 2 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @callstack/byorg-utils

## 0.4.0

## 0.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@callstack/byorg-utils",
"version": "0.3.1",
"version": "0.4.0",
"type": "module",
"license": "MIT",
"author": "Szymon Chmal <[email protected]> (https://github.com/V3R0N), Maciej Jastrzebski <[email protected]> (https://github.com/mdjastrzebski), Kewin Wereszczynski <[email protected]> (https://github.com/Q1w1N)",
Expand Down
Loading

0 comments on commit 316299b

Please sign in to comment.