blackfyre / wga

Jumping forward ~30 years
https://wga-uat.blackfyre.ninja/
MIT License
138 stars 12 forks source link

Bump github.com/pocketbase/pocketbase from 0.18.10 to 0.19.0 #24

Closed dependabot[bot] closed 10 months ago

dependabot[bot] commented 10 months ago

Bumps github.com/pocketbase/pocketbase from 0.18.10 to 0.19.0.

Release notes

Sourced from github.com/pocketbase/pocketbase's releases.

v0.19.0 Release

To update the prebuilt executable you can run ./pocketbase update.

  • Added Patreon OAuth2 provider (#3323; thanks @​ghostdevv).

  • Added mailcow OAuth2 provider (#3364; thanks @​thisni1s).

  • Added support for :excerpt(max, withEllipsis?) fields modifier that will return a short plain text version of any string value (html tags are stripped). This could be used to minimize the downloaded json data when listing records with large editor html values.

    await pb.collection("example").getList(1, 20, {
      "fields": "*,description:excerpt(100)"
    })
    
  • Several Admin UI improvements:

    • Count the total records separately to speed up the query execution for large datasets (#3344).
    • Enclosed the listing scrolling area within the table so that the horizontal scrollbar and table header are always reachable (#2505).
    • Allowed opening the record preview/update form via direct URL (#2682).
    • Reintroduced the local date field tooltip on hover.
    • Speed up the listing loading times for records with large editor field values by initially fetching only a partial of the records data (the complete record data is loaded on record preview/update).
    • Added "Media library" (collection images picker) support for the TinyMCE editor field.
    • Added support to "pin" collections in the sidebar.
    • Added support to manually resize the collections sidebar.
    • More clear "Nonempty" field label style.
    • Removed the legacy .woff and .ttf fonts and keep only .woff2.
  • Removed the explicit Content-Type charset from the realtime response due to compatibility issues with IIS (#3461). The Connection:keep-alive realtime response header was also removed as it is not really used with HTTP2 anyway.

  • Added new JSVM bindings:

    • new Cookie({ ... }) constructor for creating *http.Cookie equivalent value.
    • new SubscriptionMessage({ ... }) constructor for creating a custom realtime subscription payload.
    • Soft-deprecated $os.exec() in favour of $os.cmd() to make it more clear that the call only prepares the command and doesn't execute it.
  • ⚠️ Bumped the min required Go version to 1.19.

Changelog

Sourced from github.com/pocketbase/pocketbase's changelog.

v0.19.0

  • Added Patreon OAuth2 provider (#3323; thanks @​ghostdevv).

  • Added mailcow OAuth2 provider (#3364; thanks @​thisni1s).

  • Added support for :excerpt(max, withEllipsis?) fields modifier that will return a short plain text version of any string value (html tags are stripped). This could be used to minimize the downloaded json data when listing records with large editor html values.

    await pb.collection("example").getList(1, 20, {
      "fields": "*,description:excerpt(100)"
    })
    
  • Several Admin UI improvements:

    • Count the total records separately to speed up the query execution for large datasets (#3344).
    • Enclosed the listing scrolling area within the table so that the horizontal scrollbar and table header are always reachable (#2505).
    • Allowed opening the record preview/update form via direct URL (#2682).
    • Reintroduced the local date field tooltip on hover.
    • Speed up the listing loading times for records with large editor field values by initially fetching only a partial of the records data (the complete record data is loaded on record preview/update).
    • Added "Media library" (collection images picker) support for the TinyMCE editor field.
    • Added support to "pin" collections in the sidebar.
    • Added support to manually resize the collections sidebar.
    • More clear "Nonempty" field label style.
    • Removed the legacy .woff and .ttf fonts and keep only .woff2.
  • Removed the explicit Content-Type charset from the realtime response due to compatibility issues with IIS (#3461). The Connection:keep-alive realtime response header was also removed as it is not really used with HTTP2 anyway.

  • Added new JSVM bindings:

    • new Cookie({ ... }) constructor for creating *http.Cookie equivalent value.
    • new SubscriptionMessage({ ... }) constructor for creating a custom realtime subscription payload.
    • Soft-deprecated $os.exec() in favour of $os.cmd() to make it more clear that the call only prepares the command and doesn't execute it.
  • ⚠️ Bumped the min required Go version to 1.19.

Commits
  • 9c56229 set a default id column width and updated ui dist
  • 3c5409d updated changelog
  • 8868fa9 use a custom tinymce svelte component and other minor optimizations
  • c0fa53a check the mime type of the collections file field and updated field styles to...
  • 007b6a0 updated dependencies and regenerated jsvm types
  • 731383a added .cmd() as alias for .exec()
  • 866d38c updated jsvm types and removed unused helper
  • 1f6ab24 updated replaceQueryParams to use the last ?
  • 01e33c0 #3364 added mailcow OAuth2 provider
  • 69983bf removed legacy fonts
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
what-the-diff[bot] commented 10 months ago

PR Summary

Overall, these pull request changes are mainly about enhancing the current service by upgrading various packages to their latest versions and adding some useful functionalities. Wider range of services, better performance, improved JSON handling, and database operations are some of the key benefits to expect from these changes.