From Peter Sanchez to ~netlandish/links-dev
Applied. To git@git.code.netlandish.com:~netlandish/links d4cc8e5..1fdf348 master -> master
From Peter Sanchez to ~netlandish/links-dev
Applied. To git@git.code.netlandish.com:~netlandish/links 04b88f7..d4cc8e5 master -> master
From Peter Sanchez to ~netlandish/links-dev
Changelog-added: `imageUrl` field to relevant GraphQL types --- api/gqlgen.yml | 12 ++ api/graph/generated.go | 289 +++++++++++++++++++++++++++++++--- api/graph/schema.graphqls | 5 +- api/graph/schema.resolvers.go | 41 ++++- 4 files changed, 321 insertions(+), 26 deletions(-) diff --git a/api/gqlgen.yml b/api/gqlgen.yml index 090a18f..6f9e4a4 100644 --- a/api/gqlgen.yml +++ b/api/gqlgen.yml @@ -67,3 +67,15 @@ models: AuditLog: [message trimmed]
From Peter Sanchez to ~netlandish/links-dev
--- domain/integration_test.go | 132 ------------------------------------- 1 file changed, 132 deletions(-) diff --git a/domain/integration_test.go b/domain/integration_test.go index a05bb1e..6028118 100644 --- a/domain/integration_test.go +++ b/domain/integration_test.go @@ -4,16 +4,10 @@ import ( "context" "database/sql" "links/models" "net/http" "net/http/httptest" [message trimmed]
From Peter Sanchez to ~netlandish/links-discuss
Hi all, I am happy to announce the release of links 0.7.0. https://git.code.netlandish.com/~netlandish/links/refs/0.7.0 Release highlights: # Added - You can now set a custom expiration date for personal access tokens. Maximum of 10 years. - Ability to edit organization name in edit form. - Unit tests for adding and updating organizations (api and web app) - Ability to specify how you want tags to be ordered in account settings.
From Peter Sanchez to ~netlandish/links-dev
Hi all, I am happy to announce the release of links 0.7.0. https://git.code.netlandish.com/~netlandish/links/refs/0.7.0 Release highlights: # Added - You can now set a custom expiration date for personal access tokens. Maximum of 10 years. - Ability to edit organization name in edit form. - Unit tests for adding and updating organizations (api and web app) - Ability to specify how you want tags to be ordered in account settings.
From Peter Sanchez to ~netlandish/links-dev
Applied. To git@git.code.netlandish.com:~netlandish/links da7790f..3e05348 master -> master
From Peter Sanchez to ~netlandish/links-dev
Changelog-fixes: Issue with email attachment boundaries out of place. --- go.mod | 10 +++++----- go.sum | 21 ++++++++++----------- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/go.mod b/go.mod index eccd933..d01a2e8 100644 --- a/go.mod +++ b/go.mod @@ -37,9 +37,9 @@ require ( netlandish.com/x/gobwebs-graphql v0.2.11 netlandish.com/x/gobwebs-oauth2 v0.2.11 netlandish.com/x/gobwebs-ses-feedback v0.2.11 [message trimmed]
From Peter Sanchez to ~netlandish/links-dev
Applied. To git@git.code.netlandish.com:~netlandish/links 73a8206..da7790f master -> master
From Peter Sanchez to ~netlandish/links-dev
--- api/api_test.go | 26 +++++++++++++------------- domain/integration_test.go | 30 +++++++++++++++--------------- slack/commands.go | 2 +- slack/routes.go | 2 +- 4 files changed, 30 insertions(+), 30 deletions(-) diff --git a/api/api_test.go b/api/api_test.go index 0dabe06..465c019 100644 --- a/api/api_test.go +++ b/api/api_test.go @@ -219,7 +219,7 @@ func TestDirective(t *testing.T) { User: user3, } [message trimmed]