Skip to content

Commit 7263dec

Browse files
LaunchDarklyReleaseBothroederldbwoskow-ldLaunchDarklyCILaunchDarklyReleaseBot
authored
prepare 1.3.0 release (#18)
## [1.3.0] - 2024-01-22 ### Added: - Added additional unit tests to meet 75% minimum coverage required by Salesforce. Thanks, @estebanefi! --------- Co-authored-by: Harpo Roeder <hroeder@launchdarkly.com> Co-authored-by: Ben Woskow <48036130+bwoskow-ld@users.noreply.github.com> Co-authored-by: Ben Woskow <bwoskow@launchdarkly.com> Co-authored-by: LaunchDarklyCI <dev@launchdarkly.com> Co-authored-by: LaunchDarklyReleaseBot <launchdarklyreleasebot@launchdarkly.com> Co-authored-by: Ember Stevens <ember.stevens@launchdarkly.com> Co-authored-by: ember-stevens <79482775+ember-stevens@users.noreply.github.com> Co-authored-by: Casey Waldren <cwaldren@launchdarkly.com> Co-authored-by: ld-repository-standards[bot] <113625520+ld-repository-standards[bot]@users.noreply.github.com> Co-authored-by: Kane Parkinson <93555788+kparkinson-ld@users.noreply.github.com> Co-authored-by: Louis Chan <lchan@launchdarkly.com> Co-authored-by: Louis Chan <91093020+louis-launchdarkly@users.noreply.github.com> Co-authored-by: Esteban Efigenio <estebanefigenio@gmail.com>
1 parent b4ae94d commit 7263dec

56 files changed

Lines changed: 5075 additions & 4260 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.circleci/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,25 @@ workflows:
77
version: 2
88
all_tasks:
99
jobs:
10+
- formatting
1011
- build-bridge
1112
- unit-test:
1213
context: apex-sdk-ci
1314

1415
jobs:
16+
formatting:
17+
docker:
18+
- image: cimg/openjdk:17.0-node
19+
steps:
20+
- checkout
21+
- run:
22+
name: Install Prettier
23+
command: npm ci
24+
- run:
25+
name: Check Formatting
26+
command: |
27+
npm run prettier:check:ci
28+
1529
build-bridge:
1630
docker:
1731
- image: cimg/go:1.15

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
.idea/
2+
.sfdx
3+
.sf
4+
node_modules

.prettierrc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"trailingComma": "none",
3+
"singleQuote": true,
4+
"printWidth": 120,
5+
"tabWidth": 2,
6+
"apexInsertFinalNewline": true,
7+
"endOfLine": "lf",
8+
"plugins": [
9+
"prettier-plugin-apex"
10+
],
11+
"overrides": [
12+
{
13+
"files": "**/lwc/**/*.html",
14+
"options": {
15+
"parser": "lwc"
16+
}
17+
},
18+
{
19+
"files": "*.{cmp,page,component}",
20+
"options": {
21+
"parser": "html"
22+
}
23+
}
24+
]
25+
}

CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Repository Maintainers
2+
* @launchdarkly/team-sdk

bridge/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ export OAUTH_PASSWORD='Your Salesforce password + security token'
3232

3333
# optional configuration options
3434
export OAUTH_URI='YOUR OAUTH URI'
35-
# such as: 'https://login.salesforce.com/services/oauth2/token'
35+
# if not set, defaults to: 'https://login.salesforce.com/services/oauth2/token'
36+
# if authenticating against sandbox, use: 'https://test.salesforce.com/services/oauth2/token'
3637
export HTTP_TIMEOUT='Your timeout'
3738
# such as: '1500ms'
3839
# see https://golang.org/pkg/time/#ParseDuration for formatting
39-
```
40+
```

bridge/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ func (bridge *Bridge) featureLoop() error {
412412
}
413413

414414
if pushResponse.StatusCode != 200 {
415-
log.Print("push flags expected 200 got ", pushRequest)
415+
log.Print("push flags expected 200 got ", pushResponse.StatusCode)
416416
goto End
417417
}
418418

doc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,4 +409,4 @@ Create an immutable `LDValue` from the internal map.
409409

410410
```java
411411
LDValue build()
412-
```
412+
```

0 commit comments

Comments
 (0)