Skip to content

Commit d0a9ca8

Browse files
don't fail a build if a coveralls step fails
1 parent 717e787 commit d0a9ca8

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

.github/CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
<a name="v2.3.2"></a>
2+
# [v2.3.2](https://github.com/AleksandrRogov/DynamicsWebApi/releases/tag/v2.3.2) - 20 Aug 2025
3+
4+
## What's Changed
5+
* fix(uploadFile): remove content-type 'application/json' when no data by [@makidelille](https://github.com/makidelille) in https://github.com/AleksandrRogov/DynamicsWebApi/pull/192
6+
7+
## New Contributors
8+
* [@makidelille](https://github.com/makidelille) made their first contribution in https://github.com/AleksandrRogov/DynamicsWebApi/pull/192
9+
10+
**Full Changelog**: https://github.com/AleksandrRogov/DynamicsWebApi/compare/v2.3.1...v2.3.2
11+
12+
[Changes][v2.3.2]
13+
14+
15+
<a name="v2.3.1"></a>
16+
# [v2.3.1](https://github.com/AleksandrRogov/DynamicsWebApi/releases/tag/v2.3.1) - 26 Jun 2025
17+
18+
**Changes**
19+
* Added support for Content-ID `associate` and `associateSingleValued` requests. [#190](https://github.com/AleksandrRogov/DynamicsWebApi/issues/190)
20+
21+
Example:
22+
```js
23+
dynamicsWebApi.startBatch();
24+
25+
dynamicsWebApi.create({
26+
contentId: 1,
27+
collection: "contacts",
28+
data: {
29+
firstname: "Khoa",
30+
lastname: "Test"
31+
}
32+
});
33+
34+
dynamicsWebApi.create({
35+
contentId: 2,
36+
collection: "accounts",
37+
data: {
38+
name: "Khoa Corporation"
39+
}
40+
});
41+
42+
dynamicsWebApi.associate({
43+
contentId: "$1",
44+
relatedKey: "$2",
45+
relationshipName: "arch_Account_Contact_Contact"
46+
});
47+
48+
const results = await dynamicsWebApi.executeBatch();
49+
```
50+
51+
[Changes][v2.3.1]
52+
53+
154
<a name="v2.3.0"></a>
255
# [v2.3.0](https://github.com/AleksandrRogov/DynamicsWebApi/releases/tag/v2.3.0) - 11 May 2025
356

@@ -1088,6 +1141,8 @@ Added:
10881141
[Changes][v1.2.0]
10891142

10901143

1144+
[v2.3.2]: https://github.com/AleksandrRogov/DynamicsWebApi/compare/v2.3.1...v2.3.2
1145+
[v2.3.1]: https://github.com/AleksandrRogov/DynamicsWebApi/compare/v2.3.0...v2.3.1
10911146
[v2.3.0]: https://github.com/AleksandrRogov/DynamicsWebApi/compare/v2.2.1...v2.3.0
10921147
[v2.2.1]: https://github.com/AleksandrRogov/DynamicsWebApi/compare/v2.2.0...v2.2.1
10931148
[v2.2.0]: https://github.com/AleksandrRogov/DynamicsWebApi/compare/v2.1.7...v2.2.0

.github/workflows/build-test-coverage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ jobs:
3636
uses: coverallsapp/github-action@v2
3737
with:
3838
github-token: ${{ secrets.GITHUB_TOKEN }}
39+
continue-on-error: true

0 commit comments

Comments
 (0)