Skip to content

Commit

Permalink
Merge pull request #331 from DrDaveD/update-1.4.0-rc.2
Browse files Browse the repository at this point in the history
update for 1.4.0-rc.2
  • Loading branch information
DrDaveD authored Mar 4, 2025
2 parents d969a65 + 458f410 commit 5a588fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apptainer_source
Submodule apptainer_source updated 54 files
+5 −5 .github/workflows/ci.yml
+1 −0 .gitignore
+27 −2 CHANGELOG.md
+1 −0 CONTRIBUTORS.md
+3 −5 INSTALL.md
+1 −1 LICENSE.md
+18,586 −454 LICENSE_DEPENDENCIES.md
+25 −0 cmd/internal/cli/build.go
+7 −0 cmd/internal/cli/build_linux.go
+2 −0 cmd/starter/c/include/setns.h
+12 −12 cmd/starter/c/include/starter.h
+28 −28 cmd/starter/c/starter.c
+1 −1 dist/debian/control
+3 −3 dist/docker/Dockerfile
+5 −0 dist/docker/buildenv.sh
+0 −2 dist/nfpm/nfpm.yaml
+15 −3 dist/rpm/apptainer.spec.in
+11 −2 e2e/cgroups/cgroups.go
+2 −2 e2e/internal/e2e/home.go
+3 −3 e2e/internal/e2e/profile.go
+4 −0 e2e/verify/ocspcertificates/download_chain.sh
+0 −63 e2e/verify/ocspcertificates/intermediate.pem
+0 −35 e2e/verify/ocspcertificates/leaf.pem
+17 −8 e2e/verify/verify.go
+18 −0 etc/seccomp-profiles/default.json
+26 −24 go.mod
+52 −52 go.sum
+8 −0 internal/pkg/build/assemblers/sif.go
+3 −3 internal/pkg/build/metadata.go
+5 −1 internal/pkg/build/oci/oci.go
+1 −0 internal/pkg/build/sources/conveyorPacker_debootstrap.go
+16 −0 internal/pkg/build/sources/conveyorPacker_oci.go
+67 −0 internal/pkg/client/progress.go
+12 −29 internal/pkg/fakeroot/config.go
+0 −193 internal/pkg/fakeroot/config_test.go
+56 −0 internal/pkg/fakeroot/idtools_files.go
+216 −0 internal/pkg/fakeroot/idtools_files_test.go
+46 −32 internal/pkg/fakeroot/idtools_libsubid.go
+0 −27 internal/pkg/fakeroot/idtools_unsupported.go
+27 −0 internal/pkg/image/packer/squashfs.go
+6 −21 internal/pkg/runtime/engine/apptainer/prepare_linux.go
+4 −2 internal/pkg/runtime/engine/apptainer/process_linux.go
+23 −23 internal/pkg/runtime/engine/config/starter/starter_linux.go
+25 −20 internal/pkg/runtime/engine/fakeroot/engine_linux.go
+2 −2 internal/pkg/runtime/launch/launcher_linux.go
+5 −1 internal/pkg/util/machine/machine.go
+1 −0 pkg/util/namespaces/setns_linux.go
+23 −0 scripts/LICENSE_DEPENDENCIES.tpl
+1 −2 scripts/ci-deb-build-test
+7 −6 scripts/ci-rpm-build-test
+1 −1 scripts/clean-dependencies
+5 −1 scripts/compile-dependencies
+1 −1 scripts/install-dependencies
+8 −55 scripts/update-license-dependencies.sh
3 changes: 2 additions & 1 deletion fakeroot.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ the appearance of running as root.
the host:

#. If the host is set up to map the current user via ``/etc/subuid`` and
``/etc/subgid`` mapping files, {Project} will use that method first.
``/etc/subgid`` mapping files (or equivalent through libsubid),
{Project} will use that method first.
This is also commonly referred to as "rootless mode" and is the
method used for example by Podman.
This mode requires user namespaces to be enabled.
Expand Down
2 changes: 1 addition & 1 deletion replacements.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def variableReplace(app, docname, source):
# Add the needed variables to be replaced either on code or on text on the next
# dictionary structure.
variable_replacements = {
"{InstallationVersion}" : "1.4.0-rc.1",
"{InstallationVersion}" : "1.4.0-rc.2",
"{admindocs}" : "https://apptainer.org/docs/admin/main",
"{version}": "main",
"{adminversion}": "main",
Expand Down

0 comments on commit 5a588fb

Please sign in to comment.