Skip to content

Commit

Permalink
Merge pull request #193 from DrDaveD/update-1.2.0-rc.1
Browse files Browse the repository at this point in the history
Update for 1.2.0-rc.1
  • Loading branch information
DrDaveD authored Jun 8, 2023
2 parents f1828c9 + a34c6d8 commit de6971c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.18.4
go-version: 1.19.6

- name: Update repositories
run: |
Expand Down
2 changes: 1 addition & 1 deletion apptainer_source
Submodule apptainer_source updated 69 files
+5 −0 .github/dependabot.yml
+11 −10 .github/workflows/ci.yml
+90 −47 CHANGELOG.md
+2 −2 CODE_OF_CONDUCT.md
+2 −0 CONTRIBUTORS.md
+56 −13 INSTALL.md
+6 −0 LICENSE_DEPENDENCIES.md
+103 −58 RELEASE_PROCEDURE.md
+1 −1 SECURITY.md
+2 −2 cmd/internal/cli/action_flags.go
+3 −1 cmd/internal/cli/apptainer_test.go
+27 −6 cmd/internal/cli/build.go
+174 −0 cmd/internal/cli/build_linux.go
+247 −0 cmd/internal/cli/build_linux_test.go
+2 −1 cmd/internal/cli/inspect.go
+49 −28 cmd/internal/cli/instance_actions_linux.go
+1 −0 cmd/internal/cli/instance_linux.go
+20 −0 cmd/internal/cli/pull.go
+29 −0 cmd/internal/cli/remote.go
+3 −0 dist/debian/DEBIAN_PACKAGE.md
+1 −0 dist/debian/control
+9 −2 dist/debian/rules
+41 −2 dist/rpm/apptainer.spec.in
+35 −1 docs/content.go
+7 −0 docs/remote.go
+12 −1 e2e/actions/actions.go
+216 −0 e2e/cache/cache.go
+1 −1 e2e/delete/delete.go
+2 −1 e2e/docker/docker.go
+43 −0 e2e/docker/regressions.go
+198 −33 e2e/imgbuild/imgbuild.go
+194 −132 e2e/instance/instance.go
+33 −0 e2e/testdata/build-template/multiple-stage-unit-test.def
+32 −0 e2e/testdata/build-template/multiple-stage.def
+3 −0 e2e/testdata/build-template/script.sh
+24 −0 e2e/testdata/build-template/single-stage-unit-test.def
+44 −0 e2e/testdata/build-template/single-stage.def
+1 −1 examples/ubuntu/Apptainer
+17 −18 go.mod
+34 −30 go.sum
+1 −1 internal/app/apptainer/instance_linux.go
+66 −0 internal/app/apptainer/remote_get_login_password.go
+113 −0 internal/app/apptainer/remote_get_login_password_test.go
+186 −7 internal/pkg/build/oci/oci.go
+3 −1 internal/pkg/build/oci/oci_test.go
+2 −2 internal/pkg/build/sources/conveyorPacker_debootstrap_test.go
+17 −3 internal/pkg/build/sources/conveyorPacker_oci.go
+13 −0 internal/pkg/client/oci/pull.go
+5 −0 internal/pkg/image/driver/imagedriver.go
+178 −51 internal/pkg/runtime/engine/apptainer/container_linux.go
+52 −0 internal/pkg/runtime/engine/apptainer/prepare_linux.go
+9 −3 internal/pkg/runtime/launch/launcher_linux.go
+6 −6 internal/pkg/util/fs/files/files_linux_test.go
+15 −5 internal/pkg/util/fs/files/group.go
+13 −2 internal/pkg/util/fs/files/passwd.go
+73 −40 internal/pkg/util/fs/mount/mount_linux.go
+4 −4 internal/pkg/util/fs/mount/mount_linux_test.go
+3 −0 internal/pkg/util/fs/mount/system_linux.go
+2 −2 mconfig
+2 −0 pkg/build/types/bundle.go
+20 −4 pkg/build/types/definition.go
+7 −5 pkg/build/types/parser/deffile.go
+11 −0 pkg/runtime/engine/apptainer/config/config.go
+3 −1 pkg/util/unix/socket_test.go
+2 −1 scripts/ci-rpm-build-test
+3 −1 scripts/ci-unpriv-test
+3 −3 test/certs/leaf.pem
+10 −0 test/defs/issue1704.def
+5 −5 tools/install-unprivileged.sh
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.1.8",
"{InstallationVersion}" : "1.2.0-rc.1",
"{admindocs}" : "https://apptainer.org/docs/admin/main",
"{version}": "main",
"{adminversion}": "main",
Expand Down

0 comments on commit de6971c

Please sign in to comment.