Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package golangci-lint for openSUSE:Factory 
checked in at 2023-03-26 20:19:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/golangci-lint (Old)
 and      /work/SRC/openSUSE:Factory/.golangci-lint.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "golangci-lint"

Sun Mar 26 20:19:40 2023 rev:3 rq:1074351 version:1.52.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/golangci-lint/golangci-lint.changes      
2023-03-22 22:30:52.646264293 +0100
+++ /work/SRC/openSUSE:Factory/.golangci-lint.new.31432/golangci-lint.changes   
2023-03-26 20:19:42.375117648 +0200
@@ -1,0 +2,8 @@
+Sat Mar 25 19:17:50 UTC 2023 - jkowalc...@suse.com
+
+- Update to version 1.52.2:
+  * build(deps): bump github.com/moricho/tparallel from 0.3.0 to 0.3.1 (#3719)
+  * fix(pre-commit): require_serial & pass_filenames (#3713)
+  * docs: Update documentation and assets
+
+-------------------------------------------------------------------

Old:
----
  golangci-lint-1.52.1.tar.xz

New:
----
  golangci-lint-1.52.2.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ golangci-lint.spec ++++++
--- /var/tmp/diff_new_pack.kNG5zJ/_old  2023-03-26 20:19:43.147121681 +0200
+++ /var/tmp/diff_new_pack.kNG5zJ/_new  2023-03-26 20:19:43.151121702 +0200
@@ -21,7 +21,7 @@
 # timemstap can be obtained by doing an rpm query
 
 Name:           golangci-lint
-Version:        1.52.1
+Version:        1.52.2
 Release:        0
 Summary:        A fast Go linters runner
 License:        GPL-3.0-only

++++++ _service ++++++
--- /var/tmp/diff_new_pack.kNG5zJ/_old  2023-03-26 20:19:43.183121869 +0200
+++ /var/tmp/diff_new_pack.kNG5zJ/_new  2023-03-26 20:19:43.187121890 +0200
@@ -3,7 +3,7 @@
     <param name="scm">git</param>
     <param name="url">https://github.com/golangci/golangci-lint.git</param>
     <param name="exclude">.git</param>
-    <param name="revision">v1.52.1</param>
+    <param name="revision">v1.52.2</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="filename">golangci-lint</param>
     <param name="versionrewrite-pattern">v(.*)</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.kNG5zJ/_old  2023-03-26 20:19:43.207121995 +0200
+++ /var/tmp/diff_new_pack.kNG5zJ/_new  2023-03-26 20:19:43.211122016 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/golangci/golangci-lint.git</param>
-              <param 
name="changesrevision">d92b38cc3e1a7bbb1d6dd1c5edcf302b2196f81f</param></service></servicedata>
+              <param 
name="changesrevision">da04413a8a1eefb8c10161c9f2b558138d01815c</param></service></servicedata>
 (No newline at EOF)
 

++++++ golangci-lint-1.52.1.tar.xz -> golangci-lint-1.52.2.tar.xz ++++++
/work/SRC/openSUSE:Factory/golangci-lint/golangci-lint-1.52.1.tar.xz 
/work/SRC/openSUSE:Factory/.golangci-lint.new.31432/golangci-lint-1.52.2.tar.xz 
differ: char 15, line 1

++++++ vendor.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/github.com/moricho/tparallel/.goreleaser.yaml 
new/vendor/github.com/moricho/tparallel/.goreleaser.yaml
--- old/vendor/github.com/moricho/tparallel/.goreleaser.yaml    1970-01-01 
01:00:00.000000000 +0100
+++ new/vendor/github.com/moricho/tparallel/.goreleaser.yaml    2023-03-25 
20:18:06.000000000 +0100
@@ -0,0 +1,52 @@
+project_name: tparallel
+before:
+  hooks:
+    - go mod tidy
+builds:
+  - main: ./cmd/tparallel
+    binary: tparallel
+    ldflags:
+      - -s -w
+      - -X main.Version={{.Version}}
+      - -X main.Revision={{.ShortCommit}}
+    env:
+      - CGO_ENABLED=0
+    goos:
+      - linux
+      - windows
+      - darwin
+
+archives:
+  - format: tar.gz
+    name_template: >-
+      {{ .ProjectName }}_
+      {{- title .Os }}_
+      {{- if eq .Arch "amd64" }}x86_64
+      {{- else if eq .Arch "386" }}i386
+      {{- else }}{{ .Arch }}{{ end }}
+      {{- if .Arm }}v{{ .Arm }}{{ end }}
+    format_overrides:
+    - goos: windows
+      format: zip
+checksum:
+  name_template: 'checksums.txt'
+snapshot:
+  name_template: "{{ incpatch .Version }}-next"
+changelog:
+  sort: asc
+  filters:
+    exclude:
+      - '^docs:'
+      - '^test:'
+release:
+  prerelease: auto
+brews:
+  - tap:
+      owner: moricho
+      name: homebrew-tparallel
+    homepage: https://github.com/moricho/tparallel
+    description: tparallel detects inappropriate usage of t.Parallel() method 
in your Go test codes
+    install: |
+      bin.install "tparallel"
+    test: |
+      system "#{bin}/goreleaser -v"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/github.com/moricho/tparallel/.goreleaser.yml 
new/vendor/github.com/moricho/tparallel/.goreleaser.yml
--- old/vendor/github.com/moricho/tparallel/.goreleaser.yml     2023-03-21 
21:13:51.000000000 +0100
+++ new/vendor/github.com/moricho/tparallel/.goreleaser.yml     1970-01-01 
01:00:00.000000000 +0100
@@ -1,38 +0,0 @@
-project_name: tparallel
-env:
-  - GO111MODULE=on
-before:
-  hooks:
-    - go mod tidy
-builds:
-  - main: ./cmd/tparallel
-    binary: tparallel
-    ldflags:
-      - -s -w
-      - -X main.Version={{.Version}}
-      - -X main.Revision={{.ShortCommit}}
-    env:
-      - CGO_ENABLED=0
-archives:
-  - name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ 
.Arm }}{{ end }}'
-    replacements:
-      darwin: darwin
-      linux: linux
-      windows: windows
-      386: i386
-      amd64: x86_64
-    format_overrides:
-      - goos: windows
-        format: zip
-release:
-  prerelease: auto
-brews:
-  - tap:
-      owner: moricho
-      name: homebrew-tparallel
-    homepage: https://github.com/moricho/tparallel
-    description: tparallel detects inappropriate usage of t.Parallel() method 
in your Go test codes
-    install: |
-      bin.install "tparallel"
-    test: |
-      system "#{bin}/goreleaser -v"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/modules.txt new/vendor/modules.txt
--- old/vendor/modules.txt      2023-03-21 21:13:51.000000000 +0100
+++ new/vendor/modules.txt      2023-03-25 20:18:07.000000000 +0100
@@ -355,7 +355,7 @@
 # github.com/mitchellh/mapstructure v1.5.0
 ## explicit; go 1.14
 github.com/mitchellh/mapstructure
-# github.com/moricho/tparallel v0.3.0
+# github.com/moricho/tparallel v0.3.1
 ## explicit; go 1.20
 github.com/moricho/tparallel
 github.com/moricho/tparallel/pkg/ssafunc

Reply via email to