Skip to content

Commit

Permalink
update changelog and version (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
lissmeister authored Oct 17, 2023
1 parent 6526e48 commit ad64791
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 18 deletions.
34 changes: 19 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
## 2.15.1 (2023-10-17)
### Fixes
🐛 Fix bug with bucketName when updating multiple environments.

## 2.15.0 (2023-10-17)

### Features
🔧 config:best-practices by @ChrilleP in https://github.com/triggerfishab/lisa-cli/pull/54
👷 run prettier on PR's by @ChrilleP in https://github.com/triggerfishab/lisa-cli/pull/55
✨ template for creating PR's by @ChrilleP in https://github.com/triggerfishab/lisa-cli/pull/67
📦 Add ESLint for catching bugs by @ChrilleP in https://github.com/triggerfishab/lisa-cli/pull/75
📦 Update Cloudfront Distribution origin access identity so that it matches the one the bucket is looking for.
🔧 config:best-practices by @ChrilleP in https://github.com/triggerfishab/lisa-cli/pull/54
👷 run prettier on PR's by @ChrilleP in https://github.com/triggerfishab/lisa-cli/pull/55
✨ template for creating PR's by @ChrilleP in https://github.com/triggerfishab/lisa-cli/pull/67
📦 Add ESLint for catching bugs by @ChrilleP in https://github.com/triggerfishab/lisa-cli/pull/75
📦 Update Cloudfront Distribution origin access identity so that it matches the one the bucket is looking for.

### Changes
🛠 The program now exits if a newer version of it can be installed.
🛠 Improve checking of bucket region before executing commands against aws/s3
⬆️ bump actions/checkout action to v4 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/51
migrate renovate config by @renovate in https://github.com/triggerfishab/lisa-cli/pull/60
🛠 The program now exits if a newer version of it can be installed.
🛠 Improve checking of bucket region before executing commands against aws/s3
⬆️ bump actions/checkout action to v4 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/51
migrate renovate config by @renovate in https://github.com/triggerfishab/lisa-cli/pull/60

### Fixes
🐛 fixing bug with uninitialized variable apiKey by @jmeriksson in https://github.com/triggerfishab/lisa-cli/pull/65
⬆️ bump commander to v11 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/39
⬆️ bump conf to v11 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/42
⬆️ bump node-fetch to v3 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/43
⬆️ bump semver to v7.5.2 [security] by @renovate in https://github.com/triggerfishab/lisa-cli/pull/61
⬆️ bump aws-sdk-js-v3 monorepo to v3.427.0 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/48
🐛 fixing bug with uninitialized variable apiKey by @jmeriksson in https://github.com/triggerfishab/lisa-cli/pull/65
⬆️ bump commander to v11 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/39
⬆️ bump conf to v11 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/42
⬆️ bump node-fetch to v3 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/43
⬆️ bump semver to v7.5.2 [security] by @renovate in https://github.com/triggerfishab/lisa-cli/pull/61
⬆️ bump aws-sdk-js-v3 monorepo to v3.427.0 by @renovate in https://github.com/triggerfishab/lisa-cli/pull/48

## 2.14.2 (2023-10-11)

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { set } from "./lib/store.js"
import { checkLisaVersion } from "./lib/versions.js"

export const program = new Command()
export const LISA_VERSION = "2.15.0"
export const LISA_VERSION = "2.15.1"

resetConf()
checkNodeVersion()
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "@triggerfishab/lisa-cli",
"version": "2.15.0",
"version": "2.15.1",
"description": "CLI commands to generate a new project based on Lisa",
"main": "./index.js",
"bin": {
"lisa": "./index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"./**/*.{js,ts,tsx,json}\""
"format": "prettier --write \"./**/*.{js,ts,tsx,json}\"",
"lint": "eslint --fix ./**/*.js",
"lint:check": "eslint ./**/*.js"
},
"author": "Johan Möller",
"license": "ISC",
Expand Down

0 comments on commit ad64791

Please sign in to comment.