Skip to content

Commit

Permalink
Merge pull request serverless#5494 from serverless/release-v-1-33-1
Browse files Browse the repository at this point in the history
 version bump for serverless#5492
  • Loading branch information
dschep authored Nov 15, 2018
2 parents 8138f56 + 11a6688 commit 4bcd163
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 1.33.1 (15.11.2018)
- [fix issue with `sls deploy --verbose --stage foobar`](https://github.com/serverless/serverless/pull/5492)

## Meta
- [Comparison since last release](https://github.com/serverless/serverless/compare/v1.33.0...v1.33.1)


# 1.33.0 (15.11.2018)
- [2116 consistent errors missing config](https://github.com/serverless/serverless/pull/5298)
- [Update plugin version of google-nodejs template](https://github.com/serverless/serverless/pull/5473)
Expand Down
9 changes: 9 additions & 0 deletions lib/classes/CLI.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,15 @@ describe('CLI', () => {

expect(inputToBeProcessed).to.deep.equal(expectedObject);
});

it('should be able to parse --verbose --stage foobar', () => {
cli = new CLI(serverless, ['deploy', '--verbose', '--stage', 'foobar']);
const inputToBeProcessed = cli.processInput();

const expectedObject = { commands: ['deploy'], options: { verbose: true, stage: 'foobar' } };

expect(inputToBeProcessed).to.deep.equal(expectedObject);
});
});

describe('Integration tests', function () {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "serverless",
"version": "1.33.0",
"version": "1.33.1",
"engines": {
"node": ">=4.0"
},
Expand Down

0 comments on commit 4bcd163

Please sign in to comment.