Skip to content

Commit

Permalink
Release v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
obetomuniz committed Mar 27, 2023
1 parent 5dcf4d3 commit bdfd5e9
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 19 deletions.
24 changes: 13 additions & 11 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
# Changelog

### [3.0.5](https://github.com/obetomuniz/tatooine/compare/3.0.4...3.0.5) (2023-03-24)

## [3.1.0](https://github.com/obetomuniz/tatooine/compare/3.0.5...3.1.0) (2023-03-27)

### Features

* **conditions:** Introduce that allows filter results expected based in some operations. Close [#346](https://github.com/obetomuniz/tatooine/issues/346) ([d833200](https://github.com/obetomuniz/tatooine/commit/d8332005f9627b3c16ca304b50edf8ac59a18b50))
- **plugins:** Add support to plugins. ([5dcf4d3](https://github.com/obetomuniz/tatooine/commit/5dcf4d35146f27e9fae03b3ba16cacbd1361567d))
- **conditions:** Move `conditions` previously added as a core feature t the new plugins architecture. ([5dcf4d3](https://github.com/obetomuniz/tatooine/commit/5dcf4d35146f27e9fae03b3ba16cacbd1361567d))

### [3.0.5](https://github.com/obetomuniz/tatooine/compare/3.0.4...3.0.5) (2023-03-24)

### Features

- **conditions:** Introduce that allows filter results expected based in some operations. Close [#346](https://github.com/obetomuniz/tatooine/issues/346) ([d833200](https://github.com/obetomuniz/tatooine/commit/d8332005f9627b3c16ca304b50edf8ac59a18b50))

### Bug Fixes

* **docs:** Add SPA engine to docs ([123b486](https://github.com/obetomuniz/tatooine/commit/123b486c07a98c0cf75242013f830eea1020a4bf))
* Improve project description ([2063478](https://github.com/obetomuniz/tatooine/commit/20634786a9869012ce7c9644d7aa7e9a3e360e2c))
- **docs:** Add SPA engine to docs ([123b486](https://github.com/obetomuniz/tatooine/commit/123b486c07a98c0cf75242013f830eea1020a4bf))
- Improve project description ([2063478](https://github.com/obetomuniz/tatooine/commit/20634786a9869012ce7c9644d7aa7e9a3e360e2c))

### [3.0.4](https://github.com/obetomuniz/tatooine/compare/3.0.3...3.0.4) (2023-03-24)


### Features

* Support setup headless and HTTP requests. Introduce SPA Engine. Improve typings. Update docs. ([4eb708c](https://github.com/obetomuniz/tatooine/commit/4eb708c2d474c21eb043fe779068c16427dffa70))

- Support setup headless and HTTP requests. Introduce SPA Engine. Improve typings. Update docs. ([4eb708c](https://github.com/obetomuniz/tatooine/commit/4eb708c2d474c21eb043fe779068c16427dffa70))

### Bug Fixes

* **docs:** Improve package description. Add NPM package.json description. ([1f34382](https://github.com/obetomuniz/tatooine/commit/1f34382fc939a22ccb3c60266490baf545f9f826))
- **docs:** Improve package description. Add NPM package.json description. ([1f34382](https://github.com/obetomuniz/tatooine/commit/1f34382fc939a22ccb3c60266490baf545f9f826))

### 3.0.3 (2023-03-24)


### Features

* **release:** Introduce release-it to help with releasing management ([7ca785f](https://github.com/obetomuniz/tatooine/commit/7ca785fffe09981d93a2adc8e4ec4856f6943821))
- **release:** Introduce release-it to help with releasing management ([7ca785f](https://github.com/obetomuniz/tatooine/commit/7ca785fffe09981d93a2adc8e4ec4856f6943821))
12 changes: 7 additions & 5 deletions docs/XML.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ import { scrapeXml } from "tatooine"

const xmlUrl = "https://example.com/feed.xml"
const xmlData = await scrapeXml(xmlUrl, {
title: {
selector: "//channel/title",
},
description: {
selector: "//channel/description",
selectors: {
title: {
selector: "//channel/title",
},
description: {
selector: "//channel/description",
},
},
})

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tatooine",
"version": "3.0.5",
"version": "3.1.0",
"description": "A powerful scraper for JavaScript Developers",
"directories": {
"doc": "docs",
Expand Down

0 comments on commit bdfd5e9

Please sign in to comment.