diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d56686..e3d3957 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [1.1.0](https://github.com/sws2apps/render-deployment/compare/v1.0.0...v1.1.0) (2022-11-11) + + +### Features + +* **action:** add multiple input value to allow simultanous deployment ([220e4e9](https://github.com/sws2apps/render-deployment/commit/220e4e97a64e00f567b013fbac085450df3b83f8)) +* **deps:** bump @actions/core from 1.9.1 to 1.10.0 ([2edf1ad](https://github.com/sws2apps/render-deployment/commit/2edf1add530c76b3c8a122895800509edd59f92f)) +* **deps:** bump dotenv from 16.0.2 to 16.0.3 ([470b97a](https://github.com/sws2apps/render-deployment/commit/470b97a72d714d7abecb9d674b682e3670899a03)) + # 1.0.0 (2022-09-10) diff --git a/dist/index.js b/dist/index.js index 7a22467..d1abb2a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -7753,7 +7753,7 @@ return new B(c,{type:"multipart/form-data; boundary="+b})} /***/ 9968: /***/ ((module) => { -module.exports = JSON.parse('{"_from":"dotenv@^16.0.3","_id":"dotenv@16.0.3","_inBundle":false,"_integrity":"sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==","_location":"/dotenv","_phantomChildren":{},"_requested":{"type":"range","registry":true,"raw":"dotenv@^16.0.3","name":"dotenv","escapedName":"dotenv","rawSpec":"^16.0.3","saveSpec":null,"fetchSpec":"^16.0.3"},"_requiredBy":["/"],"_resolved":"https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz","_shasum":"115aec42bac5053db3c456db30cc243a5a836a07","_spec":"dotenv@^16.0.3","_where":"/workspaces/render-deployment","bugs":{"url":"https://github.com/motdotla/dotenv/issues"},"bundleDependencies":false,"deprecated":false,"description":"Loads environment variables from .env file","devDependencies":{"@types/node":"^17.0.9","decache":"^4.6.1","dtslint":"^3.7.0","sinon":"^12.0.1","standard":"^16.0.4","standard-markdown":"^7.1.0","standard-version":"^9.3.2","tap":"^15.1.6","tar":"^6.1.11","typescript":"^4.5.4"},"engines":{"node":">=12"},"exports":{".":{"require":"./lib/main.js","types":"./lib/main.d.ts","default":"./lib/main.js"},"./config":"./config.js","./config.js":"./config.js","./lib/env-options":"./lib/env-options.js","./lib/env-options.js":"./lib/env-options.js","./lib/cli-options":"./lib/cli-options.js","./lib/cli-options.js":"./lib/cli-options.js","./package.json":"./package.json"},"homepage":"https://github.com/motdotla/dotenv#readme","keywords":["dotenv","env",".env","environment","variables","config","settings"],"license":"BSD-2-Clause","main":"lib/main.js","name":"dotenv","repository":{"type":"git","url":"git://github.com/motdotla/dotenv.git"},"scripts":{"dts-check":"tsc --project tests/types/tsconfig.json","lint":"standard","lint-readme":"standard-markdown","prerelease":"npm test","pretest":"npm run lint && npm run dts-check","release":"standard-version","test":"tap tests/*.js --100 -Rspec"},"types":"lib/main.d.ts","version":"16.0.3"}'); +module.exports = JSON.parse('{"name":"dotenv","version":"16.0.3","description":"Loads environment variables from .env file","main":"lib/main.js","types":"lib/main.d.ts","exports":{".":{"require":"./lib/main.js","types":"./lib/main.d.ts","default":"./lib/main.js"},"./config":"./config.js","./config.js":"./config.js","./lib/env-options":"./lib/env-options.js","./lib/env-options.js":"./lib/env-options.js","./lib/cli-options":"./lib/cli-options.js","./lib/cli-options.js":"./lib/cli-options.js","./package.json":"./package.json"},"scripts":{"dts-check":"tsc --project tests/types/tsconfig.json","lint":"standard","lint-readme":"standard-markdown","pretest":"npm run lint && npm run dts-check","test":"tap tests/*.js --100 -Rspec","prerelease":"npm test","release":"standard-version"},"repository":{"type":"git","url":"git://github.com/motdotla/dotenv.git"},"keywords":["dotenv","env",".env","environment","variables","config","settings"],"readmeFilename":"README.md","license":"BSD-2-Clause","devDependencies":{"@types/node":"^17.0.9","decache":"^4.6.1","dtslint":"^3.7.0","sinon":"^12.0.1","standard":"^16.0.4","standard-markdown":"^7.1.0","standard-version":"^9.3.2","tap":"^15.1.6","tar":"^6.1.11","typescript":"^4.5.4"},"engines":{"node":">=12"}}'); /***/ }) diff --git a/package.json b/package.json index bef272f..f3b67c8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "render-deployment", "description": "A GitHub Action to trigger deployment in Render.", - "version": "1.0.0", + "version": "1.1.0", "private": true, "type": "module", "homepage": "https://github.com/sws2apps/render-deployment#readme",