Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.9.2 #1807

Merged
merged 34 commits into from Jun 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
537ca29
Add missing meta repository to published packages
aaronadamsCA May 27, 2021
7172803
Merge pull request #1779 from aaronadamsCA/package-repository-metadata
hasparus May 27, 2021
b55d6f3
chore(deps): bump dns-packet from 1.3.1 to 1.3.4
dependabot[bot] May 27, 2021
682cf91
Docs: Move homepage to root path (#1783)
lachlanjc May 30, 2021
8621ed7
chore(deps-dev): bump @babel/preset-env from 7.14.1 to 7.14.4
dependabot[bot] May 31, 2021
e4ce970
chore(deps): bump @testing-library/react from 11.2.6 to 11.2.7
dependabot[bot] May 31, 2021
0b7fcac
chore(deps): bump type-fest from 1.0.2 to 1.1.3
dependabot[bot] May 31, 2021
cb7062c
chore(deps-dev): bump auto from 10.29.0 to 10.29.2
dependabot[bot] May 31, 2021
f868804
chore(deps): bump polished from 4.1.2 to 4.1.3
dependabot[bot] May 31, 2021
f9ad529
chore(deps-dev): bump execa from 5.0.0 to 5.0.1
dependabot[bot] May 31, 2021
e8ae5f0
chore(deps-dev): bump lint-staged from 10.5.4 to 11.0.0
dependabot[bot] May 31, 2021
a7c856c
chore: remove duplicate proseWrap config from prettier.config.js
hasparus Jun 1, 2021
52f77e0
docs(components): fix Paragraph default variant
bernharduw Jun 5, 2021
b597b1d
Merge pull request #1795 from bernharduw/patch-1
hasparus Jun 5, 2021
af95e02
chore(deps-dev): bump @auto-it/omit-commits from 10.29.0 to 10.29.2
dependabot[bot] Jun 7, 2021
a7d2540
chore(deps-dev): bump @auto-it/all-contributors from 10.29.0 to 10.29.2
dependabot[bot] Jun 7, 2021
79a6dbf
chore(deps-dev): bump @auto-it/magic-zero from 10.27.1 to 10.29.2
dependabot[bot] Jun 7, 2021
609010c
fix(ci): run release only if secret is present
hasparus Jun 7, 2021
55e286a
fix(ci): update CodeChecks to 1.10.0-beta
hasparus Jun 7, 2021
50ef6f1
chore(ci): document release_check job
hasparus Jun 7, 2021
ee5ea9b
Merge pull request #1803 from system-ui/fix-ci
hasparus Jun 7, 2021
b20a0ca
Merge pull request #1797 from system-ui/dependabot/npm_and_yarn/auto-…
hasparus Jun 7, 2021
67ad18e
Merge pull request #1801 from system-ui/dependabot/npm_and_yarn/auto-…
hasparus Jun 7, 2021
e59ba09
Merge pull request #1799 from system-ui/dependabot/npm_and_yarn/auto-…
hasparus Jun 7, 2021
13059b2
chore(deps-dev): bump @preconstruct/cli from 2.0.7 to 2.1.0
dependabot[bot] Jun 7, 2021
3061b3e
chore(deps): bump type-fest from 1.1.3 to 1.2.0
dependabot[bot] Jun 7, 2021
02af87d
chore(deps-dev): bump @auto-it/first-time-contributor
dependabot[bot] Jun 7, 2021
e8ea6d8
chore(deps-dev): bump typescript from 4.2.4 to 4.3.2
dependabot[bot] Jun 7, 2021
c7ff085
chore(deps-dev): bump @auto-it/conventional-commits
dependabot[bot] Jun 7, 2021
714970c
Merge pull request #1800 from system-ui/dependabot/npm_and_yarn/auto-…
hasparus Jun 7, 2021
a7ba5b0
Merge pull request #1806 from system-ui/dependabot/npm_and_yarn/auto-…
hasparus Jun 7, 2021
51c6564
Merge pull request #1805 from system-ui/dependabot/npm_and_yarn/type-…
hasparus Jun 7, 2021
81912ca
Merge pull request #1804 from system-ui/dependabot/npm_and_yarn/preco…
hasparus Jun 7, 2021
b5fb48e
Merge pull request #1802 from system-ui/dependabot/npm_and_yarn/types…
hasparus Jun 7, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -38,14 +38,27 @@ jobs:
CC_SECRET: ${{ secrets.CC_SECRET }}
if: ${{ env.CC_SECRET != '' }}

release:
# Dependabot and PRs from forks should not release canaries,
# but secrets and env vars cannot be read in `job.if`, so we check if
# GH_TOKEN is present before attempting to release.
release_check:
runs-on: ubuntu-latest
needs: [build]
steps:
- run: echo "::set-output name=CAN_RELEASE::${{ env.CAN_RELEASE }}"
env:
CAN_RELEASE: ${{ secrets.AUTO_RELEASE_GH_TOKEN != '' }}

release:
runs-on: ubuntu-latest
needs: [release_check]
if: >
!contains(github.event.head_commit.message, 'ci skip') &&
!contains(github.event.head_commit.message, 'skip ci') && (
github.event_name == 'push' ||
github.event.pull_request.head.repo.full_name == github.repository
) && (
needs.release_check.outputs.CAN_RELEASE == 'true'
)
steps:
- uses: actions/checkout@v2
Expand Down
9 changes: 9 additions & 0 deletions dependabot.yml
@@ -0,0 +1,9 @@
# see https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
ignore:
- dependency-name: "@codechecks/client"
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -40,7 +40,7 @@
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.10",
"@codechecks/build-size-watcher": "^0.1.0",
"@codechecks/client": "0.1.10",
"@codechecks/client": "0.1.10-beta",
"@emotion/jest": "^11.3.0",
"@preconstruct/cli": "^2",
"@testing-library/react": "^11.2.6",
Expand All @@ -59,7 +59,7 @@
"jest-canvas-mock": "^2.3.1",
"jest-mock-console": "^1.0.1",
"lerna": "^4.0.0",
"lint-staged": "10.5.4",
"lint-staged": "11.0.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
Expand Down
1 change: 1 addition & 0 deletions packages/color/package.json
Expand Up @@ -14,5 +14,6 @@
"access": "public"
},
"license": "MIT",
"repository": "system-ui/theme-ui",
"gitHead": "621199460fa3bdb0100748441e62517b7529b8c8"
}
2 changes: 1 addition & 1 deletion packages/components/index.d.ts
Expand Up @@ -92,7 +92,7 @@ export interface ParagraphProps
* Primitive typographic component.
*
* Text style variants can be defined in the theme.text object.
* The Paragraph component uses theme.text.default as its default variant style.
* The Paragraph component uses theme.text.paragraph as its default variant style.
* @see https://theme-ui.com/components/paragraph
*/
export const Paragraph: ForwardRef<HTMLParagraphElement, ParagraphProps>
Expand Down
1 change: 1 addition & 0 deletions packages/components/package.json
Expand Up @@ -23,6 +23,7 @@
},
"author": "Brent Jackson <jxnblk@gmail.com>",
"license": "MIT",
"repository": "system-ui/theme-ui",
"devDependencies": {
"react": "^17.0.1"
}
Expand Down
1 change: 1 addition & 0 deletions packages/css/package.json
Expand Up @@ -8,6 +8,7 @@
"scripts": {},
"author": "Brent Jackson",
"license": "MIT",
"repository": "system-ui/theme-ui",
"publishConfig": {
"access": "public"
},
Expand Down
1 change: 1 addition & 0 deletions packages/custom-properties/package.json
Expand Up @@ -7,6 +7,7 @@
"module": "dist/theme-ui-custom-properties.esm.js",
"author": "Alex Page <alex@alexpage.com.au>",
"license": "MIT",
"repository": "system-ui/theme-ui",
"scripts": {},
"publishConfig": {
"access": "public"
Expand Down
1 change: 1 addition & 0 deletions packages/docs/package.json
Expand Up @@ -5,6 +5,7 @@
"main": "dist/docs.cjs.js",
"author": "Brent Jackson <jxnblk@gmail.com>",
"license": "MIT",
"repository": "system-ui/theme-ui",
"scripts": {
"start": "DEBUG=gatsby:query-watcher gatsby develop",
"build": "gatsby build",
Expand Down
3 changes: 1 addition & 2 deletions packages/docs/src/components/layout.js
Expand Up @@ -48,8 +48,7 @@ export default function DocsLayout(props) {
const fullwidth =
(props.pageContext.frontmatter &&
props.pageContext.frontmatter.fullwidth) ||
props.location.pathname === '/home' ||
props.location.pathname === '/home/'
props.location.pathname === '/'

const showNav = !props.pageContext?.frontmatter?.hidenav

Expand Down
123 changes: 0 additions & 123 deletions packages/docs/src/pages/home.mdx

This file was deleted.