Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
38866f9
chore(release): bump version to v5.0.0 with NC35 support
vitormattos May 18, 2026
0a7b9c8
chore(release): bump npm version to v5.0.0
vitormattos May 18, 2026
d743fb2
fix(tests): add missing 9th parameter to WorkflowEngine Manager const…
vitormattos May 18, 2026
c200866
chore(deps): update composer dependencies for NC35 compatibility
vitormattos May 18, 2026
12aec04
fix(test): add IAppManager parameter for NC35 WorkflowEngine Manager …
vitormattos May 18, 2026
d694ccb
fix(test): correct Manager argument in bootContext callback
vitormattos May 18, 2026
6060c1f
fix(test): allow multiple injectFn calls during Application boot
vitormattos May 18, 2026
aa58e92
fix(cs): correct indentation in test files
vitormattos May 18, 2026
93c4ca4
fix(cs): correct import ordering for IAppManager
vitormattos May 18, 2026
ed3239f
fix(test): pass dispatcher instead of manager to boot context callback
vitormattos May 18, 2026
ca3c4c2
fix(test): remove unnecessary WorkflowEngine Application boot() call
vitormattos May 18, 2026
331732d
fix(test): remove boot() call and context mocking
vitormattos May 18, 2026
59f57bb
chore(release): restore broken workflow integration test
vitormattos May 18, 2026
52ef742
chore(release): align openapi workflow template
vitormattos May 18, 2026
1704609
chore(release): align appstore workflow template
vitormattos May 18, 2026
5c68c81
fix(test): restore workflow boot in log operation test
vitormattos May 18, 2026
94af66a
fix(test): pass workflow manager to boot callback
vitormattos May 18, 2026
a82923d
fix(test): inject manager or dispatcher by callable type
vitormattos May 19, 2026
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
3 changes: 2 additions & 1 deletion .github/workflows/appstore-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,10 @@ jobs:
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
# Skip if no package.json
if: ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}
package-manager-cache: false

- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
# Skip if no package.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Set up node ${{ steps.node_versions.outputs.nodeVersion }}
if: ${{ steps.node_versions.outputs.nodeVersion }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ steps.node_versions.outputs.nodeVersion }}

Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Developed with ❤️ by [LibreCode](https://librecode.coop). Ongoing maintenanc

* [Sponsor LibreSign on GitHub (monthly recurring support is especially welcome): ![Donate using GitHub Sponsor](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/LibreSign)
]]></description>
<version>1.0.4</version>
<version>5.0.0</version>
<licence>agpl</licence>
<author mail="contact@librecode.coop" homepage="https://librecode.coop">LibreCode</author>
<namespace>ProfileFields</namespace>
Expand All @@ -44,7 +44,7 @@ Developed with ❤️ by [LibreCode](https://librecode.coop). Ongoing maintenanc
<donation title="Sponsor LibreSign on GitHub (monthly recurring preferred)">https://github.com/sponsors/LibreSign</donation>
<donation type="stripe" title="Donate via Stripe">https://buy.stripe.com/eVqfZibhx8QO3LseWc2kw00</donation>
<dependencies>
<nextcloud min-version="32" max-version="34"/>
<nextcloud min-version="32" max-version="35"/>
</dependencies>
<repair-steps>
<post-migration>
Expand Down
295 changes: 220 additions & 75 deletions composer.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "profile_fields",
"version": "1.0.4",
"version": "5.0.0",
"description": "Profile fields",
"license": "AGPL-3.0-or-later",
"private": true,
Expand Down
Loading
Loading