Skip to content

Commit 699630c

Browse files
github-actions[bot]GarthDB
authored andcommitted
chore: release
1 parent cd74579 commit 699630c

File tree

9 files changed

+91
-39
lines changed

9 files changed

+91
-39
lines changed

.changeset/component-diff-generator-initial.md

Lines changed: 0 additions & 35 deletions
This file was deleted.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# @adobe/spectrum-component-diff-generator
2+
3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- [#573](https://github.com/adobe/spectrum-tokens/pull/573) [`cd74579`](https://github.com/adobe/spectrum-tokens/commit/cd745798b88a137ee6fac8734cc872626fd09060) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(tools): add component schema diff generator with shared core library
8+
9+
**New Tools:**
10+
- `@adobe/spectrum-component-diff-generator` - CLI tool for comparing component schemas between versions/branches
11+
- `@adobe/spectrum-diff-core` - Shared library providing common diff functionality across tools
12+
13+
**Key Features:**
14+
- Dynamic file discovery using GitHub API
15+
- Breaking vs non-breaking change detection for JSON schemas
16+
- Support for remote-to-remote, remote-to-local, and local-to-local comparisons
17+
- Professional markdown, JSON, and CLI output formats
18+
- Integration with GitHub Actions for automated PR comments
19+
- Comprehensive test coverage with AVA
20+
21+
**CLI Usage:**
22+
23+
```bash
24+
# Compare between versions
25+
sdiff report --osv v1.0.0 --nsv v1.1.0 --format markdown
26+
27+
# Compare between branches
28+
sdiff report --osb main --nsb feature-branch --format json
29+
30+
# Local comparisons
31+
sdiff report --osv v1.0.0 --local packages/component-schemas
32+
```
33+
34+
This enables automated component schema change detection and reporting across Adobe Spectrum's design system workflow.
35+
36+
### Patch Changes
37+
38+
- Updated dependencies [[`cd74579`](https://github.com/adobe/spectrum-tokens/commit/cd745798b88a137ee6fac8734cc872626fd09060)]:
39+
- @adobe/spectrum-diff-core@1.1.0

tools/component-diff-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/spectrum-component-diff-generator",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Generates diff reports for Spectrum component schema changes with breaking change analysis",
55
"type": "module",
66
"main": "src/index.js",

tools/diff-generator/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @adobe/token-diff-generator
22

3+
## 2.3.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`cd74579`](https://github.com/adobe/spectrum-tokens/commit/cd745798b88a137ee6fac8734cc872626fd09060)]:
8+
- @adobe/spectrum-diff-core@1.1.0
9+
310
## 2.3.0
411

512
### Minor Changes

tools/diff-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/token-diff-generator",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "Generate comprehensive diffs between design token sets with support for multiple output formats including CLI, JSON, and Markdown. Detects added, deleted, renamed, deprecated, and updated tokens across different schema versions.",
55
"keywords": [
66
"design-tokens",
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# @adobe/spectrum-diff-core
2+
3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- [#573](https://github.com/adobe/spectrum-tokens/pull/573) [`cd74579`](https://github.com/adobe/spectrum-tokens/commit/cd745798b88a137ee6fac8734cc872626fd09060) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(tools): add component schema diff generator with shared core library
8+
9+
**New Tools:**
10+
- `@adobe/spectrum-component-diff-generator` - CLI tool for comparing component schemas between versions/branches
11+
- `@adobe/spectrum-diff-core` - Shared library providing common diff functionality across tools
12+
13+
**Key Features:**
14+
- Dynamic file discovery using GitHub API
15+
- Breaking vs non-breaking change detection for JSON schemas
16+
- Support for remote-to-remote, remote-to-local, and local-to-local comparisons
17+
- Professional markdown, JSON, and CLI output formats
18+
- Integration with GitHub Actions for automated PR comments
19+
- Comprehensive test coverage with AVA
20+
21+
**CLI Usage:**
22+
23+
```bash
24+
# Compare between versions
25+
sdiff report --osv v1.0.0 --nsv v1.1.0 --format markdown
26+
27+
# Compare between branches
28+
sdiff report --osb main --nsb feature-branch --format json
29+
30+
# Local comparisons
31+
sdiff report --osv v1.0.0 --local packages/component-schemas
32+
```
33+
34+
This enables automated component schema change detection and reporting across Adobe Spectrum's design system workflow.

tools/spectrum-diff-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/spectrum-diff-core",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Shared core library for Spectrum diff generation tools (tokens, component schemas, etc.)",
55
"keywords": [
66
"design-tokens",

tools/token-changeset-generator/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @adobe/token-changeset-generator
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @adobe/token-diff-generator@2.3.1
9+
310
## 0.2.0
411

512
### Minor Changes

tools/token-changeset-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/token-changeset-generator",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Generate changeset files for Spectrum token changes from tokens studio PR data",
55
"keywords": [
66
"design-tokens",

0 commit comments

Comments
 (0)