这是indexloc提供的服务,不要输入任何密码
Skip to content

chore(deps): update jamesives/github-pages-deploy-action action to v4.4.0 #1851

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

Merged
merged 1 commit into from
Sep 4, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 3, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
JamesIves/github-pages-deploy-action action minor 4.1.0 -> v4.4.0

Release Notes

JamesIves/github-pages-deploy-action

v4.4.0

Compare Source

What's Changed

New Contributors

Sponsors ❤️

github  

Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.4.0

v4.3.4

Compare Source

Minor Changes

  • The branch parameter is no longer required. It now defaults to gh-pages.
  • Linting scripts have been updated to ensure that everything across the repo gets picked up.
  • Numerous dependency updates.

New Contributors

Sponsors ❤️

github  

Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.3.4

v4.3.3

Compare Source

Changes

  • Resolves an issue in some workflows that were caused by a recent change to permission handling.

v4.3.2

Compare Source

Changes

  • Resolves an issue with folder permissions that causes an issue in container workflows when rsync attempts to run.

v4.3.1

Compare Source

Changes

  • Resolves an issue caused by Git 2.36 when running the action within a container.
    • The working directory is now added to the safe.directory global directory.
    • Integration tests have been updated so one of the samples run in a Docker container so this gets picked up by integration tests in the future.

v4.3.0

Compare Source

Changes

  • Implements a new option available behind a flag, force. If set to false the action will no longer force push, instead attempting 3 times to resolve rejected commits when making parallel/subsequent deployments. In a future version false will be set as the default. Massive thanks to @​rossjrw for this feature addition.
  • Modified the Node version which the action is developed/tested against from 14 to 16.

Minor Changes

  • Third-party dependency updates.
  • Test coverage improvements.

v4.2.5

Compare Source

Minor Changes

  • Corrects an issue in the publishing pipeline that was causing workflow failures.

v4.2.4

Compare Source

Minor Changes

v4.2.3

Compare Source

Minor Changes

  • Improved action logging. This is part 1 or 2 updates that will make the logs easier to traverse. Warnings and notices are now provided so you don't need to expand the logs to get the termination message.
  • Dependency bumps across the board.

v4.2.2

Compare Source

Minor Changes

  • Introduces major version tags. You can now point your workflow to JamesIves/github-pages-deploy-action@v4 if you'd like to always have the most cutting edge changes outside of using the release branch directly.
  • The version tags for this project now include a v to be consistent with other officially provided actions by GitHub. You can use JamesIves/github-pages-deploy-action@v4.2.2 for instance. Dependabot should pick up this change automatically.

v4.2.1

Compare Source

Minor Changes

  • Resolves an issue where the operating system warning was showing incorrectly.

v4.2.0

Compare Source

Happy New Year 2022!

London

