This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/example/vite-react-app/prettier-3.9.5
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
omit 175659fcc Bump prettier from 3.9.4 to 3.9.5 in /example/vite-react-app
add ffe423016 Fixed: Type mismatch when filtering InventoryItem by
availableToPromiseTotal in FixedAssetMaintServices (OFBIZ-13448) (#309)
add bcfce34fb OFBIZ-13367 - Add REST API and service-contract guidance to
AI agent skills (#325)
add fe1a266d6 Add devreload plugin inside plugins directory (#316)
add a8f8539ae devreload dev notes, optmisation (#326)
add 41a07286b Devreload dev notes (#327)
add db54dcfd8 Adding support of entitydef/entitygroup hot-reload to
devreload component (#328)
add 80b1e3afa Add label/properties hot-reload to devreload, fixing a
stale-classpath-copy bug found via live validation (#329)
add 2e65551de Bump typescript from 6.0.3 to 7.0.2 in
/example/vite-react-app
add 5b7465a20 Bump org.apache.tomcat.embed:tomcat-embed-websocket in
/example
add 721186a16 Bump prettier from 3.9.4 to 3.9.5 in /example/vite-react-app
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (175659fcc)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/example/vite-react-app/prettier-3.9.5
(721186a16)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
ai-agent-skills/README.md | 5 +
ai-agent-skills/SKILLS_SUMMARY.md | 1 +
ai-agent-skills/coding-standards/SKILL.md | 2 +
ai-agent-skills/manage-api-integration/SKILL.md | 22 +-
.../manage-cache-and-performance/SKILL.md | 6 +
ai-agent-skills/manage-groovy/SKILL.md | 22 +
ai-agent-skills/manage-rest-api/SKILL.md | 88 ++
.../references/rest-contract-checklist.md | 39 +
.../references/service-wrapper-patterns.md | 67 ++
ai-agent-skills/manage-services/SKILL.md | 6 +
.../ofbiz/assetmaint/FixedAssetMaintServices.java | 3 +-
LICENSE => devreload/LICENSE | 33 +-
devreload/README.md | 376 +++++++
devreload/build.gradle | 201 ++++
devreload/gradle.lockfile | 4 +
{ldap => devreload}/ofbiz-component.xml | 11 +-
.../java/org/apache/ofbiz/devreload/Debouncer.java | 77 ++
.../apache/ofbiz/devreload/DevReloadContainer.java | 1178 ++++++++++++++++++++
.../ofbiz/devreload/EntityModelReloader.java | 564 ++++++++++
.../org/apache/ofbiz/devreload/HotSwapAgent.java | 109 ++
.../ofbiz/devreload/RecordingFileManager.java | 58 +
example/build.gradle | 2 +-
example/vite-react-app/package-lock.json | 375 ++++++-
example/vite-react-app/package.json | 2 +-
24 files changed, 3197 insertions(+), 54 deletions(-)
create mode 100644 ai-agent-skills/manage-rest-api/SKILL.md
create mode 100644
ai-agent-skills/manage-rest-api/references/rest-contract-checklist.md
create mode 100644
ai-agent-skills/manage-rest-api/references/service-wrapper-patterns.md
copy LICENSE => devreload/LICENSE (90%)
create mode 100644 devreload/README.md
create mode 100644 devreload/build.gradle
create mode 100644 devreload/gradle.lockfile
copy {ldap => devreload}/ofbiz-component.xml (74%)
create mode 100644
devreload/src/main/java/org/apache/ofbiz/devreload/Debouncer.java
create mode 100644
devreload/src/main/java/org/apache/ofbiz/devreload/DevReloadContainer.java
create mode 100644
devreload/src/main/java/org/apache/ofbiz/devreload/EntityModelReloader.java
create mode 100644
devreload/src/main/java/org/apache/ofbiz/devreload/HotSwapAgent.java
create mode 100644
devreload/src/main/java/org/apache/ofbiz/devreload/RecordingFileManager.java