Skip to content

Commit

Permalink
Merge pull request #19 from Ilhasoft/update/v8.2.0
Browse files Browse the repository at this point in the history
Update/v8.2.0
  • Loading branch information
rasoro authored Nov 28, 2024
2 parents a1ba577 + fcbc49a commit a0666d5
Show file tree
Hide file tree
Showing 14 changed files with 500 additions and 367 deletions.
40 changes: 21 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,25 @@ env:
jobs:
test:
name: Test
strategy:
matrix:
pg-version: ["12", "13"]
runs-on: ubuntu-latest

services:
postgres:
image: postgis/postgis:14-3.3-alpine
env:
POSTGRES_DB: archiver_test
POSTGRES_USER: archiver_test
POSTGRES_PASSWORD: temba
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

steps:
- name: Checkout code
uses: actions/checkout@v1

- name: Install PostgreSQL
uses: harmon758/postgresql-action@v1
with:
postgresql version: ${{ matrix.pg-version }}
postgresql db: archiver_test
postgresql user: temba
postgresql password: temba
uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v3
with:
go-version: ${{ env.go-version }}

Expand All @@ -34,7 +35,7 @@ jobs:

- name: Upload coverage
if: success()
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
Expand All @@ -46,18 +47,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v3
with:
go-version: ${{ env.go-version }}

- name: Publish release
uses: goreleaser/goreleaser-action@v1
uses: goreleaser/goreleaser-action@v4
with:
version: v0.147.2
args: release --rm-dist
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*~
.vscode
dist/

*.DS_store
*.py
*.pyc

Expand Down
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@
v8.2.0 (2023-07-31)
-------------------------
* Update .gitignore

v8.1.7 (2023-06-06)
-------------------------
* Fix release CHANGELOG generation

v8.1.6 (2023-06-06)
-------------------------
* Remove deleting of channel logs as these are no longer linked to messages

v8.1.5 (2023-03-24)
-------------------------
* Revert to go 1.19

v8.1.4 (2023-03-15)
-------------------------
* Match API and always return type=text|voice for messages

v8.1.3 (2023-03-09)
-------------------------
* Update dependencies and use go 1.20
* Update test database schema and cleanup sql queries

v8.1.2 (2023-02-20)
-------------------------
* Add support for msg_type = T

v8.1.1 (2023-02-15)
-------------------------
* Don't try to delete broadcast URNs which no longer exist

v8.1.0 (2023-01-18)
-------------------------
* Delete old flow starts after deleting runs

v8.0.0 (2023-01-09)
-------------------------
* Only fetch broadcasts which don't have messages
* Remove use of deprecated ioutil package
* Update testdb.sql to reflect schema changes and cleanup sql variables
* Test against postgres 14

v7.5.0
----------
* Use go 1.19
Expand Down
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Archiver - content archival service for the TextIt platform.
Archiver - content archival service for RapidPro/TextIt.

Copyright (C) 2018-2022 TextIt.
Copyright (C) 2018-2023 Nyaruka, Inc.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
Expand Down
Loading

0 comments on commit a0666d5

Please sign in to comment.