Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: release 1.22.2 #530

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.22.1"
".": "1.22.2"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.22.2](https://github.com/canonical/identity-platform-admin-ui/compare/v1.22.1...v1.22.2) (2025-01-30)


### Bug Fixes

* lower update frequency to avoid spamming ([46857a6](https://github.com/canonical/identity-platform-admin-ui/commit/46857a6d94eae00e70acc877c5d766345ef3508e))

## [1.22.1](https://github.com/canonical/identity-platform-admin-ui/compare/v1.22.0...v1.22.1) (2024-12-12)


Expand Down
2 changes: 1 addition & 1 deletion internal/version/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

package version

const Version = "1.22.1" // x-release-please-version
const Version = "1.22.2" // x-release-please-version
25 changes: 13 additions & 12 deletions rockcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,24 @@
name: identity-platform-admin-ui

base: bare
build-base: [email protected]
version: '1.22.1' # x-release-please-version
version: 1.22.2
summary: Canonical Identity platform Admin UI
description: |
This is the Canonical Identity platform admin UI used for connecting
Ory Kratos with Ory Hydra.
license: Apache-2.0

platforms:
amd64:

amd64: null
services:
admin-ui:
override: replace
command: /usr/bin/identity-platform-admin-ui serve
startup: enabled

parts:
certificates:
plugin: nil
stage-packages:
- ca-certificates

go-build:
plugin: go
source: .
Expand All @@ -34,19 +29,25 @@ parts:
build-packages:
- make
- git
override-build: |
override-build: >
make npm-build build
install -D -m755 ./app ${CRAFT_PART_INSTALL}/opt/identity-platform-admin-ui/bin/app

install -D -m755 ./app
${CRAFT_PART_INSTALL}/opt/identity-platform-admin-ui/bin/app
organize:
opt/identity-platform-admin-ui/bin/app: usr/bin/identity-platform-admin-ui
stage-packages:
- base-files_var

deb-security-manifest:
plugin: nil
after:
- certificates
override-prime: |
override-prime: >
set -x

mkdir -p $CRAFT_PRIME/usr/share/rocks/
(echo "# os-release" && cat /etc/os-release && echo "# dpkg-query" && dpkg-query --admindir=$CRAFT_PRIME/var/lib/dpkg/ -f '${db:Status-Abbrev},${binary:Package},${Version},${source:Package},${Source:Version}\n' -W) > $CRAFT_PRIME/usr/share/rocks/dpkg.query

(echo "# os-release" && cat /etc/os-release && echo "# dpkg-query" &&
dpkg-query --admindir=$CRAFT_PRIME/var/lib/dpkg/ -f
'${db:Status-Abbrev},${binary:Package},${Version},${source:Package},${Source:Version}\n'
-W) > $CRAFT_PRIME/usr/share/rocks/dpkg.query
Loading