Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: storybookjs/addon-knobs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.3.1
Choose a base ref
...
head repository: storybookjs/addon-knobs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.4.0
Choose a head ref
  • 8 commits
  • 4 files changed
  • 3 contributors

Commits on Nov 27, 2021

  1. 6.4.0

    shilman committed Nov 27, 2021
    Copy the full SHA
    f6a9bb3 View commit details
  2. fix gh secret

    shilman committed Nov 27, 2021
    Copy the full SHA
    23801a0 View commit details
  3. Merge pull request #40 from storybookjs/fix-gh-token

    fix gh secret
    shilman authored Nov 27, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3c46286 View commit details
  4. Copy the full SHA
    da84f4d View commit details
  5. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    68a9c41 View commit details
  6. Merge branch 'next'

    shilman committed Nov 27, 2021
    Copy the full SHA
    8d5fabb View commit details
  7. Update CHANGELOG.md [skip ci]

    Michael Shilman committed Nov 27, 2021
    Copy the full SHA
    aac23c9 View commit details
  8. Bump version to: 6.4.0 [skip ci]

    Michael Shilman committed Nov 27, 2021
    Copy the full SHA
    d70657c View commit details
Showing with 516 additions and 441 deletions.
  1. +2 −2 .github/workflows/release.yml
  2. +20 −0 CHANGELOG.md
  3. +7 −7 package.json
  4. +487 −432 yarn.lock
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ jobs:

- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
yarn release
yarn release
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# v6.4.0 (Sat Nov 27 2021)

#### 🚀 Enhancement

- 6.4.0 [#41](https://github.com/storybookjs/addon-knobs/pull/41) ([@shilman](https://github.com/shilman))

#### 🐛 Bug Fix

- fix gh secret [#40](https://github.com/storybookjs/addon-knobs/pull/40) ([@shilman](https://github.com/shilman))

#### ⚠️ Pushed to `main`

- Merge branch 'next' ([@shilman](https://github.com/shilman))

#### Authors: 1

- Michael Shilman ([@shilman](https://github.com/shilman))

---

# v6.3.1 (Sat Sep 04 2021)

#### 🐛 Bug Fix
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-knobs",
"version": "6.3.1",
"version": "6.4.0",
"description": "Storybook addon for editing props",
"keywords": [
"storybook-addons",
@@ -49,7 +49,7 @@
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.13.0",
"@emotion/jest": "^11.3.0",
"@storybook/react": "^6.3.0",
"@storybook/react": "^6.4.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
@@ -69,11 +69,11 @@
"typescript": "^3.9.7"
},
"peerDependencies": {
"@storybook/addons": "^6.3.0",
"@storybook/api": "^6.3.0",
"@storybook/components": "^6.3.0",
"@storybook/core-events": "^6.3.0",
"@storybook/theming": "^6.3.0",
"@storybook/addons": "^6.4.0",
"@storybook/api": "^6.4.0",
"@storybook/components": "^6.4.0",
"@storybook/core-events": "^6.4.0",
"@storybook/theming": "^6.4.0",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
Loading