You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2021/07/28 14:36:43 UTC

[sling-aggregator] branch master updated (e834116 -> ac66279)

This is an automated email from the ASF dual-hosted git repository.

bdelacretaz pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-aggregator.git.


    from e834116  SLING-10676 - add or update SECURITY.md
     new 17b4ceb  Revert "SLING-10676 - add or update SECURITY.md" which zapped it again. Getting there.
     new ac66279  SLING-10676 - script as used for the initial SECURITY.md addition to all repos

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 SECURITY.md        | 13 +++++++++++++
 add-security-md.sh | 11 ++++++++++-
 2 files changed, 23 insertions(+), 1 deletion(-)

[sling-aggregator] 02/02: SLING-10676 - script as used for the initial SECURITY.md addition to all repos

Posted by bd...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bdelacretaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-aggregator.git

commit ac662798d16bbddb1ad55aaaaddf999cd199a5af
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Wed Jul 28 16:26:47 2021 +0200

    SLING-10676 - script as used for the initial SECURITY.md addition to all repos
---
 add-security-md.sh | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/add-security-md.sh b/add-security-md.sh
index c8d30ff..a02253f 100755
--- a/add-security-md.sh
+++ b/add-security-md.sh
@@ -7,11 +7,20 @@
 # to add or update the SECURITY.md file from the
 # "aggregator" project to all repositories found
 # under it.
+export ME=$(basename $0)
 
 SEC=SECURITY.md
+echo "Adding $SEC to $(basename $PWD)"
+
+if [[ -f $ME ]]
+then
+    echo "Ignoring aggregator folder"
+    exit 0
+fi
+
 git checkout master
 git pull origin master
 cat ../aggregator/$SEC > $SEC
 git add $SEC
 git commit -m "SLING-10676 - add or update $SEC"
-git push origin master
\ No newline at end of file
+# TODO git push origin master
\ No newline at end of file

[sling-aggregator] 01/02: Revert "SLING-10676 - add or update SECURITY.md" which zapped it again. Getting there.

Posted by bd...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bdelacretaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-aggregator.git

commit 17b4cebb813d6019634a923e8b6d8af2c3998743
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Wed Jul 28 16:22:52 2021 +0200

    Revert "SLING-10676 - add or update SECURITY.md" which zapped it again. Getting there.
    
    This reverts commit e8341166b830bebed9fb07dc421d3209f38b9d99.
---
 SECURITY.md | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/SECURITY.md b/SECURITY.md
index e69de29..2e2f930 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -0,0 +1,13 @@
+# Security Policy for Apache Sling modules
+
+This module is part of the [Apache Sling Project](https://sling.apache.org), a
+project of the [Apache Software Foundation](https://apache.org) (ASF).
+
+It follows the ASF's [vulnerability handling process](https://apache.org/security/#vulnerability-handling) and
+provides its own [security information page](http://sling.apache.org/project-information/security.html).
+
+## Reporting a Vulnerability
+
+To report a new vulnerability you have discovered in an Apache Sling module,
+please follow the instructions on the
+[project's security page](http://sling.apache.org/project-information/security.html) .
\ No newline at end of file