Minor Changes

  • Implements a warning if you're using an unsupported operating system. This will occur if the workflow runs within MacOS or Windows. The workflow will not be cancelled.
  • The action is now case insensitive, allowing you to make casing changes to files so long as you commit them using the git mv command prior to the workflow running. (#​895)
  • Fixes an issue that was causing single-commit to fail when using repository-name if the branch name was equal from the origin to destination. (#​665)
  • Enabled Dependabot updates for the GitHub Actions that are used as part of the projects integration tests.
  • Made improvements to the issue template.
  • Modified the dev container so it now properly runs on Node 14 when used within GitHub Codespaces.
  • Modified the default exclude list to use an enum value to ensure accuracy.
  • Dependency upgrades.

v4.1.9

Compare Source

Minor Changes

  • Dependency/security updates from third parties.

v4.1.8

Compare Source

Minor Changes

  • Library dependency and security bumps.
  • README modifications.

New Contributors

Full Changelog: JamesIves/github-pages-deploy-action@4.1.7...4.1.8

v4.1.7

Compare Source

Minor Changes
  • Dependency upgrades
  • Modified README examples to use npm ci instead of npm install in examples by @​bananer in https://github.com/JamesIves/github-pages-deploy-action/pull/934
  • Modified the git-config-email option again. If you wish to omit this field entirely you must now provide <> in the field instead of an empty string. This is due to the fact that GitHub Actions defaults all undefined fields to an empty string, causing the default behavior to not work when you don't provide a git-config-email parameter at all. You can find an example of this below.
name: Build and Deploy
on: [push]
jobs:
  build-and-deploy:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout 🛎️
        uses: actions/checkout@v2.3.1

      - name: Install and Build 🔧
        run: |
          npm install
          npm run build

      - name: Deploy 🚀
        uses: JamesIves/github-pages-deploy-action@4.1.6
        with:
          branch: gh-pages
          folder: build
          git-config-email: <>
New Contributors

Full Changelog: JamesIves/github-pages-deploy-action@4.1.6...4.1.7

v4.1.6

Compare Source

Minor Changes

  • Resolves an issue that was causing a permission error on the cleanup job. This error was caused by other actions changing directory permissions that prevented a worktree removal step from executing correctly. #​922
  • Migrated the project to Node version 14 across all integration tests, nvm file, etc.
  • Numerous third party dependency updates/fixes.
  • The git-config-email option now accepts an empty string as a valid value in a workflow. This will allow the email part of the commit signature to empty, for example Author Name <>. You can find an example of how to utilize this below. #​868
name: Build and Deploy
on: [push]
jobs:
  build-and-deploy:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout 🛎️
        uses: actions/checkout@v2.3.1

      - name: Install and Build 🔧
        run: |
          npm install
          npm run build

      - name: Deploy 🚀
        uses: JamesIves/github-pages-deploy-action@4.1.6
        with:
          branch: gh-pages
          folder: build
          git-config-email: ''

v4.1.5

Compare Source

Minor Changes

  • Resolves a bug that was causing the usage of the clean and single commit options together to fail.
  • Numerous dependency and security bumps.

v4.1.4

Compare Source

Minor Changes

  • Resolves an issue with the buffer length causing issues with very large repos (thanks to @​garazdawi)
  • Lots of dependency updates across the board.
  • Minor README adjustments.

v4.1.3

Compare Source

Minor Changes

  • Resolves a false positive error that was caused by a build cleanup step.

v4.1.2

Compare Source

Minor Changes

  • Fixed an issue that prevented you from deploying if you had a similarly named branch, ie docs and ci/docs.
  • Resolved an issue that prevents you from deploying a second time in the same workflow job. The action will now correctly cleanup branch artifacts after it's done deploying.
  • Standardized ESLint configuration, now using typescript-eslint as opposed to the GitHub configuration.
  • Documentation change/cleanup for some parts.
  • Added sponsorship automation for people who donate via GitHub Sponsors.

v4.1.1

Compare Source

Minor Changes

  • Dependency/security updates provided through Dependabot.
  • Minor tooling changes, format is now lint:format for consistency.
  • Removed ^ keyword in all dependencies within package.json.

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner September 3, 2022 10:23
@renovate renovate bot requested review from gsoltis and gaspar09 September 3, 2022 10:23
@vercel
Copy link

vercel bot commented Sep 3, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
turbo-site ✅ Ready (Inspect) Visit Preview Sep 3, 2022 at 10:23AM (UTC)

@tknickman tknickman merged commit ad23636 into main Sep 4, 2022
@tknickman tknickman deleted the renovate/jamesives-github-pages-deploy-action-4.x branch September 4, 2022 20:17
fuxingloh referenced this pull request in fuxingloh/contented Sep 9, 2022
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turborepo.org)
([source](https://togithub.com/vercel/turborepo)) | [`^1.4.3` ->
`^1.4.6`](https://renovatebot.com/diffs/npm/turbo/1.4.3/1.4.6) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/compatibility-slim/1.4.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/confidence-slim/1.4.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turborepo</summary>

###
[`v1.4.6`](https://togithub.com/vercel/turborepo/releases/tag/v1.4.6)

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.4.5...v1.4.6)

#### What's Changed

##### Internal

- fix(deps): update dependency ora to v4.1.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1854](https://togithub.com/vercel/turborepo/pull/1854)
- Don't special case version command by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/1870](https://togithub.com/vercel/turborepo/pull/1870)
- fix(deps): update dependency react-hot-toast to v2.3.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1875](https://togithub.com/vercel/turborepo/pull/1875)
- chore(deps): update jamesives/github-pages-deploy-action action to
v4.4.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1851](https://togithub.com/vercel/turborepo/pull/1851)
- chore(deps): update dependency typescript to v4.8.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1849](https://togithub.com/vercel/turborepo/pull/1849)
- chore(deps): update dependency esbuild to ^0.15.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1848](https://togithub.com/vercel/turborepo/pull/1848)
- Enable pnpm@6 testing. by
[@&#8203;7flash](https://togithub.com/7flash) in
[https://github.com/vercel/turborepo/pull/1837](https://togithub.com/vercel/turborepo/pull/1837)
- fix(deps): update dependency eslint-plugin-react to v7.31.7 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1834](https://togithub.com/vercel/turborepo/pull/1834)
- chore(deps): update dependency
[@&#8203;types/react](https://togithub.com/types/react) to v17.0.49 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1833](https://togithub.com/vercel/turborepo/pull/1833)
- Replace some 2 letter variables for readability by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/1845](https://togithub.com/vercel/turborepo/pull/1845)

##### Documentation

- Remove unused packages from docs site by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/1828](https://togithub.com/vercel/turborepo/pull/1828)
- Consolidated 'workspace' and 'package' terminology by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/1817](https://togithub.com/vercel/turborepo/pull/1817)
- Rewrote docs homepage by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/1756](https://togithub.com/vercel/turborepo/pull/1756)
- Update existing-monorepo.mdx by
[@&#8203;shemayas](https://togithub.com/shemayas) in
[https://github.com/vercel/turborepo/pull/1858](https://togithub.com/vercel/turborepo/pull/1858)
- Update Docs by [@&#8203;PhentomPT](https://togithub.com/PhentomPT) in
[https://github.com/vercel/turborepo/pull/1794](https://togithub.com/vercel/turborepo/pull/1794)
- Fix broken links on "Add to existing Monorepo" by
[@&#8203;pakaponk](https://togithub.com/pakaponk) in
[https://github.com/vercel/turborepo/pull/1836](https://togithub.com/vercel/turborepo/pull/1836)

##### Examples

- Removed parallel flag from basic example by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/1787](https://togithub.com/vercel/turborepo/pull/1787)
- Renamed storybook components by
[@&#8203;samuelhorn](https://togithub.com/samuelhorn) in
[https://github.com/vercel/turborepo/pull/1841](https://togithub.com/vercel/turborepo/pull/1841)

##### Packages

- fix(eslint): exclude variables in rule by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/1865](https://togithub.com/vercel/turborepo/pull/1865)

#### New Contributors

- [@&#8203;shemayas](https://togithub.com/shemayas) made their first
contribution in
[https://github.com/vercel/turborepo/pull/1858](https://togithub.com/vercel/turborepo/pull/1858)
- [@&#8203;7flash](https://togithub.com/7flash) made their first
contribution in
[https://github.com/vercel/turborepo/pull/1837](https://togithub.com/vercel/turborepo/pull/1837)
- [@&#8203;PhentomPT](https://togithub.com/PhentomPT) made their first
contribution in
[https://github.com/vercel/turborepo/pull/1794](https://togithub.com/vercel/turborepo/pull/1794)

**Full Changelog**:
vercel/turborepo@v1.4.5...v1.4.6

###
[`v1.4.5`](https://togithub.com/vercel/turborepo/releases/tag/v1.4.5)

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.4.4...v1.4.5)

#### What's Changed

##### Core

- Split notion of logged in into user and linked-team by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/1844](https://togithub.com/vercel/turborepo/pull/1844)

##### Documentation

- Turborepo usage. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/1827](https://togithub.com/vercel/turborepo/pull/1827)
- Remove unused
[@&#8203;react-aria/radio](https://togithub.com/react-aria/radio)
package by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/1826](https://togithub.com/vercel/turborepo/pull/1826)
- Fix broken links at "Next Steps" on "Add to Existing Monorepo" by
[@&#8203;pakaponk](https://togithub.com/pakaponk) in
[https://github.com/vercel/turborepo/pull/1835](https://togithub.com/vercel/turborepo/pull/1835)
- Upgrade Nextra by [@&#8203;shuding](https://togithub.com/shuding) in
[https://github.com/vercel/turborepo/pull/1831](https://togithub.com/vercel/turborepo/pull/1831)

**Full Changelog**:
vercel/turborepo@v1.4.4...v1.4.5

###
[`v1.4.4`](https://togithub.com/vercel/turborepo/compare/v1.4.3...v1.4.4)

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.4.3...v1.4.4)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click
this checkbox.

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/BirthdayResearch/contented).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xODYuMiIsInVwZGF0ZWRJblZlciI6IjMyLjE5NC4yIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh referenced this pull request in DeFiCh/metachain Sep 12, 2022
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turborepo.org)
([source](https://togithub.com/vercel/turborepo)) | [`^1.4.5` ->
`^1.4.6`](https://renovatebot.com/diffs/npm/turbo/1.4.5/1.4.6) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/compatibility-slim/1.4.5)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/confidence-slim/1.4.5)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turborepo</summary>

###
[`v1.4.6`](https://togithub.com/vercel/turborepo/releases/tag/v1.4.6)

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.4.5...v1.4.6)

#### What's Changed

##### Internal

- fix(deps): update dependency ora to v4.1.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1854](https://togithub.com/vercel/turborepo/pull/1854)
- Don't special case version command by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/1870](https://togithub.com/vercel/turborepo/pull/1870)
- fix(deps): update dependency react-hot-toast to v2.3.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1875](https://togithub.com/vercel/turborepo/pull/1875)
- chore(deps): update jamesives/github-pages-deploy-action action to
v4.4.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1851](https://togithub.com/vercel/turborepo/pull/1851)
- chore(deps): update dependency typescript to v4.8.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1849](https://togithub.com/vercel/turborepo/pull/1849)
- chore(deps): update dependency esbuild to ^0.15.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1848](https://togithub.com/vercel/turborepo/pull/1848)
- Enable pnpm@6 testing. by
[@&#8203;7flash](https://togithub.com/7flash) in
[https://github.com/vercel/turborepo/pull/1837](https://togithub.com/vercel/turborepo/pull/1837)
- fix(deps): update dependency eslint-plugin-react to v7.31.7 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1834](https://togithub.com/vercel/turborepo/pull/1834)
- chore(deps): update dependency
[@&#8203;types/react](https://togithub.com/types/react) to v17.0.49 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1833](https://togithub.com/vercel/turborepo/pull/1833)
- Replace some 2 letter variables for readability by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/1845](https://togithub.com/vercel/turborepo/pull/1845)

##### Documentation

- Remove unused packages from docs site by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/1828](https://togithub.com/vercel/turborepo/pull/1828)
- Consolidated 'workspace' and 'package' terminology by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/1817](https://togithub.com/vercel/turborepo/pull/1817)
- Rewrote docs homepage by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/1756](https://togithub.com/vercel/turborepo/pull/1756)
- Update existing-monorepo.mdx by
[@&#8203;shemayas](https://togithub.com/shemayas) in
[https://github.com/vercel/turborepo/pull/1858](https://togithub.com/vercel/turborepo/pull/1858)
- Update Docs by [@&#8203;PhentomPT](https://togithub.com/PhentomPT) in
[https://github.com/vercel/turborepo/pull/1794](https://togithub.com/vercel/turborepo/pull/1794)
- Fix broken links on "Add to existing Monorepo" by
[@&#8203;pakaponk](https://togithub.com/pakaponk) in
[https://github.com/vercel/turborepo/pull/1836](https://togithub.com/vercel/turborepo/pull/1836)

##### Examples

- Removed parallel flag from basic example by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/1787](https://togithub.com/vercel/turborepo/pull/1787)
- Renamed storybook components by
[@&#8203;samuelhorn](https://togithub.com/samuelhorn) in
[https://github.com/vercel/turborepo/pull/1841](https://togithub.com/vercel/turborepo/pull/1841)

##### Packages

- fix(eslint): exclude variables in rule by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/1865](https://togithub.com/vercel/turborepo/pull/1865)

#### New Contributors

- [@&#8203;shemayas](https://togithub.com/shemayas) made their first
contribution in
[https://github.com/vercel/turborepo/pull/1858](https://togithub.com/vercel/turborepo/pull/1858)
- [@&#8203;7flash](https://togithub.com/7flash) made their first
contribution in
[https://github.com/vercel/turborepo/pull/1837](https://togithub.com/vercel/turborepo/pull/1837)
- [@&#8203;PhentomPT](https://togithub.com/PhentomPT) made their first
contribution in
[https://github.com/vercel/turborepo/pull/1794](https://togithub.com/vercel/turborepo/pull/1794)

**Full Changelog**:
vercel/turborepo@v1.4.5...v1.4.6

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click
this checkbox.

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/DeFiCh/metachain).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTQuMyIsInVwZGF0ZWRJblZlciI6IjMyLjE5NC4zIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
canonbrother referenced this pull request in DeFiCh/metachain Sep 28, 2022
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turborepo.org)
([source](https://togithub.com/vercel/turborepo)) | [`^1.4.5` ->
`^1.4.6`](https://renovatebot.com/diffs/npm/turbo/1.4.5/1.4.6) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/compatibility-slim/1.4.5)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.4.6/confidence-slim/1.4.5)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turborepo</summary>

###
[`v1.4.6`](https://togithub.com/vercel/turborepo/releases/tag/v1.4.6)

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.4.5...v1.4.6)

#### What's Changed

##### Internal

- fix(deps): update dependency ora to v4.1.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1854](https://togithub.com/vercel/turborepo/pull/1854)
- Don't special case version command by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/1870](https://togithub.com/vercel/turborepo/pull/1870)
- fix(deps): update dependency react-hot-toast to v2.3.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1875](https://togithub.com/vercel/turborepo/pull/1875)
- chore(deps): update jamesives/github-pages-deploy-action action to
v4.4.0 by [@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1851](https://togithub.com/vercel/turborepo/pull/1851)
- chore(deps): update dependency typescript to v4.8.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1849](https://togithub.com/vercel/turborepo/pull/1849)
- chore(deps): update dependency esbuild to ^0.15.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1848](https://togithub.com/vercel/turborepo/pull/1848)
- Enable pnpm@6 testing. by
[@&#8203;7flash](https://togithub.com/7flash) in
[https://github.com/vercel/turborepo/pull/1837](https://togithub.com/vercel/turborepo/pull/1837)
- fix(deps): update dependency eslint-plugin-react to v7.31.7 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1834](https://togithub.com/vercel/turborepo/pull/1834)
- chore(deps): update dependency
[@&#8203;types/react](https://togithub.com/types/react) to v17.0.49 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/1833](https://togithub.com/vercel/turborepo/pull/1833)
- Replace some 2 letter variables for readability by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/1845](https://togithub.com/vercel/turborepo/pull/1845)

##### Documentation

- Remove unused packages from docs site by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/1828](https://togithub.com/vercel/turborepo/pull/1828)
- Consolidated 'workspace' and 'package' terminology by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/1817](https://togithub.com/vercel/turborepo/pull/1817)
- Rewrote docs homepage by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/1756](https://togithub.com/vercel/turborepo/pull/1756)
- Update existing-monorepo.mdx by
[@&#8203;shemayas](https://togithub.com/shemayas) in
[https://github.com/vercel/turborepo/pull/1858](https://togithub.com/vercel/turborepo/pull/1858)
- Update Docs by [@&#8203;PhentomPT](https://togithub.com/PhentomPT) in
[https://github.com/vercel/turborepo/pull/1794](https://togithub.com/vercel/turborepo/pull/1794)
- Fix broken links on "Add to existing Monorepo" by
[@&#8203;pakaponk](https://togithub.com/pakaponk) in
[https://github.com/vercel/turborepo/pull/1836](https://togithub.com/vercel/turborepo/pull/1836)

##### Examples

- Removed parallel flag from basic example by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/1787](https://togithub.com/vercel/turborepo/pull/1787)
- Renamed storybook components by
[@&#8203;samuelhorn](https://togithub.com/samuelhorn) in
[https://github.com/vercel/turborepo/pull/1841](https://togithub.com/vercel/turborepo/pull/1841)

##### Packages

- fix(eslint): exclude variables in rule by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/1865](https://togithub.com/vercel/turborepo/pull/1865)

#### New Contributors

- [@&#8203;shemayas](https://togithub.com/shemayas) made their first
contribution in
[https://github.com/vercel/turborepo/pull/1858](https://togithub.com/vercel/turborepo/pull/1858)
- [@&#8203;7flash](https://togithub.com/7flash) made their first
contribution in
[https://github.com/vercel/turborepo/pull/1837](https://togithub.com/vercel/turborepo/pull/1837)
- [@&#8203;PhentomPT](https://togithub.com/PhentomPT) made their first
contribution in
[https://github.com/vercel/turborepo/pull/1794](https://togithub.com/vercel/turborepo/pull/1794)

**Full Changelog**:
vercel/turborepo@v1.4.5...v1.4.6

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click
this checkbox.

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/DeFiCh/metachain).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTQuMyIsInVwZGF0ZWRJblZlciI6IjMyLjE5NC4zIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant