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

fix src/model/item.rs #92

Merged
merged 8 commits into from
Apr 23, 2024
Merged

fix src/model/item.rs #92

merged 8 commits into from
Apr 23, 2024

Conversation

LelouchFR
Copy link
Contributor

I got this Error:

thread 'tokio-runtime-worker' panicked at src/api/fetcher.rs:63:22:
called `Result::unwrap()` on an `Err` value: CookiesError(ReqWestError(reqwest::Error { kind: Decode, source: Error("missing field `is_for_swap`", line: 1, column: 15003) }))
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

to fix this issue, I did what @0xCAB0 said, which was changing https://github.com/ThalosES/vinted-rs/blob/main/src/model/item.rs#L131-L146 to be Option<_>

Copy link
Contributor

@pxp9 pxp9 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

0xCAB0
0xCAB0 previously approved these changes Apr 19, 2024
Copy link
Member

@0xCAB0 0xCAB0 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice! Have you noticed any other parsing errors we might have missed?

@LelouchFR
Copy link
Contributor Author

Nice! Have you noticed any other parsing errors we might have missed?

I don't think so

@pxp9
Copy link
Contributor

pxp9 commented Apr 19, 2024

fix src/model/item.rs plz

@LelouchFR LelouchFR changed the title fix: made is_xx be type to Option<type> fix src/model/item.rs Apr 19, 2024
Copy link
Contributor

@pxp9 pxp9 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix src/model/item.rs

@0xCAB0
Copy link
Member

0xCAB0 commented Apr 19, 2024

@pxp9 meant to fix the file, not changing the PR name bahahahaha.
But it's alright

@LelouchFR
Copy link
Contributor Author

@pxp9 meant to fix the file, not changing the PR name bahahahaha. But it's alright

sure lol sorry, working on it :P

@LelouchFR LelouchFR requested a review from pxp9 April 19, 2024 15:25
@0xCAB0 0xCAB0 dismissed their stale review April 19, 2024 16:27

New changes made

@LelouchFR LelouchFR requested a review from 0xCAB0 April 20, 2024 08:46
Copy link
Member

@0xCAB0 0xCAB0 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comments

Comment on lines 166 to 168
Some(true) => "true".to_string(),
Some(false) => "false".to_string(),
None => "None".to_string(),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably don't need the toString here. Also these kind of "utils" methods should not go in a class, the should be shared across the project, something like src/lib/utils.rs/

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so should I create src/lib/utils.rs since there is none ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeap

@pxp9
Copy link
Contributor

pxp9 commented Apr 20, 2024

You should match the value like this:

Some(val) => val.to_string()
None => "None".to_string()

@LelouchFR LelouchFR requested a review from 0xCAB0 April 21, 2024 13:35
@LelouchFR
Copy link
Contributor Author

normally it's now good and all running

Copy link
Member

@0xCAB0 0xCAB0 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, nice job!

@LelouchFR
Copy link
Contributor Author

LGTM, nice job!

Thank you :) getting the hang of it now :D

Copy link
Contributor

@pxp9 pxp9 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lgtm

@0xCAB0 0xCAB0 merged commit d724c0a into ThalosDev:develop Apr 23, 2024
3 checks passed
0xCAB0 added a commit that referenced this pull request Jul 28, 2024
* chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0

Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version.
- [Release notes](https://github.com/daniel7grant/redis-macros/releases)
- [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md)
- [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0)

---
updated-dependencies:
- dependency-name: redis-macros
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* ci(actions): bump actions/checkout from 2 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix `src/model/item.rs` (#92)

* Moved vinted-db-feeder as submodule

* Fix/advanced item test (#98)

* Updated item JSON

* Upgraded testing quality

* Storing test results in /output

* Added more new JSON fields

* Using lazy_static for logging

* Updated namespace for debug

* Removed lazy initialization

* Fixed clippy

* Added new SerdeError

* fixed clippy

* Bump v0.9.0

* chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93)

Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version.
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96)

---
updated-dependencies:
- dependency-name: typed-builder
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* Updated CHANGELOG

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94)

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8

Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version.
- [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md)
- [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0)

---
updated-dependencies:
- dependency-name: reqwest_cookie_store
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix reqwest version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* fix method naming

* Removed unnecessary @staticmethod tag

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>
0xCAB0 added a commit that referenced this pull request Sep 21, 2024
…ted-db-feeder (#109)

* chore(deps): bump tqdm from 4.62.3 to 4.66.3 in /examples/filter_example (#95)

Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.62.3 to 4.66.3.
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.62.3...v4.66.3)

---
updated-dependencies:
- dependency-name: tqdm
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* v0.9.0 (#97)

* chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0

Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version.
- [Release notes](https://github.com/daniel7grant/redis-macros/releases)
- [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md)
- [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0)

---
updated-dependencies:
- dependency-name: redis-macros
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* ci(actions): bump actions/checkout from 2 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix `src/model/item.rs` (#92)

* Moved vinted-db-feeder as submodule

* Fix/advanced item test (#98)

* Updated item JSON

* Upgraded testing quality

* Storing test results in /output

* Added more new JSON fields

* Using lazy_static for logging

* Updated namespace for debug

* Removed lazy initialization

* Fixed clippy

* Added new SerdeError

* fixed clippy

* Bump v0.9.0

* chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93)

Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version.
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96)

---
updated-dependencies:
- dependency-name: typed-builder
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* Updated CHANGELOG

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94)

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8

Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version.
- [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md)
- [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0)

---
updated-dependencies:
- dependency-name: reqwest_cookie_store
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix reqwest version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* fix method naming

* Removed unnecessary @staticmethod tag

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>

* chore(deps): bump certifi in /scrapping/vinted-db-feeder

Bumps [certifi](https://github.com/certifi/python-certifi) from 2023.5.7 to 2024.7.4.
- [Commits](certifi/python-certifi@2023.05.07...2024.07.04)

---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Alvaro Cabo <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>
0xCAB0 added a commit that referenced this pull request Sep 21, 2024
* chore(deps): bump tqdm from 4.62.3 to 4.66.3 in /examples/filter_example (#95)

Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.62.3 to 4.66.3.
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.62.3...v4.66.3)

---
updated-dependencies:
- dependency-name: tqdm
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* v0.9.0 (#97)

* chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0

Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version.
- [Release notes](https://github.com/daniel7grant/redis-macros/releases)
- [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md)
- [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0)

---
updated-dependencies:
- dependency-name: redis-macros
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* ci(actions): bump actions/checkout from 2 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix `src/model/item.rs` (#92)

* Moved vinted-db-feeder as submodule

* Fix/advanced item test (#98)

* Updated item JSON

* Upgraded testing quality

* Storing test results in /output

* Added more new JSON fields

* Using lazy_static for logging

* Updated namespace for debug

* Removed lazy initialization

* Fixed clippy

* Added new SerdeError

* fixed clippy

* Bump v0.9.0

* chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93)

Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version.
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96)

---
updated-dependencies:
- dependency-name: typed-builder
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* Updated CHANGELOG

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94)

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8

Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version.
- [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md)
- [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0)

---
updated-dependencies:
- dependency-name: reqwest_cookie_store
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix reqwest version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* fix method naming

* Removed unnecessary @staticmethod tag

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>

* chore(cargo): update redis requirement from 0.25.4 to 0.27.2

Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version.
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.25.4...redis-0.27.2)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fixed redis-macros version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Alvaro Cabo <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>
0xCAB0 added a commit that referenced this pull request Sep 24, 2024
* chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0

Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version.
- [Release notes](https://github.com/daniel7grant/redis-macros/releases)
- [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md)
- [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0)

---
updated-dependencies:
- dependency-name: redis-macros
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* ci(actions): bump actions/checkout from 2 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix `src/model/item.rs` (#92)

* Moved vinted-db-feeder as submodule

* Fix/advanced item test (#98)

* Updated item JSON

* Upgraded testing quality

* Storing test results in /output

* Added more new JSON fields

* Using lazy_static for logging

* Updated namespace for debug

* Removed lazy initialization

* Fixed clippy

* Added new SerdeError

* fixed clippy

* Bump v0.9.0

* chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93)

Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version.
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96)

---
updated-dependencies:
- dependency-name: typed-builder
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* Updated CHANGELOG

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94)

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8

Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version.
- [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md)
- [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0)

---
updated-dependencies:
- dependency-name: reqwest_cookie_store
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix reqwest version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* fix method naming

* Removed unnecessary @staticmethod tag

* chore(deps): bump certifi from 2023.5.7 to 2024.7.4 in /scrapping/vinted-db-feeder (#109)

* chore(deps): bump tqdm from 4.62.3 to 4.66.3 in /examples/filter_example (#95)

Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.62.3 to 4.66.3.
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.62.3...v4.66.3)

---
updated-dependencies:
- dependency-name: tqdm
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* v0.9.0 (#97)

* chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0

Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version.
- [Release notes](https://github.com/daniel7grant/redis-macros/releases)
- [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md)
- [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0)

---
updated-dependencies:
- dependency-name: redis-macros
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* ci(actions): bump actions/checkout from 2 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix `src/model/item.rs` (#92)

* Moved vinted-db-feeder as submodule

* Fix/advanced item test (#98)

* Updated item JSON

* Upgraded testing quality

* Storing test results in /output

* Added more new JSON fields

* Using lazy_static for logging

* Updated namespace for debug

* Removed lazy initialization

* Fixed clippy

* Added new SerdeError

* fixed clippy

* Bump v0.9.0

* chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93)

Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version.
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96)

---
updated-dependencies:
- dependency-name: typed-builder
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* Updated CHANGELOG

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94)

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8

Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version.
- [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md)
- [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0)

---
updated-dependencies:
- dependency-name: reqwest_cookie_store
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix reqwest version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* fix method naming

* Removed unnecessary @staticmethod tag

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>

* chore(deps): bump certifi in /scrapping/vinted-db-feeder

Bumps [certifi](https://github.com/certifi/python-certifi) from 2023.5.7 to 2024.7.4.
- [Commits](certifi/python-certifi@2023.05.07...2024.07.04)

---
updated-dependencies:
- dependency-name: certifi
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Alvaro Cabo <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>

* chore(cargo): update typed-builder requirement from 0.19 to 0.20 (#105)

---
updated-dependencies:
- dependency-name: typed-builder
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(cargo): update redis requirement from 0.25.4 to 0.27.2 (#108)

* chore(deps): bump tqdm from 4.62.3 to 4.66.3 in /examples/filter_example (#95)

Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.62.3 to 4.66.3.
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.62.3...v4.66.3)

---
updated-dependencies:
- dependency-name: tqdm
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* v0.9.0 (#97)

* chore(cargo): update redis-macros requirement from 0.2.1 to 0.3.0

Updates the requirements on [redis-macros](https://github.com/daniel7grant/redis-macros) to permit the latest version.
- [Release notes](https://github.com/daniel7grant/redis-macros/releases)
- [Changelog](https://github.com/daniel7grant/redis-macros/blob/master/Changelog.md)
- [Commits](daniel7grant/redis-macros@v0.2.1...v0.3.0)

---
updated-dependencies:
- dependency-name: redis-macros
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* ci(actions): bump actions/checkout from 2 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix `src/model/item.rs` (#92)

* Moved vinted-db-feeder as submodule

* Fix/advanced item test (#98)

* Updated item JSON

* Upgraded testing quality

* Storing test results in /output

* Added more new JSON fields

* Using lazy_static for logging

* Updated namespace for debug

* Removed lazy initialization

* Fixed clippy

* Added new SerdeError

* fixed clippy

* Bump v0.9.0

* chore(cargo): update redis requirement from 0.24.0 to 0.25.4 (#93)

Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version.
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.24.0...redis-0.25.4)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* chore(cargo): update typed-builder requirement from 0.18 to 0.19 (#96)

---
updated-dependencies:
- dependency-name: typed-builder
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* Updated CHANGELOG

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8 (#94)

* chore(cargo): update reqwest_cookie_store requirement from 0.6 to 0.8

Updates the requirements on [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) to permit the latest version.
- [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md)
- [Commits](pfernie/reqwest_cookie_store@v0.6.0...v0.8.0)

---
updated-dependencies:
- dependency-name: reqwest_cookie_store
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix reqwest version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Cabo Ciudad <[email protected]>

* fix method naming

* Removed unnecessary @staticmethod tag

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>

* chore(cargo): update redis requirement from 0.25.4 to 0.27.2

Updates the requirements on [redis](https://github.com/redis-rs/redis-rs) to permit the latest version.
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-0.25.4...redis-0.27.2)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fixed redis-macros version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Alvaro Cabo <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baptiste Zahnow <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants