Skip to content

chore(deps): update dependency @dotenvx/dotenvx to v1.66.0#8

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dotenvx-dotenvx-1.x
Open

chore(deps): update dependency @dotenvx/dotenvx to v1.66.0#8
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dotenvx-dotenvx-1.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jan 10, 2025

This PR contains the following updates:

Package Change Age Confidence
@dotenvx/dotenvx 1.32.01.66.0 age confidence

Release Notes

dotenvx/dotenvx (@​dotenvx/dotenvx)

v1.66.0

Compare Source

Added

v1.65.3

Compare Source

Changed
  • Improve spinner message blinking with simpler --no-spinner flag passed to ops (#​814)

v1.65.2

Compare Source

Changed
  • Improve spinner message coordination between dotenvx and dotenvx-ops (#​813)

v1.65.1

Compare Source

Changed
  • Prompts from ops should bubble up (#​812)

v1.65.0

Compare Source

Added
  • Add support for replaceing duplicate keys with different values (#​806)

v1.64.0

Compare Source

Added
  • Add optional dotenvx armor command.
    • armor up armor private key
    • armor down dearmor private key
    • armor push push armored key (from .env.keys)
    • armor pull pull armored key (into .env.keys)

Move private keys off device and under access control with Dotenvx Ops ⛨. Learn more

v1.63.0

Compare Source

Added
  • Add support for encrypted values passed to --env flag (#​804)
  • Add support for --format=colon in order to support cloudflare's wrangler --var flag format (#​804)

v1.62.0

Compare Source

Added
  • Add support for config({ envs }). unlocks simpler cloudflare worker integration (#​803)
$ dotenvx encrypt -f .env.txt
// src/index.js
import envSrc from '../.env.txt'
import dotenvx from '@​dotenvx/dotenvx'

const config = dotenvx.config({ envs: [{ type: 'env', value: envSrc, privateKeyName: 'DOTENV_PRIVATE_KEY' }] })
const envx = config.parsed

export default {
  async fetch(request, env, ctx) {
    return new Response(`Hello ${envx.HELLO}`)
  }
}
"scripts": {
  "deploy": "wrangler deploy",
  "dev": "wrangler dev --var $(dotenvx keypair -f .env.txt --format=colon)",
  "start": "wrangler dev --var $(dotenvx keypair -f .env.txt --format=colon)",
  "test": "vitest"
},

v1.61.6

Compare Source

Changed
  • Guard against command substitution following encrypted: (#​802)

v1.61.5

Compare Source

Changed
  • Support --hostname flag to dotenvx-ops.login (#​801)

v1.61.4

Compare Source

Changed
  • Respect SIGINT handler completion (#​798)

v1.61.3

Compare Source

Changed
  • Tighten up ext precommit --install message (#​797)

v1.61.2

Compare Source

Changed
  • For Ops ⛨ users surface stderr (#​796)

v1.61.1

Compare Source

  • Faster coldstarts! (#​781)
  • Patch dotenvx precommit|prebuild shorthand (#​793)

v1.61.0

Compare Source

Added
  • Add login and logout method that proxy to dotenvx-ops login/logout (#​780)
  • Note: dotenvx continues to make zero outgoing HTTP requests and includes no telemetry. Outgoing requests occur only if you explicitly install the dotenvx-ops SDK or CLI.

v1.60.2

Compare Source

Changed
  • Communicate local key and armored key (for Ops stored keys) (#​778)

v1.60.1

Compare Source

Added
  • Added missing + key ⛨ for Ops stored keys (#​777)

v1.60.0

Compare Source

Added
  • Add spinner with loading messages
    • injecting (run)
    • encrypting (encrypt, set)
    • decrypting (decrypt, get)
    • rotating (rotate)
    • retrieving (keypair)

v1.59.1

Compare Source

Added
  • add HELLO key to the kit sample to match most of our examples in the README

v1.59.0

Compare Source

Changed
  • encrypt and set now create a .env file if one does not exist (#​771)
  • pass --no-create to prevent file creation

v1.58.0

Compare Source

Changed
  • Changed runtime injection message to format ⟐ injecting env (N) from FILE · dotenvx@VERSION (#​770)

v1.57.5

Compare Source

Changes
  • Improve already installed message (#​768)

v1.57.4

Compare Source

Changes

v1.57.3

Compare Source

Changes
  • Simplify installed success message (#​766)

v1.57.2

Compare Source

Changes
  • Ran npm audit to update package-lock.json (#​763)

v1.57.1

Compare Source

Changes
  • improved error logs and compacted most to a single line (#​755)

  • introduced leading log glyphs as a visual status language:

    • success action (encrypted)
    • success action (set plain value, decrypted)
    • success action (rotated)
    • informational no-op (no changes)
    • success action for generated/updated support files
    • warning
    • error

v1.57.0

Compare Source

Changed
  • color and formatting changes to outputs (#​754)

v1.56.0

Compare Source

Changed
  • ops off flag — now respected by get, keypair, rotate, and encrypt (#​750)
  • --pp alias — added as shorthand for --pretty-print; toward sunsetting -pp (#​750)
Removed
  • Remove support for .env.vault files (#​750)

v1.55.1

Compare Source

Added
  • Respect dotenvx-ops status (on|off) (#​749)

v1.55.0

Compare Source

Added
Removed
  • Remove ProKeypair logic

v1.54.1

Compare Source

Changed
  • Fix npm publish

v1.53.0

Compare Source

Removed
  • Remove radar. It has been a year since replaced by ops. (#​743)

v1.52.0

Compare Source

Added
  • Pass log level options to main.set (#​731)

v1.51.4

Compare Source

Changed
  • Change description of dotenvx-ops to better reflect its tooling as operational primitives on top of dotenvx for production use cases. (#​721)

v1.51.3

Compare Source

Added
  • Add hint on .env.keys for dotenvx ops backup. Dotenvx Ops Backup lets you back up your private keys securely with just a single command. It's a convenient alterantive to manually copy/pasting them in and out of 1Password. (#​718)

v1.51.2

Compare Source

Changed

This will allow us to start dogfooding our own solution for third-party API key rotation. Third-party API key rotation would drastically improve security industry wide. Please get in touch if this is interesting to you.

v1.51.1

Compare Source

Added
  • Add opsOff type information

v1.51.0

Compare Source

Added
  • Add config({opsOff: true}) options and --ops-off flag for turning off Dotenvx Ops features. (#​680)

v1.50.1

Compare Source

Removed
  • Remove listed command to radar (now ops) (#​678)

v1.50.0

Compare Source

Added
  • Add optional dotenvx ops command (#​677)
  • Ops is a coming rename of Radar. Radar will become a feature inside ops.
  • With dotenvx ops use dotenvx across your team, infrastructure, agents, and more.
 _______________________________________________________________________
|                                                                       |
|  Dotenvx Ops: Commercial Tooling for Dotenvx                          |
|                                                                       |
|  ░▒▓██████▓▒░░▒▓███████▓▒░ ░▒▓███████▓▒░                              |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░                                     |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░                                     |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░ ░▒▓██████▓▒░                               |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░             ░▒▓█▓▒░                              |
| ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░             ░▒▓█▓▒░                              |
|  ░▒▓██████▓▒░░▒▓█▓▒░      ░▒▓███████▓▒░                               |
|                                                                       |
|  Use dotenvx across your team, infrastructure, agents, and more.      |
|                                                                       |
|  Learn more at https://dotenvx.com/ops                                |
|_______________________________________________________________________|

v1.49.1

Compare Source

Changed
  • 🐞 patch bug with variable expansion of single quoted values (#​675)

v1.49.0

Compare Source

Added
  • For precommit and prebuild, ignore .env.x file like we do with .env.vault file. (#​666)

v1.48.4

Compare Source

Removed
  • Remove unnecessary use of eval in proKeypair helper (#​654)

v1.48.3

Compare Source

Changed
  • Include privateKeyName and privateKey on internal processedEnv object (#​649)

v1.48.2

Compare Source

Changed
  • Check radar status before sending (#​646)

v1.48.1

Compare Source

Changed
  • Send beforEnv and afterEnv to Radar if user has installed (#​645)

v1.48.0

Compare Source

Added
  • Include beforeEnv and afterEnv for user debugging (#​644)

v1.47.7

Compare Source

Changed
  • src should be in internal processEnv object (#​643)

v1.47.6

Compare Source

Changed
  • Make Radar call non-blocking (#​642)

v1.47.5

Compare Source

Changed
  • Add resilient handling of any Radar failures (#​639)

v1.47.4

Compare Source

Changed

v1.47.3

Compare Source

Added
  • Send to radar#observe if Radar installed by user (#​631)
Removed
  • Remove cli in package.json (#​632)

v1.47.2

Compare Source

Added
  • Export cli in package.json (#​629)

v1.47.1

Compare Source

Added
  • Add convenience log that radar active 📡 when dotenvx-radar is installed (#​625)

v1.47.0

Compare Source

Added
  • Add optional dotenvx radar command (#​624)
  • Radar is an early access commercial extension for dotenvx that will auto backup your .env files.
 _______________________________________________________________________
|                                                                       |
|  Dotenvx Radar: Env Observability                                     |
|                                                                       |
|  ░▒▓███████▓▒░ ░▒▓██████▓▒░░▒▓███████▓▒░ ░▒▓██████▓▒░░▒▓███████▓▒░    |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|  ░▒▓███████▓▒░░▒▓████████▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓████████▓▒░▒▓███████▓▒░    |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|  ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░   |
|                                                                       |
|  Observe, version, and back up your environment variables at runtime. |
|                                                                       |
|  Purchase lifetime access at https://dotenvx.com/radar                |
|                                                                       |
| --------------------------------------------------------------------- |
| - thank you for using dotenvx! - @​motdotla                            |
|_______________________________________________________________________|

v1.46.0

Compare Source

Added
  • Add error when hoisting issue experienced around commander.js (#​623)
Removed
  • Remove git-dotenvx and git dotenvx shorthand (#​621)

v1.45.2

Compare Source

Changed
  • Minor README updates

v1.45.1

Compare Source

Changed
  • Include setLogName and setLogVersion in config (#​613)

v1.45.0

Compare Source

Added
  • Add logger.setName and logger.setVersion for customization of logger (#​612)

v1.44.2

Compare Source

Changed
  • Clarify license is BSD-3.

v1.44.1

Compare Source

Changed

v1.44.0

Compare Source

Added

v1.43.0

Compare Source

Removed
  • Remove errorv, errornocolor, blank from logger options (#​584)
Changed
  • Replace instances of console.error with logger.error (#​584)

v1.42.2

Compare Source

Changed
  • Fix --force flag work with ?force=true (2776715)

v1.42.1

Compare Source

Added
  • Add --force flag to install.sh (0b8d21c)

v1.42.0

Compare Source

Added
  • Add ability to override the os and arch via install.sh and dotenvx.sh (3ded752)

v1.41.0

Compare Source

Added
  • Add [directory] argument to precommit and prebuild (#​572)

v1.40.1

Compare Source

Changed

v1.40.0

Compare Source

Added
  • Smarter ext precommit and ext prebuild – catch duplicate KEYs in the same .env file where one is mistakenly left unencrypted (#​567)

v1.39.1

Compare Source

Added
  • Add version to homebrew formula (#​564)

v1.39.0

Compare Source

Added
  • Add --convention flow option to dotenvx run (#​551)
Changed

v1.38.5

Compare Source

Added
  • 🐞 Add config.d.ts file to fix type error when loading dotenvx/dotenvx/config with dynamic import (#​547)

v1.38.4

Compare Source

Changed
  • 🐞 Fix blank line disappearing after encrypting empty value (#​542)

v1.38.3

Compare Source

Changed
  • 🐞 Fix self-referencing expansion when key exists already in process.env (#​536)

v1.38.2

Compare Source

Added
  • Add typescript types for main.get.

v1.38.1

Compare Source

Changed
  • Support encrypt when mutliline contains windows CRLF (\r\n) (#​534)

Note: dotenvx will convert these \r\n newlines to \n. Our recommendation is to stop using CRLF - its origin is from typewriter days. Instead, set your editor or gitattributes to use LF.

v1.38.0

Compare Source

Changed
  • Command substitution failures no longer halt further processing of keys in a .env file (#​533)
  • A more helpful error is raised if a command substitution failure occurs (#​533)

v1.37.0

Compare Source

Added
  • add dotenvx rotate command 🎉 (#​530)

also: our whitepaper is released as a draft.

v1.36.0

Compare Source

Changed
  • --strict flag respects (doesn't throw) anything in --ignore flag (#​527)

v1.35.0

Compare Source

Added
  • npx dotenvx precommit support as a convenience (#​523)
  • main.get method (#​524)

The addition of main.get facilitates what we term Decryption at Access, a concept explored in greater detail in our whitepaper.

v1.34.0

Compare Source

Added
  • main.set method now writes to files (#​517)

v1.33.0

Compare Source

Added
  • support ESM import convenience import '@​dotenvx/dotenvx/config' (#​508)

v1.32.1

Compare Source

Changed
  • remove duplicated help messages (#​504)

Configuration

📅 Schedule: (UTC)

  • 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.32.1 chore(deps): update dependency @dotenvx/dotenvx to v1.33.0 Jan 14, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 6093373 to 600c594 Compare January 14, 2025 03:38
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.33.0 chore(deps): update dependency @dotenvx/dotenvx to v1.34.0 Jan 26, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 600c594 to fbbabcf Compare January 26, 2025 07:09
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from fbbabcf to 225b44d Compare February 8, 2025 11:56
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.34.0 chore(deps): update dependency @dotenvx/dotenvx to v1.35.0 Feb 8, 2025
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.35.0 chore(deps): update dependency @dotenvx/dotenvx to v1.36.0 Feb 15, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 225b44d to 04ae5b4 Compare February 15, 2025 11:04
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.36.0 chore(deps): update dependency @dotenvx/dotenvx to v1.37.0 Feb 21, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 04ae5b4 to 6da0440 Compare February 21, 2025 19:56
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.37.0 chore(deps): update dependency @dotenvx/dotenvx to v1.38.2 Feb 25, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 6da0440 to e79de3b Compare February 25, 2025 08:01
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.38.2 chore(deps): update dependency @dotenvx/dotenvx to v1.38.3 Feb 28, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from e79de3b to 13f7887 Compare February 28, 2025 07:51
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.38.3 chore(deps): update dependency @dotenvx/dotenvx to v1.38.4 Mar 5, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 13f7887 to 90d4078 Compare March 5, 2025 04:08
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.38.4 chore(deps): update dependency @dotenvx/dotenvx to v1.38.5 Mar 13, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch 2 times, most recently from 2e7ba28 to fe4f5cc Compare March 19, 2025 08:12
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.38.5 chore(deps): update dependency @dotenvx/dotenvx to v1.39.0 Mar 19, 2025
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.39.0 chore(deps): update dependency @dotenvx/dotenvx to v1.39.1 Apr 5, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from fe4f5cc to 4a811a6 Compare April 5, 2025 11:29
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.39.1 chore(deps): update dependency @dotenvx/dotenvx to v1.40.1 Apr 18, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch 2 times, most recently from e41776f to 73e3e78 Compare April 19, 2025 23:23
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.40.1 chore(deps): update dependency @dotenvx/dotenvx to v1.41.0 Apr 19, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 73e3e78 to 78f6b1d Compare May 1, 2025 16:17
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.41.0 chore(deps): update dependency @dotenvx/dotenvx to v1.42.0 May 1, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 78f6b1d to 9a59a35 Compare May 3, 2025 11:58
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.42.0 chore(deps): update dependency @dotenvx/dotenvx to v1.42.2 May 3, 2025
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.45.1 chore(deps): update dependency @dotenvx/dotenvx to v1.45.2 Jul 6, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from f3383ba to 1c01806 Compare July 14, 2025 00:03
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.45.2 chore(deps): update dependency @dotenvx/dotenvx to v1.47.5 Jul 14, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 1c01806 to 80eeb85 Compare July 27, 2025 11:57
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.47.5 chore(deps): update dependency @dotenvx/dotenvx to v1.48.3 Jul 27, 2025
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.48.3 chore(deps): update dependency @dotenvx/dotenvx to v1.48.4 Aug 4, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 80eeb85 to e530915 Compare August 4, 2025 19:41
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from e530915 to 7d7c182 Compare August 21, 2025 04:10
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.48.4 chore(deps): update dependency @dotenvx/dotenvx to v1.49.0 Aug 21, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 7d7c182 to 1554ea1 Compare September 16, 2025 20:13
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.49.0 chore(deps): update dependency @dotenvx/dotenvx to v1.49.1 Sep 16, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 1554ea1 to caad97c Compare September 19, 2025 06:30
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.49.1 chore(deps): update dependency @dotenvx/dotenvx to v1.50.1 Sep 19, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from caad97c to 9394644 Compare September 25, 2025 04:12
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.50.1 chore(deps): update dependency @dotenvx/dotenvx to v1.51.0 Sep 25, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 9394644 to 04d0fbf Compare October 25, 2025 04:03
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 04d0fbf to c7e9c6b Compare November 8, 2025 08:03
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.51.0 chore(deps): update dependency @dotenvx/dotenvx to v1.51.1 Nov 8, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from c7e9c6b to 9673459 Compare December 13, 2025 08:15
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.51.1 chore(deps): update dependency @dotenvx/dotenvx to v1.51.2 Dec 13, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 9673459 to b2bf377 Compare December 30, 2025 07:30
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.51.2 chore(deps): update dependency @dotenvx/dotenvx to v1.51.4 Dec 30, 2025
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from b2bf377 to f436759 Compare January 23, 2026 04:14
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.51.4 chore(deps): update dependency @dotenvx/dotenvx to v1.52.0 Jan 23, 2026
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from f436759 to ad413d8 Compare February 3, 2026 20:07
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from ad413d8 to 22d9983 Compare February 13, 2026 11:41
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 22d9983 to 782a67f Compare March 8, 2026 11:48
@renovate renovate Bot changed the title chore(deps): update dependency @dotenvx/dotenvx to v1.52.0 chore(deps): update dependency @dotenvx/dotenvx to v1.54.1 Mar 8, 2026
@renovate renovate Bot force-pushed the renovate/dotenvx-dotenvx-1.x branch from 782a67f to a5b0e84 Compare March 14, 2026 18:47
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.

0 participants