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: oclif/plugin-warn-if-update-available
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.1
Choose a base ref
...
head repository: oclif/plugin-warn-if-update-available
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.2
Choose a head ref
  • 3 commits
  • 5 files changed
  • 3 contributors

Commits on Dec 7, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    18b1b31 View commit details
  2. fix: bump deps (#236)

    peternhale authored Dec 7, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8527a13 View commit details
  3. chore(release): 2.0.2 [ci skip]

    SF-CLI-BOT committed Dec 7, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1463155 View commit details
Showing with 246 additions and 117 deletions.
  1. +11 −6 .circleci/config.yml
  2. +3 −0 .github/dependabot.yml
  3. +7 −0 CHANGELOG.md
  4. +3 −3 package.json
  5. +222 −108 yarn.lock
17 changes: 11 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -13,16 +13,11 @@ workflows:
parameters:
os:
- linux
# - windows
- windows
node_version:
- latest
- lts
- maintenance
exclude:
- os: windows
node_version: lts
- os: windows
node_version: maintenance
- release-management/release-package:
context: SF-CLI-RELEASE-PROCESS
filters:
@@ -32,3 +27,13 @@ workflows:
requires:
- release-management/test-package
tag: core-v1
dependabot-automerge:
triggers:
- schedule:
cron: '0 2,5,8,11 * * *'
filters:
branches:
only:
- main
jobs:
- release-management/dependabot-automerge
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version: 2
updates:
- package-ecosystem: "npm"
versioning-strategy: increase
directory: "/"
schedule:
interval: "monthly"
@@ -11,3 +12,5 @@ updates:
separator: "-"
ignore:
- dependency-name: "fs-extra"
- dependency-name: "*"
update-types: ["version-update:semver-major"]
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [2.0.2](https://github.com/oclif/plugin-warn-if-update-available/compare/v2.0.1...v2.0.2) (2021-12-07)


### Bug Fixes

* bump deps ([#236](https://github.com/oclif/plugin-warn-if-update-available/issues/236)) ([8527a13](https://github.com/oclif/plugin-warn-if-update-available/commit/8527a13744a79eb4ad187b784eb8d62db25464af))

### [2.0.1](https://github.com/oclif/plugin-warn-if-update-available/compare/v2.0.0...v2.0.1) (2021-12-01)


6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@oclif/plugin-warn-if-update-available",
"description": "warns if there is a newer version of CLI released",
"version": "2.0.1",
"version": "2.0.2",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/plugin-warn-if-update-available/issues",
"dependencies": {
"@oclif/core": "^1.0.4",
"@oclif/core": "^1.0.8",
"chalk": "^4.1.0",
"debug": "^4.1.0",
"fs-extra": "^9.0.1",
@@ -27,7 +27,7 @@
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^11.0.1",
"mocha": "^8.0.1",
"oclif": "^2.0.0-main.5",
"oclif": "^2.0.0-main.14",
"ts-node": "^9.1.1",
"tslib": "^2.0.0",
"typescript": "4.4.3"
Loading