Skip to content

Commit 23ca6f0

Browse files
committed
Update deps and changelog
1 parent 7cde96b commit 23ca6f0

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
---
44

5+
## [5.5.3] 2023-03-09
6+
7+
### Fixed
8+
9+
- Ensure SSM parameter names generated by `set.services` plugins agree with deployment; thanks @lpsinger!
10+
11+
---
12+
513
## [5.5.2] 2023-02-17
614

715
### Changed

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@
4747
"depstatus": "~1.1.1",
4848
"dynalite": "~3.2.2",
4949
"finalhandler": "~1.2.0",
50-
"glob": "~8.1.0",
50+
"glob": "~9.2.1",
5151
"http-proxy": "~1.18.1",
5252
"lambda-runtimes": "~1.1.3",
5353
"minimist": "~1.2.8",
54-
"router": "~1.3.7",
54+
"router": "~1.3.8",
5555
"run-parallel": "~1.2.0",
5656
"run-series": "~1.1.9",
5757
"send": "~0.18.0",
@@ -62,18 +62,18 @@
6262
},
6363
"devDependencies": {
6464
"@architect/eslint-config": "~2.1.1",
65-
"@architect/functions": "~5.3.4",
65+
"@architect/functions": "~5.4.0",
6666
"@architect/req-res-fixtures": "git+https://github.com/architect/req-res-fixtures.git",
6767
"cross-env": "~7.0.3",
68-
"eslint": "~8.34.0",
68+
"eslint": "~8.35.0",
6969
"fs-extra": "~11.1.0",
7070
"nyc": "~15.1.0",
71-
"pkg": "~5.8.0",
71+
"pkg": "~5.8.1",
7272
"proxyquire": "~2.1.3",
7373
"sinon": "~15.0.1",
7474
"tap-spec": "~5.0.0",
7575
"tape": "~5.6.3",
76-
"tiny-json-http": "~7.4.2"
76+
"tiny-json-http": "~7.5.0"
7777
},
7878
"eslintConfig": {
7979
"extends": "@architect/eslint-config"

src/sandbox/maybe-hydrate.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
let chalk = require('chalk')
22
let depStatus = require('depstatus')
33
let { existsSync: exists } = require('fs')
4-
let glob = require('glob')
4+
let { globSync } = require('glob')
55
let { join } = require('path')
66
let hydrate = require('@architect/hydrate')
77
let series = require('run-series')
@@ -72,7 +72,7 @@ module.exports = function maybeHydrate ({ cwd, inventory, quiet }, callback) {
7272
if (requirementsTxt) {
7373
let pattern = join(path, 'vendor', '*')
7474
let arcDir = join(path, 'vendor', 'architect-functions')
75-
let hydrated = glob.sync(pattern).some(file => !file.includes(arcDir))
75+
let hydrated = globSync(pattern).some(file => !file.includes(arcDir))
7676
if (!hydrated) {
7777
install(callback)
7878
}
@@ -85,7 +85,7 @@ module.exports = function maybeHydrate ({ cwd, inventory, quiet }, callback) {
8585
if (gemfile) {
8686
let pattern = join(path, 'vendor', 'bundle', '*')
8787
let arcDir = join(path, 'vendor', 'bundle', 'architect-functions')
88-
let hydrated = glob.sync(pattern).some(file => !file.includes(arcDir))
88+
let hydrated = globSync(pattern).some(file => !file.includes(arcDir))
8989
if (!hydrated) {
9090
install(callback)
9191
}

0 commit comments

Comments
 (0)