Skip to content

Commit

Permalink
Update to v2.3.1 (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvoran authored Aug 23, 2021
1 parent f3e4110 commit d5a69ce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Unreleased

## 2.3.1 (August 18th, 2021)

Improvements:
* bump normalize-url from 4.5.0 to 4.5.1 [GH-227](https://github.com/hashicorp/vault-action/pull/227)
* bump path-parse from 1.0.6 to 1.0.7 [GH-239](https://github.com/hashicorp/vault-action/pull/239)

## 2.3.0 (June 23rd, 2021)

Features:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
# ...
- name: Import Secrets
uses: hashicorp/[email protected].0
uses: hashicorp/[email protected].1
with:
url: https://vault.mycompany.com:8200
token: ${{ secrets.VaultToken }}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ const testParameter = (name, filters) => {
};

const normalizeDataURL = (urlString, {stripHash}) => {
const parts = urlString.match(/^data:(.*?),(.*?)(?:#(.*))?$/);
const parts = urlString.match(/^data:([^,]*?),([^#]*?)(?:#(.*))?$/);

if (!parts) {
throw new Error(`Invalid URL: ${urlString}`);
Expand Down

0 comments on commit d5a69ce

Please sign in to comment.