Skip to content

Commit 442afa5

Browse files
authored
Prepare 2.0.4 (#9)
* Upgrade node.extend * update package-lock.josn * Prepare 2.0.4 * move vscode to devDependencies * update readme
1 parent 6b787b3 commit 442afa5

File tree

5 files changed

+62
-26
lines changed

5 files changed

+62
-26
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to the "launchdarkly" extension will be documented in this file.
44

5+
## [2.0.4] - 2019-02-07
6+
7+
### Changed
8+
9+
- Locked indirect dependency `node.extend` to versions ^1.1.7.
10+
511
## [2.0.3] - 2018-11-26
612

713
### Fixed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ This extension contributes the following settings:
1414

1515
| Setting | Description | Default value |
1616
| --------------------------------- |:-------------------------------------------------------------------------------:| --------------------------------: |
17-
| `launchdarkly.sdkKey` | Your LaunchDarkly SDK key. Required. | undefined |
18-
| `launchdarkly.accessToken` | Your LaunchDarkly API access token. Required. | undefined |
19-
| `launchdarkly.project` | Your LaunchDarkly project key, should match the provided SDK key. Required. | undefined |
17+
| `launchdarkly.sdkKey` | Your LaunchDarkly SDK key. Required. | `undefined` |
18+
| `launchdarkly.accessToken` | Your LaunchDarkly API access token. Required. | `undefined` |
19+
| `launchdarkly.project` | Your LaunchDarkly project key, should match the provided SDK key. Required. | `undefined` |
2020
| `launchdarkly.env` | Your LaunchDarkly environment key, should match the provided SDK key. | first environment |
2121
| `launchdarkly.baseUri` | The LaunchDarkly base uri to be used. Optional. | `https://app.launchdarkly.com` |
2222
| `launchdarkly.streamUri` | The LaunchDarkly stream uri to be used. Optional. | `https://stream.launchdarkly.com` |
23-
| `launchdarkly.enableHover` | Enables flag info to be displayed on hover of a valid flag key. | true |
24-
| `launchdarkly.enableAutocomplete` | Enable flag key autocompletion. | true |
23+
| `launchdarkly.enableHover` | Enables flag info to be displayed on hover of a valid flag key. | `true` |
24+
| `launchdarkly.enableAutocomplete` | Enable flag key autocompletion. | `true` |
2525

2626
**Note:** If you use quick suggestions to autocomplete words, LaunchDarkly autocomplete functionality requires the `editor.quickSuggestions.strings` setting to be enabled. Otherwise, you'll need to press `Ctrl+Space` (default binding) to see your flag key suggestions.
2727

package-lock.json

Lines changed: 22 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "launchdarkly",
33
"displayName": "LaunchDarkly",
44
"description": "View LaunchDarkly feature flags in your editor.",
5-
"version": "2.0.3",
5+
"version": "2.0.4",
66
"publisher": "launchdarkly",
77
"engines": {
88
"vscode": "^1.18.0"
@@ -104,7 +104,8 @@
104104
"prettier": "^1.5.3",
105105
"pretty-error": "^2.1.1",
106106
"typescript": "^2.4.2",
107-
"yarn": "^0.27.5"
107+
"yarn": "^0.27.5",
108+
"vscode": "^1.1.8"
108109
},
109110
"dependencies": {
110111
"@types/lodash": "4.14.116",
@@ -113,7 +114,9 @@
113114
"ldclient-node": "5.4.2",
114115
"lodash.kebabcase": "4.1.1",
115116
"opn": "5.3.0",
116-
"request": "2.88.0",
117-
"vscode": "^1.1.8"
117+
"request": "2.88.0"
118+
},
119+
"resolutions": {
120+
"node.extend": "^1.1.7"
118121
}
119122
}

yarn.lock

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -872,6 +872,11 @@ fstream@^1.0.2:
872872
mkdirp ">=0.5 0"
873873
rimraf "2"
874874

875+
function-bind@^1.1.1:
876+
version "1.1.1"
877+
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
878+
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
879+
875880
getpass@^0.1.1:
876881
version "0.1.7"
877882
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
@@ -1099,6 +1104,13 @@ has-flag@^3.0.0:
10991104
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
11001105
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
11011106

1107+
has@^1.0.3:
1108+
version "1.0.3"
1109+
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1110+
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1111+
dependencies:
1112+
function-bind "^1.1.1"
1113+
11021114
hawk@~3.1.3:
11031115
version "3.1.3"
11041116
resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
@@ -1334,10 +1346,10 @@ is-wsl@^1.1.0:
13341346
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
13351347
integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
13361348

1337-
is@^3.1.0:
1338-
version "3.2.1"
1339-
resolved "https://registry.yarnpkg.com/is/-/is-3.2.1.tgz#d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5"
1340-
integrity sha1-0Kwq1V63sL7JJqUmb2xmKqqD3KU=
1349+
is@^3.2.1:
1350+
version "3.3.0"
1351+
resolved "https://registry.yarnpkg.com/is/-/is-3.3.0.tgz#61cff6dd3c4193db94a3d62582072b44e5645d79"
1352+
integrity sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg==
13411353

13421354
13431355
version "0.0.1"
@@ -1685,12 +1697,13 @@ [email protected]:
16851697
resolved "https://registry.yarnpkg.com/node-sha1/-/node-sha1-0.0.1.tgz#5662fc799f1c3c95d93e3015dd048065514985d3"
16861698
integrity sha1-VmL8eZ8cPJXZPjAV3QSAZVFJhdM=
16871699

1688-
node.extend@^1.1.2:
1689-
version "1.1.6"
1690-
resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-1.1.6.tgz#a7b882c82d6c93a4863a5504bd5de8ec86258b96"
1691-
integrity sha1-p7iCyC1sk6SGOlUEvV3o7IYli5Y=
1700+
node.extend@^1.1.2, node.extend@^1.1.7:
1701+
version "1.1.8"
1702+
resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-1.1.8.tgz#0aab3e63789f4e6d68b42bc00073ad1881243cf0"
1703+
integrity sha512-L/dvEBwyg3UowwqOUTyDsGBU6kjBQOpOhshio9V3i3BMPv5YUb9+mWNN8MK0IbWqT0AqaTSONZf0aTuMMahWgA==
16921704
dependencies:
1693-
is "^3.1.0"
1705+
has "^1.0.3"
1706+
is "^3.2.1"
16941707

16951708
normalize-path@^2.0.1:
16961709
version "2.1.1"

0 commit comments

Comments
 (0)