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
5 changes: 0 additions & 5 deletions .changeset/add-payload-tab.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/sync-manifest-version.md

This file was deleted.

2 changes: 2 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# @wolfcola/docs-site

## 1.1.0

## 1.0.0
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/docs-site",
"version": "1.0.0",
"version": "1.1.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions packages/changeset-sync-manifest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# @wolfcola/changeset-sync-manifest

## 1.1.0
2 changes: 1 addition & 1 deletion packages/changeset-sync-manifest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/changeset-sync-manifest",
"version": "0.0.0",
"version": "1.1.0",
"description": "Sync package.json version into manifest.json after changeset version",
"license": "MIT",
"type": "module",
Expand Down
3 changes: 3 additions & 0 deletions packages/dead-export-finder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# @wolfcola/dead-export-finder

## 1.1.0
2 changes: 1 addition & 1 deletion packages/dead-export-finder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/dead-export-finder",
"version": "0.0.0",
"version": "1.1.0",
"type": "module",
"private": false,
"description": "Find dead exports across monorepo package boundaries",
Expand Down
7 changes: 7 additions & 0 deletions packages/devtools-bridge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @wolfcola/devtools-bridge

## 1.1.0

### Patch Changes

- Updated dependencies []:
- @wolfcola/devtools-types@1.1.0

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/devtools-bridge",
"version": "1.0.0",
"version": "1.1.0",
"description": "Opt-in SDK adapter that emits AuthEvents to the WolfCola DevTools extension",
"license": "MIT",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/devtools-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @wolfcola/devtools-core

## 1.1.0

### Patch Changes

- Updated dependencies []:
- @wolfcola/devtools-types@1.1.0

## 1.0.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/devtools-core",
"version": "1.0.0",
"version": "1.1.0",
"private": true,
"description": "Shared logic for WolfCola DevTools — annotators, diagnosis, event store",
"license": "MIT",
Expand Down
15 changes: 15 additions & 0 deletions packages/devtools-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @wolfcola/devtools-extension

## 1.1.0

### Minor Changes

- [#47](https://github.com/ryanbas21/devtools/pull/47) [`f3e7c29`](https://github.com/ryanbas21/devtools/commit/f3e7c29f83e4eca83b702dad34e4ca23cb6ed09b) Thanks [@ryanbas21](https://github.com/ryanbas21)! - Add Payload tab to inspector panel, separating request/response bodies from the Headers tab into a dedicated tab matching Chrome DevTools naming conventions

### Patch Changes

- [#39](https://github.com/ryanbas21/devtools/pull/39) [`f4fcc75`](https://github.com/ryanbas21/devtools/commit/f4fcc753d18750443e09550dc4f069b01f2362f3) Thanks [@ryanbas21](https://github.com/ryanbas21)! - Automate manifest.json version sync: after `changeset version` bumps
package.json, the new `sync-manifest` CLI copies the version into
manifest.json so Chrome Web Store publishes show real version numbers.
- Updated dependencies []:
- @wolfcola/devtools-core@1.1.0
- @wolfcola/devtools-types@1.1.0

## 1.0.0

### Minor Changes
Expand Down
24 changes: 18 additions & 6 deletions packages/devtools-extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,36 @@
{
"manifest_version": 3,
"name": "OIDC Devtool",
"version": "0.1.0",
"version": "1.1.0",
"description": "Debug OIDC/OAuth2 auth flows — works standalone or with the Ping SDK",
"permissions": ["storage", "clipboardWrite", "clipboardRead"],
"permissions": [
"storage",
"clipboardWrite",
"clipboardRead"
],
"devtools_page": "devtools.html",
"background": {
"service_worker": "background/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content/content-script.js"],
"matches": [
"<all_urls>"
],
"js": [
"content/content-script.js"
],
"run_at": "document_idle",
"world": "MAIN"
},
{
"matches": ["<all_urls>"],
"js": ["content/relay.js"],
"matches": [
"<all_urls>"
],
"js": [
"content/relay.js"
],
"run_at": "document_idle"
}
],
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/devtools-extension",
"version": "1.0.0",
"version": "1.1.0",
"private": true,
"description": "WolfCola DevTools Chrome Extension",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions packages/devtools-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @wolfcola/devtools-types

## 1.1.0

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/devtools-types",
"version": "1.0.0",
"version": "1.1.0",
"description": "Shared AuthEvent schema and types for WolfCola DevTools",
"license": "MIT",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions packages/eslint-plugin-treeshake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @wolfcola/eslint-plugin-treeshake

## 1.1.0

## 1.0.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-treeshake/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/eslint-plugin-treeshake",
"version": "1.0.0",
"version": "1.1.0",
"description": "ESLint plugin that flags code patterns known to break tree-shaking",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 2 additions & 0 deletions packages/treeshake-check/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @wolfcola/treeshake-check

## 1.1.0

## 1.0.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/treeshake-check/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/treeshake-check",
"version": "1.0.0",
"version": "1.1.0",
"description": "Check whether a package can be fully tree-shaken by Rollup",
"license": "MIT",
"type": "module",
Expand Down