Skip to content

Releases: danielv14/imdb-cli

Release 2.4.0

17 Oct 14:08
a12a229
Compare
Choose a tag to compare

This release includes #52

Release 2.3.7

06 Jun 20:57
da301ec
Compare
Choose a tag to compare

Small release that mainly refactors the internals of the main IMDb CLI class to be less bulky

V.2.3.6

28 Mar 07:34
1569a8d
Compare
Choose a tag to compare

Small release that only bumps a package though dependabot and fixes a typo in readme

V.2.3.5

13 Feb 19:12
51e21a0
Compare
Choose a tag to compare

Release mostly contains code refactoring.
See #45 for more info

V.2.3.4

16 Jan 18:47
Compare
Choose a tag to compare

Includes PR's:

V.2.3.3

14 Dec 15:39
42b23da
Compare
Choose a tag to compare
Merge pull request #34 from danielv14/bugfix-not-aired-seasons

Fix for not yet aired seasons

Release 2.3.2

01 Nov 13:46
3400705
Compare
Choose a tag to compare

TLDR

This release focuses on development experience of the CLI by introducing more typings for response types when interacting with the OMDb API.

Pull requests

Release 2.3.1

22 Sep 10:33
75b9bc6
Compare
Choose a tag to compare

TLDR

This release is a small one with mainly fixes from #18 where duplicate code has been removed that handled formatting search result objects and removal of old constructor code left over from when the cli was scraping imdb site

Pull requests

Release 2.3.0

07 Jul 14:38
83a3e82
Compare
Choose a tag to compare

TLDR

Refactor application to use TypeScript. Read more about in #16

IMDb CLI goes TypeScript

In version 2.3.0 the entire cli got rewritten in TypeScript. The cli builds to a dist/ folder and the cli still behaves as before. No new features to the cli were added in this release - it is a release focused on the development experience.

Changes

  • Rewritten src/ code to typescript
  • Swap out eslint and prettier for tslint
  • Setup npm scripts to build cli and watch for changes
  • Setup Husky for git hooks. Check for typescript errors and linting when commiting and running tests before pushing a branch.
  • readme updates about developing the cli now since the build process got a little bit more complex due typescript rewrite.

Release 2.2.0

05 Jul 14:22
Compare
Choose a tag to compare

This version includes some new features such as linting of javascript file, some more cli argument options and moving all cli-related files into a src/ folder

Highlights

  • Lint files with eslint and prettier
  • -l --limit-plot [number] argument option to set truncation size of plot text
  • -o --order-by [column] argument option to order the search result either by year desc or title asc
  • Restructure cil files to src/ folder
  • Refactor query util class to a util function exported from a regular js file

Pull requests