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: dotenvx/dotenvx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.29.1
Choose a base ref
...
head repository: dotenvx/dotenvx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.29.2
Choose a head ref
  • 5 commits
  • 5 files changed
  • 2 contributors

Commits on Apr 5, 2024

  1. Update login.js

    hmps authored Apr 5, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    4c1c1bc View commit details
  2. Update open.js

    hmps authored Apr 5, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    36728e3 View commit details
  3. Merge pull request #160 from hmps/fix-confirm-import

    Fix import paths for @inquirer/confirm
    motdotla authored Apr 5, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    747aa00 View commit details
  4. changelog 🪵

    motdotla committed Apr 5, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    378dabc View commit details
  5. 0.29.2

    motdotla committed Apr 5, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    549000e View commit details
Showing with 10 additions and 6 deletions.
  1. +5 −1 CHANGELOG.md
  2. +2 −2 package-lock.json
  3. +1 −1 package.json
  4. +1 −1 src/cli/actions/hub/login.js
  5. +1 −1 src/cli/actions/hub/open.js
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,11 @@

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.

## [Unreleased](https://github.com/dotenvx/dotenvx/compare/v0.29.1...main)
## [Unreleased](https://github.com/dotenvx/dotenvx/compare/v0.29.2...main)

## 0.29.2

* fix broken `hub login` and `hub open` ([#160](https://github.com/dotenvx/dotenvx/pull/160))

## 0.29.1

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.29.1",
"version": "0.29.2",
"name": "@dotenvx/dotenvx",
"description": "a better dotenv–from the creator of `dotenv`",
"author": "@motdotla",
2 changes: 1 addition & 1 deletion src/cli/actions/hub/login.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const open = require('open')
const { request } = require('undici')
const clipboardy = require('./../../../lib/helpers/clipboardy')
const { confirm } = require('@inquirer/confirm')
const confirm = require('@inquirer/confirm').default

const createSpinner = require('./../../../shared/createSpinner')
const store = require('./../../../shared/store')
2 changes: 1 addition & 1 deletion src/cli/actions/hub/open.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const openBrowser = require('open')
const { confirm } = require('@inquirer/confirm')
const confirm = require('@inquirer/confirm').default

const createSpinner = require('./../../../shared/createSpinner')
const logger = require('./../../../shared/logger')