Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: homeylab/bookstack-file-exporter

v1.6.1

06 Sep 06:40
8efd885
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Highlights

Notification feature has been enhanced to support notifications for successful runs in addition to failed runs.

Example:

## optional - if specified exporter will send notifications on failure# supported notification services are:# - apprise (https://github.com/caronc/apprise)# omit/comment out section if not requirednotifications:# optional - apprise notification config# if used, required: specify one or more service_urls or a config_path# - if both are specified, config_path takes precedence# if service_urls is used, service_urls can also be specified as env var: APPRISE_URLS# - env var takes precedence over service_urls below if both specifiedapprise:service_urls:[]# - "json://localhost:8080/notify"config_path:""plugin_paths:[]storage_path:""custom_title:""custom_attachment_path:""on_success:falseon_failure:true

What's Changed

Full Changelog:v1.6.0...v1.6.1

Contributors

  • @pchang388
pchang388
Assets2
Loading

v1.6.0

06 Sep 04:18
de669b5
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Highlights

Notifications for failed runs are now possible via apprise. Users can specify in their yaml configuration to utilize this feature.

Example configuration:

## optional - if specified exporter will send notifications on failure# supported notification services are:# - apprise (https://github.com/caronc/apprise)# omit/comment out section if not requirednotifications:# optional - apprise notification config# if used, required: specify one or more service_urls or a config_path# - if both are specified, config_path takes precedence# if service_urls is used, service_urls can also be specified as env var: APPRISE_URLS# - env var takes precedence over service_urls below if both specifiedapprise:service_urls:      -"json://localhost:8080/notify"config_path:""plugin_paths:[]storage_path:""custom_title:""custom_attachment_path:""

Example uses JSON HTTP POST request for notification (https://github.com/caronc/apprise/wiki/Notify_Custom_JSON).

What's Changed

Full Changelog:v1.5.0...v1.6.0

Contributors

  • @pchang388
pchang388
Loading

v1.5.0

08 Mar 08:20
6354605
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Highlights

Potential breaking changes:

  • assets.verify_ssl has been moved tohttp_config.verify_ssl and the default value has been updated tofalse.
  • additional_headers has been moved tohttp_config.additional_headers

HTTP request configuration is now customizable by user and can override the defaults for the following properties:

  • timeout:30
  • backoff_factor:2.5
  • retry_codes:[413, 429, 500, 502, 503, 504]
  • retry_count:5

The default values for the HTTP request configuration are conservative and allow for enough time between retries for per minute rate limits to be refreshed. More information on retries and backoff_factor can be foundhere.

What's Changed

Full Changelog:v1.4.1...v1.5.0

Contributors

  • @pchang388
pchang388
Loading

v1.4.1

21 Feb 09:16
f1f36ab
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

What's Changed

Full Changelog:v1.4.0...v1.4.1

Contributors

  • @pchang388
pchang388
Loading

v1.4.0

14 Feb 09:58
05b3070
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Highlights

  • Addrun_interval setting to allow very basic scheduling. The exporter will operate as an always running application if specified.
    • Optional property: specify a time inseconds for the exporter to wait in between subsequent runs.
    • Setting this0 (default) or omitting it from the configuration will execute a single run and exit.
  • Add docker-compose example for always running application use case.

What's Changed

Full Changelog:v1.3.1...v1.4.0

Contributors

  • @pchang388
pchang388
Loading
SimHat reacted with thumbs up emoji
1 person reacted

v1.3.1

06 Nov 11:02
54cc0e4
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

What's Changed

  • update readme for assest skip feature by@pchang388 in#48
  • create user provided output_path directory if not exists by@pchang388 in#49
  • make create output_path dir error catchable to allow for docker usage by@pchang388 in#50
  • minor fix on logging and output description by@pchang388 in#51
  • fix minor spacing issue on log message by@pchang388 in#52

Full Changelog:v1.3.0...v1.3.1

Contributors

  • @pchang388
pchang388
Loading

v1.3.0

06 Nov 08:31
c6c68a4
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Highlights

  • Python version bumped to3.13.0
  • All dependencies bumped to respective latest versions
  • If an API call to get an image/attachment or its metadata fails, the exporter will skip the asset and log the error. If usingassets.modify_markdown option, the asset links in the document will be untouched and in its original form. All API calls are retried 3 times after initial failure.

What's Changed

  • Attempt to add logic to skip an image/attachment if API call fails by@pchang388 in#46

Full Changelog:v1.2.0...v1.3.0

Contributors

  • @pchang388
pchang388
Loading

v1.2.0

06 Jul 07:33
2c385f2
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

What's Changed

Full Changelog:v1.1.0...v1.2.0

Contributors

  • @intrepidsilence
  • @pchang388
intrepidsilence and pchang388
Loading

v1.1.0

23 Jan 09:55
f72e3c9
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

New Features

  • Attachments can now be exported and placed in their respectiveattachments/{page}/ directory
  • Docker Image Tagging changes to better facilitate testing and GitHub actions
  • arm64 docker image support

Highlights

  • Reworked Asset (Image/Attachment) archiver modules for better reusability and readability

What's Changed

Full Changelog:v1.0.2...v1.1.0

Contributors

  • @pchang388
pchang388
Loading

v1.0.2

19 Dec 05:55
0ce5585
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
GPG key ID:4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

What's Changed

Full Changelog:v1.0.1...v1.0.2

Contributors

  • @Snaptraks
  • @pchang388
Snaptraks and pchang388
Loading
Previous1
Previous

[8]ページ先頭

©2009-2025 Movatter.jp