Skip to content

Commit

Permalink
AT-10890: Fix v3Utils initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
rddimon committed Nov 27, 2023
1 parent 61999f5 commit dafbe82
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [7.2.1] - 2023-11-28

### Fixed
- Fixed log is undefined when plugin is added programatically
- Updated packages

## [7.2.0] - 2023-11-24

### Fixed
Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "serverless-domain-manager",
"version": "7.2.0",
"version": "7.2.1",
"engines": {
"node": ">=14"
},
Expand Down Expand Up @@ -50,7 +50,7 @@
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.9.4",
"@types/node": "^20.10.0",
"@types/shelljs": "^0.8.15",
"aws-sdk-client-mock": "^3.0.0",
"chai": "^4.3.10",
Expand All @@ -59,7 +59,7 @@
"mocha-param": "^2.0.1",
"nyc": "^15.1.0",
"randomstring": "^1.3.0",
"serverless": "^3.37.0",
"serverless": "^3.38.0",
"serverless-plugin-split-stacks": "^1.13.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ServerlessCustomDomain {
this.options = options;
Globals.options = options;

if (v3Utils) {
if (v3Utils && v3Utils.log) {
Globals.v3Utils = v3Utils;
}

Expand Down

0 comments on commit dafbe82

Please sign in to comment.