-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added user-agent header to Doppler provider (#22)
- Loading branch information
1 parent
0d59c21
commit a22c14c
Showing
5 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changelog | ||
|
||
## 0.1.0 (March 18, 2022) | ||
## 0.0.2 (March 24, 2022) | ||
|
||
- Initial release | ||
|
||
## 0.0.3 (April 27, 2022) | ||
|
||
- Added `user-agent` header to Doppler provider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "gitops-secrets", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"author": "Ryan Blunden <[email protected]>", | ||
"description": "Securely bundle encrypted secrets into your deployments and safely decrypt at runtime.", | ||
"repository": { | ||
|
@@ -44,7 +44,8 @@ | |
"test": "jest", | ||
"lint": "eslint ./src ./tests", | ||
"prettier": "prettier --write .", | ||
"prettier-check": "prettier --check ." | ||
"prettier-check": "prettier --check .", | ||
"prepublishOnly": "sed -i \"s/development/$npm_package_version/\" src/meta.js" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const VERSION = "development"; | ||
|
||
module.exports = { VERSION: VERSION }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters