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

Release a new version #82

Merged
merged 1 commit into from
Feb 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 0 additions & 6 deletions .changeset/eighty-wombats-visit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-kings-repair.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/modern-horses-reply.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/pretty-tigers-turn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sour-apes-trade.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-foxes-cross.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-rivers-clap.md

This file was deleted.

31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,37 @@
# @qualifyze/airtable

## 1.1.2
## 2.0.0

### Major Changes

- [#88](https://github.com/Qualifyze/airtable/pull/88) [`b2569be`](https://github.com/Qualifyze/airtable/commit/b2569be688d699f545b314193f59cdcf354e651f) Thanks [@vubogovich](https://github.com/vubogovich)! - [BREAKING CHANGE] Introduce `AirtableError` extending `Error` to bring the stack trace very useful for debugging.
The consumers should check their code for usage of `Airtable.Error` from the official client and replace it with the one from this library.

* [#73](https://github.com/Qualifyze/airtable/pull/73) [`f434e51`](https://github.com/Qualifyze/airtable/commit/f434e510ab0b033cc094e29314f75b8f5d8b8665) Thanks [@vubogovich](https://github.com/vubogovich)! - [BREAKING CHANGE] Make AirtableRecord.data non-nullable.
It's always an object once any operation is executed, and it's inconvenient
to cast it to non-nullable in the calling code. The consumers should check
their code for `AirtableRecord` constructor or `data` property usage.

### Minor Changes

- [#87](https://github.com/Qualifyze/airtable/pull/87) [`3ec4b07`](https://github.com/Qualifyze/airtable/commit/3ec4b07f8fe7b134952c08d08e5ef7346c4edcde) Thanks [@vubogovich](https://github.com/vubogovich)! - Add table method `findOrNull` which returns `null` when the record is not found by id.

* [#89](https://github.com/Qualifyze/airtable/pull/89) [`e65c839`](https://github.com/Qualifyze/airtable/commit/e65c8394519b9d79abd3658ead608f1e2d422f02) Thanks [@vubogovich](https://github.com/vubogovich)! - Improve data validations:
- make the final error message more concise
- include record id to the record validation context
- don't stop validating multiple records on first error
- cover with tests

### Patch Changes

- [#90](https://github.com/Qualifyze/airtable/pull/90) [`cda0af2`](https://github.com/Qualifyze/airtable/commit/cda0af28fec2155c7986ecefbcff5f9d74e54b3f) Thanks [@vubogovich](https://github.com/vubogovich)! - Bugfix: use correct type for the sort parameter.

* [#86](https://github.com/Qualifyze/airtable/pull/86) [`15d5113`](https://github.com/Qualifyze/airtable/commit/15d5113dd44b962327f982d344e8c730b105f81c) Thanks [@vubogovich](https://github.com/vubogovich)! - Bump airtable to 0.11.1.

- [#85](https://github.com/Qualifyze/airtable/pull/85) [`65ce99e`](https://github.com/Qualifyze/airtable/commit/65ce99ed91fad10e52a604176d2a93714456c727) Thanks [@vubogovich](https://github.com/vubogovich)! - Bugfix: use partial type for the update operations to align with Airtable API.

## 1.1.2

### Patch Changes

- [#75](https://github.com/Qualifyze/airtable/pull/75) [`05225a5`](https://github.com/Qualifyze/airtable/commit/05225a5b35f5c550ce28bf3a379f1f3df5b5ae7d) Thanks [@vubogovich](https://github.com/vubogovich)! - Setup [changesets](https://github.com/atlassian/changesets) for the repo.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qualifyze/airtable",
"version": "1.1.2",
"version": "2.0.0",
"description": "A more powerful airtable client",
"main": "lib/index.js",
"scripts": {
Expand Down