Skip to content

main-1.9.0

Latest
Compare
Choose a tag to compare
@riya-amemiya riya-amemiya released this 14 Sep 12:51
· 2 commits to main since this release
e32d206

What's Changed

  • ci: GitHub Actionsのpull_requestトリガーを修正し、typesを追加 by @riya-amemiya in #202
  • ci: pr_agent.ymlからissue_commentトリガーを削除 by @riya-amemiya in #205
  • docコメントの修正やライブラリアップデート、新機能popの追加 by @riya-amemiya in #207
  • ライブラリアプデとリンタールール追加に伴うリファクタ by @riya-amemiya in #209
  • Feature/main 1.9.0 by @riya-amemiya in #206

Full Changelog: main-1.8.2...main-1.9.0

Breaking Changes

  • Types have been granularly divided. This reduces the build size compared to previous versions but requires changes to type imports.
  • Standardized file naming convention to lowerCamel and type naming to UpperCamel.

New Features

  • Added a non-destructive pop function:
  export const pop = <T>(array: T[]) => { return [...array].pop(); };
  • Experimental addition of a user agent detection function:
    • OS detection supports iOS, Android, Mac, Windows, and Linux
    • Browser detection supports Edge, Safari, Chrome, Firefox, and IE
    • Device detection supports mobile, bot, tablet, and desktop

Minor Changes

Rewrote some doc comments for improved clarity