Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lando/apache
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.0
Choose a base ref
...
head repository: lando/apache
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 17 commits
  • 6 files changed
  • 4 contributors

Commits on Oct 31, 2024

  1. Copy the full SHA
    fe47f17 View commit details

Commits on Nov 1, 2024

  1. Copy the full SHA
    3d627a6 View commit details

Commits on Nov 4, 2024

  1. Copy the full SHA
    28765a4 View commit details
  2. Update CHANGELOG.md.

    reynoldsalec committed Nov 4, 2024
    Copy the full SHA
    3b4b3e9 View commit details
  3. Copy the full SHA
    16e5f51 View commit details

Commits on Nov 9, 2024

  1. Copy the full SHA
    9129085 View commit details

Commits on Nov 11, 2024

  1. Copy the full SHA
    0f10fd2 View commit details
  2. Copy the full SHA
    2ba6e15 View commit details

Commits on Nov 13, 2024

  1. Copy the full SHA
    dd00427 View commit details
  2. Copy the full SHA
    c133b5a View commit details

Commits on Nov 23, 2024

  1. Copy the full SHA
    0d44c43 View commit details

Commits on Dec 4, 2024

  1. Update CHANGELOG.md.

    reynoldsalec committed Dec 4, 2024
    Copy the full SHA
    7088e7d View commit details
  2. Copy the full SHA
    2c3e197 View commit details

Commits on Dec 6, 2024

  1. Copy the full SHA
    4d3c806 View commit details
  2. Copy the full SHA
    4c9b86d View commit details

Commits on Dec 10, 2024

  1. Update .npmignore

    pirog authored Dec 10, 2024
    Copy the full SHA
    068b43d View commit details

Commits on Dec 11, 2024

  1. Update pr-apache-tests.yml

    pirog authored Dec 11, 2024
    Copy the full SHA
    0c7a398 View commit details
Showing with 363 additions and 15 deletions.
  1. +2 −1 .github/workflows/pr-apache-tests.yml
  2. +2 −0 .npmignore
  3. +12 −0 CHANGELOG.md
  4. +2 −3 docs/v/index.md
  5. +343 −9 package-lock.json
  6. +2 −2 package.json
3 changes: 2 additions & 1 deletion .github/workflows/pr-apache-tests.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,8 @@ jobs:
- examples/2.4
- examples/custom
lando-version:
- 3-edge-slim
- 3-edge
- 3-stable
os:
- ubuntu-24.04
node-version:
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.github
.nyc_output
coverage
docs
examples
guides
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

## v1.1.3 - [December 6, 2024](https://github.com/lando/apache/releases/tag/v1.1.3)

* Updated the version index.md to get Docuverse page to build correctly.

## v1.1.2 - [December 4, 2024](https://github.com/lando/apache/releases/tag/v1.1.2)

* Updated to [@lando/vitepress-theme-default-plus@v1.1.0-beta.24](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.1.0-beta.24).

## v1.1.1 - [November 4, 2024](https://github.com/lando/apache/releases/tag/v1.1.1)

* Updated to [@lando/vitepress-theme-default-plus@v1.1.0-beta.18](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.1.0-beta.18).

## v1.1.0 - [October 24, 2024](https://github.com/lando/apache/releases/tag/v1.1.0)

* Testing `edge` and `stable` release channel
5 changes: 2 additions & 3 deletions docs/v/index.md
Original file line number Diff line number Diff line change
@@ -18,8 +18,7 @@ prev: false
class="version-link"
>
<VPLVersionLink
:text="link.text"
:href="link.href"
:version="link.text"
:prerelease="link.prerelease"
:stable="link.stable"
:edge="link.edge"
@@ -29,7 +28,7 @@ prev: false
<br />

<div>
<VPLVersionLink :dev="true" :text="aliases.dev" :href="aliasLinks.dev" />
<VPLVersionLink :dev="true" :version="aliases.dev" />
</div>

<script setup>
Loading