Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.4.3 #28

Merged
merged 37 commits into from
Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
62a2fe1
init
EmptyInfinity May 11, 2021
f571fed
new methods and implementation
EmptyInfinity May 14, 2021
50db00b
linter formatting
EmptyInfinity May 14, 2021
d035401
end with tests
EmptyInfinity May 17, 2021
68c8506
remove extra options, add log for retrying requests
EmptyInfinity May 25, 2021
4874276
Upd version to 2.0.0-dev.3
A3a3e1 May 25, 2021
86d2d25
before lint fix
EmptyInfinity May 27, 2021
37aa901
merge
EmptyInfinity May 27, 2021
bff058e
update
EmptyInfinity May 27, 2021
40b2eea
update
EmptyInfinity May 27, 2021
bd96304
added objectStorageWrapper
EmptyInfinity Jun 1, 2021
a899366
fix
EmptyInfinity Jun 1, 2021
48c5795
up version
EmptyInfinity Jun 1, 2021
2dfdd01
Add methods (#8)
A3a3e1 Jun 11, 2021
4d0a554
Update README.md
A3a3e1 Jun 30, 2021
3e0a383
Version 3.1.0
A3a3e1 Jul 1, 2021
5cc8b9e
fix createObject method (#12)
EmptyInfinity Jul 2, 2021
9df3a3d
update changelog
EmptyInfinity Jul 5, 2021
8ccf93d
Fix lookupByParameters method (#13)
EmptyInfinity Jul 5, 2021
f19ca44
minor fix
EmptyInfinity Jul 6, 2021
ba93b94
Fixes (#14)
EmptyInfinity Jul 7, 2021
0d93831
fix `createObject` method (#15)
EmptyInfinity Jul 8, 2021
20b1af0
Add method delete plural (#16)
EmptyInfinity Jul 12, 2021
09277f6
added ability to use custom axios config (#17)
EmptyInfinity Jul 19, 2021
342cbb4
Minor fix (#18)
EmptyInfinity Jul 19, 2021
90e0c12
added ability to add/modify `query` and `meta` headers when updating …
EmptyInfinity Jul 20, 2021
16b28c3
Fix api error handling, imports (#21)
EmptyInfinity Jul 20, 2021
33780fa
Response types (#24)
EmptyInfinity Jul 27, 2021
161f923
Fix (#25)
EmptyInfinity Jul 27, 2021
781b77a
update
EmptyInfinity Jan 6, 2022
29c1af3
update
EmptyInfinity Jan 6, 2022
5856430
fix deps
EmptyInfinity Mar 30, 2022
763e9e0
fix deps
EmptyInfinity Mar 30, 2022
30cbd06
update
EmptyInfinity Apr 13, 2022
faf6826
update
EmptyInfinity Apr 13, 2022
99c174d
update
EmptyInfinity Apr 13, 2022
2e83c75
update
EmptyInfinity Apr 13, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ version: 2
jobs:
test:
docker:
- image: circleci/node:12-stretch
- image: circleci/node:14-stretch
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Audit Dependencies
command: npm audit --audit-level=high
- run:
name: Installing Dependencies
command: npm install
Expand All @@ -21,4 +24,4 @@ workflows:
version: 2
build_and_test:
jobs:
- test
- test
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 3.4.3 (April 8, 2022)
* Fix dependencies
# 3.4.2 (July 27, 2021)
* Update headers validation

Expand Down
Loading