Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .changeset/fix-publishconfig-types.md

This file was deleted.

7 changes: 7 additions & 0 deletions apps/base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @perstack/base

## 0.0.42

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34

## 0.0.41

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perstack/base",
"version": "0.0.41",
"version": "0.0.42",
"description": "Perstack base skills for agents.",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
10 changes: 10 additions & 0 deletions apps/perstack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# perstack

## 0.0.56

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34
- @perstack/react@0.0.34
- @perstack/api-client@0.0.42
- @perstack/runtime@0.0.78

## 0.0.55

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/perstack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "perstack",
"version": "0.0.55",
"version": "0.0.56",
"description": "PerStack CLI",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
9 changes: 9 additions & 0 deletions apps/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @perstack/runtime

## 0.0.78

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34
- @perstack/api-client@0.0.42
- @perstack/base@0.0.42

## 0.0.77

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perstack/runtime",
"version": "0.0.77",
"version": "0.0.78",
"description": "Perstack Runtime",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
33 changes: 33 additions & 0 deletions packages/api-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# @perstack/api-client

## 0.0.42

### Patch Changes

- [#400](https://github.com/perstack-ai/perstack/pull/400) [`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Fixed `publishConfig.types` format in package.json files

The `types` field was incorrectly specified as an object (`{ ".": "./dist/src/index.d.ts" }`) instead of being included in the `exports` field. This caused TypeScript to fail to resolve type definitions for published packages.

Changed from:

```json
"publishConfig": {
"exports": { ".": "./dist/src/index.js" },
"types": { ".": "./dist/src/index.d.ts" }
}
```

To:

```json
"publishConfig": {
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
}
}
```

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34

## 0.0.41

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perstack/api-client",
"version": "0.0.41",
"version": "0.0.42",
"description": "Perstack API Client",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
30 changes: 30 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# @perstack/core

## 0.0.34

### Patch Changes

- [#400](https://github.com/perstack-ai/perstack/pull/400) [`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e) Thanks [@FL4TLiN3](https://github.com/FL4TLiN3)! - Fixed `publishConfig.types` format in package.json files

The `types` field was incorrectly specified as an object (`{ ".": "./dist/src/index.d.ts" }`) instead of being included in the `exports` field. This caused TypeScript to fail to resolve type definitions for published packages.

Changed from:

```json
"publishConfig": {
"exports": { ".": "./dist/src/index.js" },
"types": { ".": "./dist/src/index.d.ts" }
}
```

To:

```json
"publishConfig": {
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
}
}
```

## 0.0.33

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perstack/core",
"version": "0.0.33",
"version": "0.0.34",
"description": "Perstack Core",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/mock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @perstack/mock

## 0.0.3

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"name": "@perstack/mock",
"description": "Mock adapter for testing Perstack multi-runtime",
"author": "Wintermute Technologies, Inc.",
Expand Down
8 changes: 8 additions & 0 deletions packages/providers/anthropic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @perstack/anthropic-provider

## 0.0.3

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34
- @perstack/provider-core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/anthropic/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perstack/anthropic-provider",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"description": "Anthropic provider adapter for Perstack",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/providers/azure-openai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @perstack/azure-openai-provider

## 0.0.3

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34
- @perstack/provider-core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/azure-openai/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perstack/azure-openai-provider",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"description": "Azure OpenAI provider adapter for Perstack",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/providers/bedrock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @perstack/bedrock-provider

## 0.0.3

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34
- @perstack/provider-core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/bedrock/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perstack/bedrock-provider",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"description": "Amazon Bedrock provider adapter for Perstack",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/providers/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @perstack/provider-core

## 0.0.3

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perstack/provider-core",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"description": "Core interfaces and base classes for Perstack LLM provider adapters",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/providers/deepseek/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @perstack/deepseek-provider

## 0.0.3

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34
- @perstack/provider-core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/deepseek/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perstack/deepseek-provider",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"description": "DeepSeek provider adapter for Perstack",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/providers/google/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @perstack/google-provider

## 0.0.3

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34
- @perstack/provider-core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/google/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perstack/google-provider",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"description": "Google Generative AI provider adapter for Perstack",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/providers/ollama/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @perstack/ollama-provider

## 0.0.3

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34
- @perstack/provider-core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/ollama/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perstack/ollama-provider",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"description": "Ollama provider adapter for Perstack",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/providers/openai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @perstack/openai-provider

## 0.0.3

### Patch Changes

- Updated dependencies [[`4171080`](https://github.com/perstack-ai/perstack/commit/417108055ad2bf26f06fbf49c069aa6adcbfed2e)]:
- @perstack/core@0.0.34
- @perstack/provider-core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/openai/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perstack/openai-provider",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"description": "OpenAI provider adapter for Perstack",
"author": "Wintermute Technologies, Inc.",
"license": "Apache-2.0",
Expand Down
Loading